diff --git a/.dockerignore b/.dockerignore index fcc5c6b..491b591 100644 --- a/.dockerignore +++ b/.dockerignore @@ -3,7 +3,8 @@ npm-debug.log Dockerfile .dockerignore .github -fly.toml +fly.production.toml +fly.staging.toml .gitpod.yml .gitignore .eslintrc diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d65a5a1..9df30c4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -3,7 +3,7 @@ name: CI/CD Pipeline on: workflow_dispatch: push: - branches: ["main"] + branches: ["main", "dev"] paths: ["!PostmanCollections/**", "!./github/**"] jobs: @@ -38,14 +38,14 @@ jobs: - name: Run Tests run: npm test - + - name: Upload HTML Report uses: actions/upload-artifact@v2 with: name: html-report path: newman/*.html - + build_and_push_docker_image: needs: build_and_test runs-on: ubuntu-latest @@ -71,8 +71,10 @@ jobs: - name: Build and Push Docker Image run: | docker buildx create --use - docker buildx build --platform linux/amd64 -t ghcr.io/${{ github.repository }}:latest --push . - docker buildx build --platform linux/amd64 -t ghcr.io/${{ github.repository }}:main --push . + docker buildx build --platform linux/amd64 -t ghcr.io/${{ github.repository }}:dev --push . + if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then + docker buildx build --platform linux/amd64 -t ghcr.io/${{ github.repository }}:main --push . + fi docker buildx stop deploy_to_fly: @@ -86,17 +88,28 @@ jobs: - name: Get FlyCtl uses: superfly/flyctl-actions/setup-flyctl@master + - name: Determine File Based on Branch + id: determine-env + run: | + if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then + cp fly.production.toml fly.toml + echo "DEPLOY_TARGET=Fly" >> $GITHUB_ENV + else + cp fly.staging.toml fly.toml + echo "DEPLOY_TARGET=FlyDev" >> $GITHUB_ENV + fi + + - name: start deployment uses: bobheadxi/deployments@v1 id: deployment with: step: start token: ${{ secrets.GITHUB_TOKEN }} - env: Fly + env: ${{ env.DEPLOY_TARGET }} - name: Deploy to Fly - run: | - flyctl deploy --remote-only + run: flyctl deploy env: FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} @@ -116,4 +129,4 @@ jobs: path: ~/.fly key: ${{ runner.os }}-flyctl restore-keys: | - ${{ runner.os }}-flyctl- + ${{ runner.os }}-flyctl- \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml index 7448b54..daacc2b 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -16,5 +16,5 @@ ports: onOpen: open-preview name: Google Play API description: Website Preview - visibility: private + visibility: public protocol: https diff --git a/PostmanCollections/GooglePlayAPI.postman_collection.json b/PostmanCollections/GooglePlayAPI.postman_collection.json index 2a55263..98d038e 100644 --- a/PostmanCollections/GooglePlayAPI.postman_collection.json +++ b/PostmanCollections/GooglePlayAPI.postman_collection.json @@ -2,8 +2,8 @@ "info": { "_postman_id": "6c81de84-6e95-48af-8f67-2c9d993a6162", "name": "Google Play API", - "description": "## About\n\n- Google Play API turns [google-play-scraper](https://github.com/facundoolano/google-play-scraper/), a Google Play scraper written in javascript into a RESTful API. Google Play Scraper can be get broken as and when Google updates its Google Play pages, hence Google Play API can be broken at times too. This is not an official API from Google.\n- To run locally via docker\n - `docker pull ghcr.io/srikanthlogic/google-play-api:main`\n- `googleplayapi.fly.dev`is free hosted instance of this API run by [Srikanth L](https://www.srik.me/) without any guarantee on up-time.\n- Status Page - [https://cashlessconsumer.statuspage.io/](https://cashlessconsumer.statuspage.io/)", - "schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json" + "description": "## About\n\n- Google Play API turns [google-play-scraper](https://github.com/facundoolano/google-play-scraper/), a Google Play scraper written in javascript into a RESTful API. Google Play Scraper can be get broken as and when Google updates its Google Play pages, hence Google Play API can be broken at times too. This is not an official API from Google.\n \n- To run locally via docker\n \n - `docker pull ghcr.io/srikanthlogic/google-play-api:main`\n \n- `gplayapi.cashlessconsumer.in`is free hosted instance of this API run by [Srikanth L](https://www.srik.me/) without any guarantee on up-time.\n \n- Status Page - [https://cashlessconsumer.statuspage.io/](https://cashlessconsumer.statuspage.io/)", + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { @@ -15,7 +15,6 @@ { "listen": "test", "script": { - "id": "18e59106-879a-43cc-8cb1-96be407bd8e7", "exec": [ "pm.test(\"List of all apps equals 200\", function () {", " var jsonData = pm.response.json();", @@ -50,7 +49,6 @@ { "listen": "prerequest", "script": { - "id": "aea975b6-43a4-4b5e-b91e-f559b832f2ba", "exec": [ "pm.collectionVariables.set(\"expectedResponseTime\", 60);", "pm.collectionVariables.set(\"expectedResponseStatusCode\", 200);" @@ -59,10 +57,6 @@ } } ], - "id": "a9ec2774-0e3c-4573-bdd8-c3ff264591a6", - "protocolProfileBehavior": { - "disableBodyPruning": true - }, "request": { "method": "GET", "header": [], @@ -110,13 +104,12 @@ "key": "age", "value": "FAMILY", "description": "Broken after Google Play redesign -- Optional - defaults to no filter -- \n FIVE_UNDER: 'AGE_RANGE1', SIX_EIGHT: 'AGE_RANGE2', NINE_UP: 'AGE_RANGE3' ALL_UNDER_12 : FAMILY", - "type": "text", "disabled": true }, { "key": "category", "value": "FINANCE", - "description": "Optional - defaults to none; Full list of category https://github.com/facundoolano/google-play-scraper/blob/main/lib/constants.js#L10", + "description": "Optional - defaults to none; Full list of category from /categories", "disabled": true }, { @@ -131,7 +124,6 @@ }, "response": [ { - "id": "6d3fa61e-7cec-46b0-bea7-0dd58014e87a", "name": "Get Top Selling Action Games in Russia", "originalRequest": { "method": "GET", @@ -150,7 +142,7 @@ { "key": "collection", "value": "movers_shakers", - "description": " TOP_FREE: 'topselling_free',\n TOP_PAID: 'topselling_paid',\n GROSSING: 'topgrossing',\n TRENDING: 'movers_shakers',\n TOP_FREE_GAMES: 'topselling_free_games',\n TOP_PAID_GAMES: 'topselling_paid_games',\n TOP_GROSSING_GAMES: 'topselling_grossing_games',\n NEW_FREE: 'topselling_new_free',\n NEW_PAID: 'topselling_new_paid',\n NEW_FREE_GAMES: 'topselling_new_free_games',\n NEW_PAID_GAMES: 'topselling_new_paid_games'\n" + "description": "TOP_FREE,TOP_PAID, GROSSING\nDeprecated\n TOP_FREE: 'topselling_free',\n TOP_PAID: 'topselling_paid',\n GROSSING: 'topgrossing',\n TRENDING: 'movers_shakers',\n TOP_FREE_GAMES: 'topselling_free_games',\n TOP_PAID_GAMES: 'topselling_paid_games',\n TOP_GROSSING_GAMES: 'topselling_grossing_games',\n NEW_FREE: 'topselling_new_free',\n NEW_PAID: 'topselling_new_paid',\n NEW_FREE_GAMES: 'topselling_new_free_games',\n NEW_PAID_GAMES: 'topselling_new_paid_games'\n" }, { "key": "category", @@ -169,7 +161,6 @@ { "key": "", "value": "", - "type": "text", "disabled": true } ] @@ -178,11 +169,9 @@ "_postman_previewlanguage": null, "header": null, "cookie": [], - "responseTime": null, "body": null }, { - "id": "0e1c828d-461f-44be-aa84-c1ac4aaadf7f", "name": "Get Top Free Apps", "originalRequest": { "method": "GET", @@ -201,14 +190,12 @@ "key": "q", "value": "map", "description": "Optional - defaults to none; Search term", - "type": "text", "disabled": true }, { "key": "fullDetail", "value": "true", "description": "Optional - default is false.", - "type": "text", "disabled": true }, { @@ -233,7 +220,6 @@ "key": "age", "value": "FAMILY", "description": "Broken after Google Play redesign -- Optional - defaults to no filter -- \n FIVE_UNDER: 'AGE_RANGE1', SIX_EIGHT: 'AGE_RANGE2', NINE_UP: 'AGE_RANGE3' ALL_UNDER_12 : FAMILY", - "type": "text", "disabled": true }, { @@ -285,7 +271,6 @@ } ], "cookie": [], - "responseTime": null, "body": "{\n \"results\": [\n {\n \"title\": \"TikTok\",\n \"appId\": \"com.zhiliaoapp.musically\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.zhiliaoapp.musically\",\n \"icon\": \"https://play-lh.googleusercontent.com/z5nin1RdQ4UZhv6fa1FNG7VE33imGqPgC4kKZIUjgf_up7E-Pj3AaojlMPwNNXaeGA\",\n \"developer\": {\n \"devId\": \"TikTok Pte. Ltd.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/TikTok%20Pte.%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"TikTok is THE destination for mobile videos. On TikTok, short-form videos are exciting, spontaneous, and genuine. Whether you’re a sports fanatic, a pet enthusiast, or just looking for a laugh, there’s something for everyone on TikTok. All you have to do is watch, engage with what you like, skip what you don’t, and you’ll find an endless stream of short videos that feel personalized just for you. From your morning coffee to your afternoon errands, TikTok has the videos that are guaranteed to make your day.

We make it easy for you to discover and create your own original videos by providing easy-to-use tools to view and capture your daily moments. Take your videos to the next level with special effects, filters, music, and more.

■ Watch endless amount of videos customized specifically for you
A personalized video feed based on what you watch, like, and share. TikTok offers you real, interesting, and fun videos that will make your day.

■ Explore videos, just one scroll away
Watch all types of videos, from Comedy, Gaming, DIY, Food, Sports, Memes, and Pets, to Oddly Satisfying, ASMR, and everything in between.

■ Pause recording multiple times in one video
Pause and resume your video with just a tap. Shoot as many times as you need.

■ Be entertained and inspired by a global community of creators
Millions of creators are on TikTok showcasing their incredible skills and everyday life. Let yourself be inspired.

■ Add your favorite music or sound to your videos for free
Easily edit your videos with millions of free music clips and sounds. We curate music and sound playlists for you with the hottest tracks in every genre, including Hip Hop, Edm, Pop, Rock, Rap, and Country, and the most viral original sounds.

■ Express yourself with creative effects
Unlock tons of filters, effects, and AR objects to take your videos to the next level.

■ Edit your own videos
Our integrated editing tools allow you to easily trim, cut, merge and duplicate video clips without leaving the app.

* Any feedback? Contact us at https://www.tiktok.com/legal/report/feedback or tweet us @tiktok_us\",\n \"scoreText\": \"4.4\",\n \"score\": 4.445332,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.zhiliaoapp.musically\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.zhiliaoapp.musically/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.zhiliaoapp.musically/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.zhiliaoapp.musically/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.zhiliaoapp.musically/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Filto: Video Filter Editor\",\n \"appId\": \"com.video.editor.filto\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.video.editor.filto\",\n \"icon\": \"https://play-lh.googleusercontent.com/S8CAnPiuo6OQJJqA9LcIq2qSfflqkGaoMexAYLMupk4teCfgqUunqglVQqmb2QZgsTw\",\n \"developer\": {\n \"devId\": \"Pinso.Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Pinso.Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Best photo/video editor with customized aesthetic sparkle filters & VHS effects which updated weekly. The coolest video & photo editor with multi-style content for creators! It's the easiest to use on IG and Facebook!

In Filto, there is a large number of vintage filters, aesthetic sparkle effects,dynamic stickers and other advanced functions. You can trim your video as you need, you are the definition for your creatives! By the way, you can adjust the ratio of your works to match all social media like Instagram, Tik Tok and other social medias, can't wait to see your post attracting numerous likes!

🌈[Aesthetic FILTERS]
GlITCH: Distort your photos and videos in creative ways
VHS: Full of the fashion with vintage vibe, let’s have party in the 80s~
BLING: Sparkle effects make you shine like a superstar
FILM: Bring you a fantasy visual feast with retro film
LIGHT & SHADOW: Colorful your style and be more attractive
FILTERS FOR FESTIVAL: From Valentine's Day, Easter, Halloween to Christmas, We always give you new ideas about your holiday!

🔥[Swag EFFECTS]
FISHEYE: Small lens to accompany you to see the big world.
VINTIQUE:Ready for the romantic and sweet vibe? Come ’n Try!
TWINKLE:Fairy Lights on winter nights.
GLITCH: The most popular glitches, distortions, and punk effects show your fashion attitude.
VAPOR WAVE: Strive for creating the coolest vapor tide, feel spellbound in vapor wave.
MIRROR & SPLIT: Wanna make your creatives eye-catching? You deserve to try this!
WAVE: Best decoration for your highlight moment.

[Fancy DYNAMIC STICKERS]
DYNAMIC EMOJI: Express your mood and attitude with fun.
POP ART: Breaking out of mediocrity, enhance your personality in your works.
NEON SIGN: Lightning and fancy your ideals.
VAPORWAVE: Create aesthetic & special Lo-Fi effects.
WREATH: The halo of butterflies and the flower crowns highlight your fancy beauty.

💎[EDITING features]
TRIM VIDEO: You can trim your video and select the video clip you like best.
SIZE CROPPING: Adjust the ratio to any size to share your creatives in Instagram, IGTV, YouTube, Facebook, Twitter, Douyin, etc.
HD EXPORT: Exporting HD creatives and no watermark!
CUSTOMIZATION: All the filters can be customized, you can adjust each variables to make your shots extraordinary.
SCROLLBAR:Find the photos you need in the album more easily.
ZOOM BY GESTURES: Adjust the video &photo ratio on canvas as you like, you are the definition for your works.
COMPARISON: More obvious effect and more visible change.

🎬[LAYOUTS & BACKGROUNDS]
COLOR PALETTE: Provides nearly 50 popular colors for you to choose, which can perfectly match the tones of your edits.
BLUR: Make your creating scene structure more harmonious.
LAYOUT & SIZE: Adjust the position and crop the video to any ratio you want.

✨[HD EXPORT & SHARING]
HD EXPORT: Professional photo & video editor help you export HD creatives which is clear and undamaged.
NO WATERMARK: There is no watermark throughout your editing process, enjoy the free editing here!
EASY TO SHARE: Share to all social apps Instagram, IGTV, Facebook, etc. Show your wonderful idea to the world!

Terms of use:http://gpmedia.ufile.ucloud.com.cn/filto/termsofuse.html
Privacy policy: http://gpmedia.ufile.ucloud.com.cn/filto/privacypolicy.html

Contact us:
Mail: contact@pinsotech.com
Facebook: https://www.facebook.com/Filto-304348330178551/
We believe that each of your feedback and opinions will make Filto better!

Best regards,
Filto Team\",\n \"scoreText\": \"2.8\",\n \"score\": 2.75,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.video.editor.filto\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.video.editor.filto/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.video.editor.filto/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.video.editor.filto/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.video.editor.filto/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"WhatsApp Messenger\",\n \"appId\": \"com.whatsapp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.whatsapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/bYtqbOcTYOlgc6gqZ2rwb8lptHuwlNE75zYJu6Bn076-hTmvd96HH-6v7S0YUAAJXoJN\",\n \"developer\": {\n \"devId\": \"WhatsApp LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/WhatsApp%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"WhatsApp from Meta is a FREE messaging and video calling app. It’s used by over 2B people in more than 180 countries. It’s simple, reliable, and private, so you can easily keep in touch with your friends and family. WhatsApp works across mobile and desktop even on slow connections, with no subscription fees*.

Private messaging across the world

Your personal messages and calls to friends and family are end-to-end encrypted. No one outside of your chats, not even WhatsApp, can read or listen to them.

Simple and secure connections, right away

All you need is your phone number, no user names or logins. You can quickly view your contacts who are on WhatsApp and start messaging.

High quality voice and video calls

Make secure video and voice calls with up to 8 people for free*. Your calls work across mobile devices using your phone’s Internet service, even on slow connections.

Group chats to keep you in contact

Stay in touch with your friends and family. End-to-end encrypted group chats let you share messages, photos, videos and documents across mobile and desktop.

Stay connected in real time

Share your location with only those in your individual or group chat, and stop sharing at any time. Or record a voice message to connect quickly.

Share daily moments through Status

Status allows you to share text, photos, video and GIF updates that disappear after 24 hours. You can choose to share status posts with all your contacts or just selected ones.


*Data charges may apply. Contact your provider for details.

---------------------------------------------------------

If you have any feedback or questions, please go to WhatsApp > Settings > Help > Contact Us\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2813764,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.whatsapp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.whatsapp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.whatsapp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.whatsapp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.whatsapp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Instagram\",\n \"appId\": \"com.instagram.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.instagram.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/LM9vBt64KdRxLFRPMpNM6OvnGTGoUFSXYV-w-cGVeUxhgFWkCsfsPSJ5GYh7x9qKqw\",\n \"developer\": {\n \"devId\": \"Instagram\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Instagram\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Instagram (from Facebook) allows you to create and share your photos, stories, and videos with the friends and followers you care about. Connect with friends, share what you're up to, or see what's new from others all over the world. Explore our community where you can feel free to be yourself and share everything from your daily moments to life's highlights.

INSTA Reels bring you a new way to create and discover entertaining short videos. You can watch, like, comment, and share Reels videos in a dedicated space in Explore.

*Watch & create short clips up to 15 seconds long with INSTA Reels.
Add special effects, background music, face filters, emojis, and stickers to bring your ideas to life
Upload your creative video clips and expand your audience with Explore
Enjoy millions of entertaining, funny, and informative videos
Watch & share any Instagram Reels video with your friends

*Add photos and videos to your INSTA Story that disappear after 24 hours, and bring them to life with fun creative tools.
Stories allow you to easily share moments or posts from your day with text, music, stickers, and GIFs to bring your Stories to life
Share memes privately with your friends and have conversations
Boomerangs loop any moment you capture for a fun mini-video while Superzoom lets you add special effects as the camera automatically zooms in
Add polls to your Stories to get more interaction with friends and followers
Choose specific Close Friends who can watch your video clips or make them public
Pin your favorite memories to your profile to keep your Stories alive as Highlights

* Message your friends in Direct
Start fun conversations with one or more friends about what you see on Feed, Stories, and INSTA Reels.
Video chat to connect no matter where you are
Learn about what's trending from your favorite accounts and send them to friends
Send messages to your friends, share posts privately, and receive chat notifications

* Post photos and videos to your INSTA Feed
Upload photos and videos directly from your phone library
Share content with your followers instantly
Post photos and videos to your feed that you want to show on your profile
Post short videos or photo updates from moments in your life
Receive notifications when someone likes or comments on your post

*Search & Explore to Learn More About Your Interests
* Follow your favorite bands, celebrities, actors, athletes, and singers for live updates
* Watch skits, movie scenes, news updates, music performances, sports highlights, and more from your favorite pages
* Check out IGTV for longer videos from your favorite INSTA creators.
* Discover brands and connect with local small businesses
* Shop for products that compliment your personal style.\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9835258,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.instagram.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.instagram.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.instagram.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.instagram.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.instagram.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Cash App\",\n \"appId\": \"com.squareup.cash\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.squareup.cash\",\n \"icon\": \"https://play-lh.googleusercontent.com/6RcPDQwPihY591Axu7e6mHhMZ22Q-dqeI5z9GkJiu4Hc-Xha77E6uoeplstYuv5RcnE\",\n \"developer\": {\n \"devId\": \"Square, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Square%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Cash App is the easy way to send, spend, save, and invest* your money. It’s the SAFE, FAST, and FREE mobile finance** app.

SAFE: Help protect all your payments and investments with a passcode or biometric features. Pause spending on your Cash Card with one tap if you misplace it. All of your information is stored securely.

FAST: Sign up and make your first payment in minutes. Instantly send and receive money from friends. Transfer money from Cash App to an external bank account instantly instead of waiting days. Use your Cash App account and routing numbers to receive deposits up to two days earlier than is standard with most banks.

FREE: Send and receive money at no cost. Order your debit card for free in minutes, and we’ll mail you your custom physical debit card in about a week. Invest in your favorite stocks commission-free with as little as $1. Brokerage services provided by Cash App Investing LLC, member FINRA / SIPC.

HERE’S HOW IT WORKS
Download and sign up for Cash App in a matter of minutes. The signup process is simple and fast so that you can start using Cash App right away.

SEND AND RECEIVE MONEY INSTANTLY
Receive, request, and send money from friends and family instantly with only a few taps. Cash App is the easy way to pay a friend back for dinner or split rent with your roommates.

GET A FREE CUSTOM VISA DEBIT CARD
Order your Cash Card (a customizable Visa debit card) directly from Cash App. You’ll be able to instantly make purchases using your virtual card. We’ll also mail you your physical laser-etched Cash Card so you can swipe, dip, or tap at any merchant. Debit card issued by Cash App’s bank partner(s). ATM withdrawal fees may apply.

RECEIVE YOUR PAYCHECK UP TO TWO DAYS EARLY
Deposit paychecks, tax returns, unemployment benefits, government stimulus payouts and more directly into your Cash App balance using your account and routing number. Receive deposits up to two days earlier than is standard with most banks. Use the same account and routing information to pay bills using your balance. Cash App is a financial services platform, not a bank. Banking services provided by Cash App’s bank partner(s).

GET INSTANT DISCOUNTS WITH CASH BOOST
Cash Card is the only free debit card** with instant discounts at your favorite stores, websites, apps, and restaurants. These instant discounts are easy to use and are applied to Cash Card transactions instantly. Just select a given Cash Boost in your app and then use your Cash Card to pay. It’s that simple. No points, no waiting, just instant savings.

BUY, SELL, SEND, AND RECEIVE BITCOIN
Cash App is the easy way to buy, sell, send, gift, and receive bitcoin (BTC) — get started instantly with as little as $1. You can also set up recurring buys of bitcoin, withdraw it to a different cryptocurrency wallet — or send it to friends and family with compatible wallets (even those who don't have Cash App) and use the Lightning Network to pay with bitcoin faster, and for free on Cash App. Add Bitcoin Boosts to your Cash Card to earn bitcoin on your purchases. Bitcoin services are provided by Cash App.

BUY & SELL STOCKS COMMISSION-FREE
Instantly begin investing commission-free. You can buy as little as $1 of stock in top US companies.*** Track stock prices in your app and monitor the performance of your overall investment portfolio. Create a list of companies to follow so you can stay up to date on performance.

*Brokerage Services are provided by Cash App Investing LLC, member FINRA/SIPC, subsidiary of Block, Inc. (fka Square, Inc.). Investing involves risk; you may lose money. Investments are not FDIC insured. Cash App provides Bitcoin services, not Cash App Investing LLC.

**Cash App is a financial services platform, not a bank. Banking services and Cash Card are provided and issued by Cash App’s banking partners, not Cash App Investing LLC.

***Fractional shares are not transferable. For additional conditions and limitations, see the Cash App Investing Customer Agmt.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5938125,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.squareup.cash\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.squareup.cash/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.squareup.cash/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.squareup.cash/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.squareup.cash/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Amazon Shopping\",\n \"appId\": \"com.amazon.mShop.android.shopping\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.amazon.mShop.android.shopping\",\n \"icon\": \"https://play-lh.googleusercontent.com/QPKtPRTJyhrYoPqYmjP81aCeYAQrH7ocIC25Tw8spEoKsX7eY0cqXMJp4QfkIq2bSg\",\n \"developer\": {\n \"devId\": \"Amazon Mobile LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Amazon%20Mobile%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"

Product Features


Amazon Shopping offers app-only benefits to help make shopping on Amazon faster and easier than shopping on your desktop.

Never miss a delivery


Get real-time tracking and delivery notifications so you know where your package is and when it arrives.

Know exactly what you’re purchasing


Full 360° product view lets you see items from every angle. “View in you room” makes sure it fits by using your phone’s camera and VR so you can see it in your space.

We’ll notify you when items go on sale


Just tap the heart icon to save items to Your Lists and we’ll alert you of price drops so you don’t miss a deal.

Never forget your password


Save time by staying securely signed in. If you prefer to sign out, use facial or fingerprint identification to sign back in.

Connect with us when it works best for you


Live chat support is open 24 hours, 7 days a week. Once you’ve started a chat, it stays that way for 24 hours so you don’t have to start your support session from the beginning.

We’ll find that item for you


Not sure of an item’s brand or where to but it? Just tap the scan icon in the search bar, take a picture of the item or its barcode, and we’ll find it for you.

Product Description


Browse, search, view product details, read reviews, and purchase millions of products. We deliver to 100+ countries in as quickly as 3-5 days. Whether you’re buying gifts, reading reviews, tracking orders, scanning products, or just shopping, Amazon Shopping app offers more benefits than shopping on Amazon via your desktop.

Important Note Regarding Permissions


Please note that the Amazon Shopping app requires access to the following services to operate properly:
* Contacts: Allows you to send Amazon gift cards to your contacts or invitation to install the Amazon app.
* Camera: Allows the Amazon app to access your camera on the device. You can use your camera to find products by scanning the cover or its barcode, to add gift cards and credit cards, or to add pictures in the product reviews.
* Flashlight: Allows the Amazon app to turn on the flashlight. You can use the flashlight to find products with the camera feature even in low-light or dark conditions.
* Microphone: Allows the Amazon app to access your microphone to use your voice to search and interact with your Assistant.
* Location: Allows the Amazon app to access your location to help you discover local offers and select addresses fast.
* Account: Allows you to share products on Amazon with your friends and families through Facebook or other social networks.
* Phone: Allows the Amazon app to pre-populate the Amazon Customer Service number on your phone’s keypad.
* Storage: Allows the Amazon app to store your preferences so that some features can load and run faster on the device.
* Wi-Fi: This permissions is used when setting up either a Dash Button or Dash Wand using the Amazon Shopping app.

The Amazon App for Tablets is available on Google Play. Search for "Amazon Tablet" to install the app and begin shopping.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.590487,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.amazon.mShop.android.shopping\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.amazon.mShop.android.shopping/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.amazon.mShop.android.shopping/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.amazon.mShop.android.shopping/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.amazon.mShop.android.shopping/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"HBO Max: Stream TV & Movies\",\n \"appId\": \"com.hbo.hbonow\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.hbo.hbonow\",\n \"icon\": \"https://play-lh.googleusercontent.com/1iyX7VdQ7MlM7iotI9XDtTwgiVmqFGzqwz10L67XVoyiTmJVoHX87QtqvcXgUnb0AC8\",\n \"developer\": {\n \"devId\": \"WarnerMedia Global Digital Services, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/WarnerMedia%20Global%20Digital%20Services%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Limited-time offer. Save over 40% when you prepay for a year. Savings based on yearly plan paid upfront vs. monthly plan paid over 12 mos. Ends 10/30/22. See HBOMax.com.

HBO Max is a premium streaming app that combines all of HBO with even more must-see TV shows, blockbuster movies, and exclusive Max Originals. It’s everything you love, all in one place. All of HBO. All of the greatest TV and hit movies. All yours. Available anytime to stream on your favorite screens.

With unlimited access to thousands of hours of entertainment, we’ve got something for everyone in your family. Keep up with fresh episodes from the latest HBO shows and fall back in love with the iconic TV everyone’s still talking about. Watch new movies from D.C. and Warner Bros, plus the comedies, dramas, and classics you love.

So kick back in your comfiest loungewear and find your next favorite from one of our curated hubs, including HBO, D.C., the Cartoon Network Collection, Classics curated by TCM, Sesame Workshop, and more. With HBO Max, you’ll always find something new to stream.


Here’s what’s waiting for you:

• All of HBO with even more critically-acclaimed movies, binge-worthy TV shows, and Max Originals.
• Bingeable collections hand-picked by our editorial experts—not robots.
• One-of-a-kind kids experience with flexible parental controls.
• HBO Max Hubs devoted to beloved brands including HBO, the Adult Swim Collection, the Cartoon Network Collection, Looney Tunes, Classics curated by TCM, DC, and more.
• Download episodes and movies to your phone or tablet to watch offline, anytime.
• Up to five viewer profiles with customizable profile images.



Content and feature availability on HBO Max may vary by region. Some titles and features shown above may not be available in your country.

HBO Max is only accessible in certain territories.

For help, please visit help.HBOMax.com.

Privacy Policy: https://www.hbomax.com/privacy
Terms of Use: https://www.hbomax.com/terms-of-use
For California residents only, manage sharing your data at: http://warnermediaprivacy.com/do-not-sell\",\n \"scoreText\": \"3.6\",\n \"score\": 3.645407,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hbo.hbonow\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.hbo.hbonow/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.hbo.hbonow/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.hbo.hbonow/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.hbo.hbonow/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Snapchat\",\n \"appId\": \"com.snapchat.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.snapchat.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/KxeSAjPTKliCErbivNiXrd6cTwfbqUJcbSRPe_IBVK_YmwckfMRS1VIHz-5cgT09yMo\",\n \"developer\": {\n \"devId\": \"Snap Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Snap%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Snapchat is a fast and fun way to share the moment with your friends and family 👻

SNAP
• Snapchat opens right to the Camera — just tap to take a photo, or press and hold for video.
• Express yourself with Lenses, Filters, Bitmoji and more!
• Try out new Lenses daily created by the Snapchat community!

CHAT
• Stay in touch with friends through live messaging, or share your day with Group Stories.
• Video Chat with up to 16 friends at once — you can even use Lenses and Filters when chatting!
• Express yourself with Friendmojis — exclusive Bitmoji made just for you and a friend.

STORIES
• Watch friends' Stories to see their day unfold.
• See Stories from the Snapchat community that are based on your interests.
• Discover breaking news and exclusive Original Shows.

SPOTLIGHT
• Spotlight showcases the best of Snapchat!
• Submit your own Snaps or sit back, relax, and watch.
• Pick your favorites and share them with friends.

MAP
• Share your location with your best friends or go off the grid with Ghost Mode.
• See what your friends are up to on your most personal map when they share their location with you.
• Explore live Stories from the community nearby or across the world!

MEMORIES
• Save unlimited photos and videos of all your favorite moments.
• Edit and send old moments to friends or save them to your Camera Roll.
• Create Stories from your favorite Memories to share with friends and family.

FRIENDSHIP PROFILE
• Every friendship has its own special profile to see the moments you’ve saved together.
• Discover new things you have in common with Charms — see how long you’ve been friends, your astrological compatibility, your Bitmoji fashion sense, and more!
• Friendship Profiles are just between you and a friend, so you can bond over what makes your friendship special.

Happy Snapping!

• • •

Please note: Snapchatters can always capture or save your messages by taking a screenshot, using a camera, or otherwise. Be mindful of what you Snap!

For a full description of our privacy practices, please see our Privacy Center.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2019935,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.snapchat.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.snapchat.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.snapchat.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.snapchat.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.snapchat.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Deep Cleaner-Phone Faster\",\n \"appId\": \"com.sweet.boost.deepcleaner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.sweet.boost.deepcleaner\",\n \"icon\": \"https://play-lh.googleusercontent.com/extB_rwhPUjaRNj-3wCWeJn0Xsg-nZ7P0Sz2-w_P0xvrNWstMIMZwNCBXKl5ZL0y-A\",\n \"developer\": {\n \"devId\": \"CleanerStudio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/CleanerStudio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"DeepCleaner, focusing on mobile phone cleaning, makes your mobile phone smooth from now on.

Introduction:
DeepCleaner is the secret to keeping your phone smooth.
Super Booster focuses on optimizing your storage space, clearing junk files from your phone and making your device run faster.

Junk Clean:

If you have too much junk on your phone, it will cause you to run out of storage space. In spare time, you can often clean up junk to keep your phone in good performance

Battery Saver:

Battery saver can help you end ineffective programs that drain your battery. But we will not affect your use.

CPU cooler:

It can effectively reduce the temperature of mobile phone CPU, so that your mobile phone no longer heats up and runs more smoothly.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.075,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.sweet.boost.deepcleaner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.sweet.boost.deepcleaner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.sweet.boost.deepcleaner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.sweet.boost.deepcleaner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.sweet.boost.deepcleaner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Messenger\",\n \"appId\": \"com.facebook.orca\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.facebook.orca\",\n \"icon\": \"https://play-lh.googleusercontent.com/ldcQMpP7OaVmglCF6kGas9cY_K0PsJzSSosx2saw9KF1m3RHaEXpH_9mwBWaYnkmctk\",\n \"developer\": {\n \"devId\": \"Meta Platforms, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Meta%20Platforms%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Be together whenever, with our free* all-in-one communication app, complete with unlimited text, voice, video calling and group video chat features.
CROSS-APP MESSAGING AND CALLING
Connect with your Instagram friends right from Messenger. Simply search for them by name or username to message or call.
PRIVACY SETTINGS
New privacy settings let you choose who can reach you, and where your messages are delivered.
CUSTOM REACTIONS
Lost for words? You can customize your reactions, with lots more emojis to choose from.
CHAT THEMES
Choose from fun themes and colors, like Tie-Dye or Love, to make your chats more personal.
WATCH TOGETHER
Watch videos, tv shows, and movies with your friends over Messenger Video Chat and Rooms when you can't be together. Capture every moment and reaction in real-time.
GET THE GROUP TOGETHER WITH ROOMS
Send a link to group video chat with anyone, even if they don't have Messenger. Host up to 50 people with no time limits.
FREE* VIDEO CALLS TO STAY CONNECTED
Keep your friends and family close with unlimited live video chatting.Host group video calls with up to 8 people, with high-quality audio, high definition video, and interactive video features like face filters.
UNLIMITED FREE* TEXT & PHONE CALLS
Skip exchanging phone numbers and simply send a message to your Facebook friends, even if they’re across the world. Enjoy high-quality voice and text messaging on mobile, tablet, and desktop.
TURN OFF THE LIGHTS IN DARK MODE
Give your eyes some rest with a sleek new look that darkens the colors of the chat interface.
RECORD AND SEND VOICE AND VIDEO MESSAGES
When text just won't cut it, just hit record and send. Say, sing, show, or shout it out loud.
EXPRESS YOURSELF WITH STICKERS, GIFS, AND EMOJIS
Use custom stickers to show your creative side. You can even add effects and filters to video calls.
SEND FILES, PHOTOS, AND VIDEOS
There’s no limit to the number of files you want to share with your friends.
PLAN AND MAKE IT HAPPEN
Make plans to get together with polls and more. Suggest a meeting spot or tell friends where you are by sharing your location with just a few taps.
SEND MONEY SECURELY AND EASILY (within US only)
Send and receive money securely and easily with friends and family right in the app by adding your debit card, PayPal account or reloadable prepaid card (single-source cards eligible for sending money only).
CHAT WITH BUSINESSES
Easily connect with your favorite businesses to make reservations, get customer support, find deals and more.
COMPATIBLE ACROSS PLATFORMS
Chat with friends across an array of devices, like desktop, Portal, and others.
Privacy Policy: https://www.facebook.com/about/privacy/
LEARN MORE about Messenger texting and group video chat at: http://messenger.com
* Data rates apply\",\n \"scoreText\": \"4.1\",\n \"score\": 4.1062875,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.orca\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.facebook.orca/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.facebook.orca/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.facebook.orca/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.facebook.orca/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Disney+\",\n \"appId\": \"com.disney.disneyplus\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.disney.disneyplus\",\n \"icon\": \"https://play-lh.googleusercontent.com/xoGGYH2LgLibLDBoxMg-ZE16b-RNfITw_OgXBWRAPin2FZY4FGB9QKBYApR-0rSCkQ\",\n \"developer\": {\n \"devId\": \"Disney\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Disney\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Disney+ is the streaming home of your favorite stories. With unlimited entertainment from Disney, Pixar, Marvel, Star Wars and National Geographic, there's always something to explore. Watch the latest releases, Original series and movies, classic films, and TV shows with new stories added every week.

When opening Disney+ for the first time on or after March 16, all subscribers in the U.S. will be prompted to update their Parental Controls. This includes the option to select content ratings restrictions for each profile as well as to add a PIN to lock profiles. Those that choose to keep their settings the same will continue to enjoy Disney+ as they always have within a TV-14 content rating environment, with the option to make changes at any time under Profile settings.

Stream and download Originals like Loki, and fan favorites like Frozen and The Simpsons.

With Disney+, you get:
• Exclusive new Originals from the creators of Disney, Pixar, Marvel, Star Wars, and National Geographic
• Access to new releases, timeless classics and past seasons of your favorite TV shows
• GroupWatch, a way to watch Disney+ together, even when you’re apart
• Unlimited downloads on up to 10 devices
• Over 100 titles in 4K UHD and HDR
• The capacity to watch on four screens at once at no extra cost
• IMAX Enhanced, see the full scale and scope with IMAX's expanded aspect ratio. Available with certain Marvel titles and accessible on all devices where Disney+ is supported.
• Multiple parental control features including Profile PIN, Kids Profiles, Kid-Proof Exit. Account holders can change an individual profile’s content rating at any time under Profile settings.

For help with Disney+, please visit: http://help.disneyplus.com.
For our Subscriber Agreement and other policies please visit: https://disneyplus.com/legal.

Your California Privacy Rights: https://www.disneyplus.com/legal/your-california-privacy-rights
Do Not Sell My Information: https://www.disneyplus.com/legal/privacy-policy

The content available on Disney+ may vary by region. Some titles shown above may not be available in your country.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4725523,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.disney.disneyplus\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.disney.disneyplus/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.disney.disneyplus/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.disney.disneyplus/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.disney.disneyplus/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Indeed Job Search\",\n \"appId\": \"com.indeed.android.jobsearch\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.indeed.android.jobsearch\",\n \"icon\": \"https://play-lh.googleusercontent.com/_sJ-ST-crO8lxIzTv44xv_hiZvA6X7X2-8jSjhha2RfYcGSgACRod38yA6dfmcJHy_M\",\n \"developer\": {\n \"devId\": \"Indeed Jobs\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Indeed%20Jobs\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Find jobs on Indeed, the job search app built to help you every step of the way. Get free access to millions of job postings, personalize your search, connect with employers and submit job applications—all from the Indeed app.

From search to apply, Indeed’s app helps you through the entire process of finding the job that’s right for you.


Search
Search by job title, company, salary, and location
Find full-time, part-time, contract, freelance and internship positions
Tailor your search to view new postings added since your last visit
Explore new jobs Indeed suggests specifically for you

Personalize
Follow companies to get their latest job postings
Let employers find you by uploading your resume and creating an account
See which jobs you’ve visited, saved, and applied to
Create alerts to get notified about specific jobs

Research
Use the Career Guide to prepare for all stages of your job search process
Get free access to millions of company reviews
See how users score companies on work happiness
Review salaries for job titles by company and location before you apply

Apply
Use your Indeed Resume to easily apply to jobs from the app
Personalize a message for each job before applying
Message employers to ask a question or highlight qualifications
Track your application status for multiple jobs


By downloading this app, you agree to Indeed's Cookie Policy, Privacy Policy and Terms of Service found at www.indeed.com/legal, where you may avail of your rights at any time, including the right to object to the legitimate interest use of your personal data for marketing purposes. You further agree that by downloading this app, Indeed may process, analyze, and record any and all activities you take while using the app and any and all interactions and communications you have with, on, or through the app. We do so in order to optimize user experience and achieve the proper functioning of the app. In order to provide you with certain services and support ad attribution, user data, such as your IP address or other unique identifier and event data related to the installation of the Indeed App, may be shared with certain service providers when you download or install this app.

This is performed for the legitimate interest of allowing Indeed to understand and optimize our users' complete customer journey by:

- helping us understand how users arrive to Indeed
- better measure the performance of our ads;
- facilitating user logins through third party accounts in certain cases; and
- helping us understand where a user accesses Indeed through different devices

Please send your feedback to android@indeed.com

Do Not Sell My Personal Information: https://www.indeed.com/legal/ccpa-dns\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6847506,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.indeed.android.jobsearch\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.indeed.android.jobsearch/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.indeed.android.jobsearch/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.indeed.android.jobsearch/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.indeed.android.jobsearch/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Telegram\",\n \"appId\": \"org.telegram.messenger\",\n \"url\": \"http://gplayapi.srik.me/api/apps/org.telegram.messenger\",\n \"icon\": \"https://play-lh.googleusercontent.com/ZU9cSsyIJZo6Oy7HTHiEPwZg0m2Crep-d5ZrfajqtsH-qgUXSqKpNA2FpPDTn-7qA5Q\",\n \"developer\": {\n \"devId\": \"Telegram FZ-LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Telegram%20FZ-LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Pure instant messaging — simple, fast, secure, and synced across all your devices. One of the world's top 10 most downloaded apps with over 500 million active users.

FAST: Telegram is the fastest messaging app on the market, connecting people via a unique, distributed network of data centers around the globe.

SYNCED: You can access your messages from all your phones, tablets and computers at once. Telegram apps are standalone, so you don’t need to keep your phone connected. Start typing on one device and finish the message from another. Never lose your data again.

UNLIMITED: You can send media and files, without any limits on their type and size. Your entire chat history will require no disk space on your device, and will be securely stored in the Telegram cloud for as long as you need it.

SECURE: We made it our mission to provide the best security combined with ease of use. Everything on Telegram, including chats, groups, media, etc. is encrypted using a combination of 256-bit symmetric AES encryption, 2048-bit RSA encryption, and Diffie–Hellman secure key exchange.

100% FREE & OPEN: Telegram has a fully documented and free API for developers, open source apps and verifiable builds to prove the app you download is built from the exact same source code that is published.

POWERFUL: You can create group chats with up to 200,000 members, share large videos, documents of any type (.DOCX, .MP3, .ZIP, etc.) up to 2 GB each, and even set up bots for specific tasks. Telegram is the perfect tool for hosting online communities and coordinating teamwork.

RELIABLE: Built to deliver your messages using as little data as possible, Telegram is the most reliable messaging system ever made. It works even on the weakest mobile connections.

FUN: Telegram has powerful photo and video editing tools, animated stickers and emoji, fully customizable themes to change the appearance of your app, and an open sticker/GIF platform to cater to all your expressive needs.

SIMPLE: While providing an unprecedented array of features, we take great care to keep the interface clean. Telegram is so simple you already know how to use it.

PRIVATE: We take your privacy seriously and will never give any third parties access to your data. You can delete any message you ever sent or received for both sides, at any time and without a trace. Telegram will never use your data to show you ads.

For those interested in maximum privacy, Telegram offers Secret Chats. Secret Chat messages can be programmed to self-destruct automatically from both participating devices. This way you can send all types of disappearing content — messages, photos, videos, and even files. Secret Chats use End-to-End Encryption to ensure that a message can only be read by its intended recipient.

We keep expanding the boundaries of what you can do with a messaging app. Don’t wait years for older messengers to catch up with Telegram — join the revolution today.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3844323,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.telegram.messenger\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/org.telegram.messenger/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/org.telegram.messenger/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/org.telegram.messenger/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/org.telegram.messenger/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Facebook\",\n \"appId\": \"com.facebook.katana\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.facebook.katana\",\n \"icon\": \"https://play-lh.googleusercontent.com/ccWDU4A7fX1R24v-vvT480ySh26AYp97g1VrIB_FIdjRcuQB2JP2WdY7h_wVVAeSpg\",\n \"developer\": {\n \"devId\": \"Meta Platforms, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Meta%20Platforms%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Keeping up with friends is faster and easier than ever. Share updates and photos, engage with friends and Pages, and stay connected to communities important to you.

Features on the Facebook app include:

* Connect with friends and family and meet new people on your social media network
* Set status updates & use Facebook emoji to help relay what’s going on in your world
* Share photos, videos, and your favorite memories.
* Get notifications when friends like and comment on your posts
* Find local social events, and make plans to meet up with friends
* Play games with any of your Facebook friends
* Backup photos by saving them in albums
* Follow your favorite artists, websites, and companies to get their latest news
* Look up local businesses to see reviews, operation hours, and pictures
* Buy and sell locally on Facebook Marketplace
* Watch live videos on the go


The Facebook app does more than help you stay connected with your friends and interests. It's also your personal organizer for storing, saving and sharing photos. It's easy to share photos straight from your Android camera, and you have full control over your photos and privacy settings. You can choose when to keep individual photos private or even set up a secret photo album to control who sees it.

Facebook also helps you keep up with the latest news and current events around the world. Subscribe to your favorite celebrities, brands, news sources, artists, or sports teams to follow their newsfeeds, watch live streaming videos and be caught up on the latest happenings no matter where you are!

The most important desktop features of Facebook are also available on the app, such as writing on timelines, liking photos, browsing for people, and editing your profile and groups.

Now you can get early access to the next version of Facebook for Android by becoming a beta tester. Learn how to sign up, give feedback and leave the program in our Help Center: http://on.fb.me/133NwuP

Sign up directly here:
http://play.google.com/apps/testing/com.facebook.katana

Problems downloading or installing the app? See http://bit.ly/GPDownload1
Still need help? Please tell us more about the issue. http://bit.ly/invalidpackage

Facebook is only available for users age 13 and over.
Terms of Service: http://m.facebook.com/terms.php.\",\n \"scoreText\": \"3.1\",\n \"score\": 3.0992043,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.katana\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.facebook.katana/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.facebook.katana/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.facebook.katana/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.facebook.katana/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Tubi - Movies & TV Shows\",\n \"appId\": \"com.tubitv\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.tubitv\",\n \"icon\": \"https://play-lh.googleusercontent.com/Xy8NOV0EXdrbji891ShNk9HKqYWtC0__mQDrSA_SNlqcg-a0OarjX1Ny3kIxxYPoZkc\",\n \"developer\": {\n \"devId\": \"Tubi TV\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Tubi%20TV\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Watch thousands of hit movies and TV series for free. Tubi is 100% legal unlimited streaming, with no credit cards and no subscription required. Choose what you want to watch, when you want to watch it, with fewer ads than regular TV. Tubi is the largest free streaming service featuring award-winning movies and TV series. There is something for everybody; from comedy to drama, kids to classics, originals and niche favorites such as reality TV, anime, and British series. Tubi now also features local live news channels, some of your favorite sports networks, and live entertainment channels for every mood. Download now and start streaming entertainment for free, today!

Tubi adds free HD shows and movies every week, so you’ll never run out of entertainment to stream on the go (and at home!). Our goal is to free as many categories of TV shows and movies as we can so you don't have to pay for online entertainment (like you do for other streaming services). Not only are our movies and online TV shows always free and available anywhere but they’re also highly rated on IMDb. All of our categories are free to choose from, including New Releases, and Anime TV series that you can't find on other popular subscription video apps. Our Anime collection has Naruto, Yu-gi-oh, Cowboy Bebop, and much more. Why torrent content when you could stream your favorite movies and TV shows with us?

Tubi Features Include:

Watch HD Movies & TV Shows with the Biggest Hollywood Stars

Watch online entertainment from your favorite Hollywood studios
Get a taste of Hollywood in its prime and watch your favorite actors and actresses in our movies and TV Shows.
Free video streaming for every movie and TV show – Never pay a subscription!
Discover hidden gems and new favorites in all of our categories
Create a personal queue to bookmark which videos you want to watch
New HD Movies & TV Shows Added Each Friday
Get a daily does of celeb and legal drama with daily episodes of Paternity Court and Wendy Williams

New movies and series added weekly – Browse our featured section to see what’s new this week!
Popular selection of HD TV shows (feel free to binge all you want)
Chromecast Support & Multi-Device Syncing

Watch on the big screen with Chromecast or Airplay
View on your Android device as well as your connected TV (Chromecast, Apple TV, Roku devices, Playstation, Xbox, Amazon Fire TV, Samsung TV, etc.) and online at www.tubitv.com
Continue watching videos exactly where you left off on any device.
Watch entertainment in your favorite categories and genres like:

Drama Genre
Comedy Genre
Action Genre
Horror Genre
Anime (New Anime, and Next Day!)
Spanish Language (Telenovela)
Korean Movies
...And much, much more from Hollywood, Japan, and Korea!

Find the movie or series you love from leading Hollywood talent, including Oscar winners and movies featuring Ryan Reynolds, Curtis ""50 Cent"" Jackson, Arnold Schwarzenegger, Charlize Theron, Dwayne Johnson, Samuel Jackson, Russell Crowe, and Julia Louis-Dreyfus, among many other elite Hollywood royalty.

Check back weekly (new content added every Friday) to see new free TV shows and movies that are available for you to stream online. You do not have to torrent to watch your favorite movies or shows. Let us know what you want to see added to Tubi and we will work hard to free those videos. We believe that sometimes the best things in life ARE free. Please enjoy and let us know what you think.

Download Tubi TV today and welcome to the FREE TV and movie revolution!\",\n \"scoreText\": \"4.8\",\n \"score\": 4.788908,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.tubitv\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.tubitv/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.tubitv/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.tubitv/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.tubitv/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"McDonald's\",\n \"appId\": \"com.mcdonalds.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.mcdonalds.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/hSRuCp9qVkxNYLYibPYyra4bQLYDyHg40TA1Cu6i9Z3HsWEgS1q076VfjacAdQquHw\",\n \"developer\": {\n \"devId\": \"McDonalds USA, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/McDonalds%20USA%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Just tap "install" to join MyMcDonald's Rewards and start earning points on your faves for free McDonald's. Plus save time by ordering ahead in the app and get exclusive deals.*

Mobile Order & Pay
Get your faves fast with Mobile Order and Pay. Place your order and select your pickup option.*

MyMcDonald’s Rewards
Join MyMcDonald's Rewards in the app to start earning points on every purchase and redeem for free McDonald’s.*

Exclusive Deals and App Offers
Get exclusive deals on your McDonald’s favorites in the app with contactless Mobile Order & Pay* and convenient Drive Thru or Curbside pickup.

McDelivery
Order McDelivery through the app and get your food delivered to your door. *

Save Your Favorites
No pickles? No problem. Customize and save your favorites to quickly reorder for your next visit.

Restaurant Locator
Open the map and find the nearest McDonald’s, along with store hours, and restaurant information.

Download the McDonald’s app today and enjoy access to exclusive deals, MyMcDonald’s Rewards and much more.

* At participating McDonald’s. MyMcDonald’s Rewards program excludes delivery. McDelivery prices may be higher than at restaurants. Download and registration required. Data rates may apply. The McDonald's App is not currently compatible with smartwatches. Check https://www.mcdonalds.com/us/en-us/terms-and-conditions.html for Terms and Conditions and more information. © 2022 McDonald’s\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6203017,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.mcdonalds.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.mcdonalds.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.mcdonalds.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.mcdonalds.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.mcdonalds.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Bravo Cleaner: Speed Booster\",\n \"appId\": \"com.engro.cleanerforsns\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.engro.cleanerforsns\",\n \"icon\": \"https://play-lh.googleusercontent.com/1xVolUoHWdLG5NONEdDXwxpStu3Kok3c9w_sRCkO5_KkCmDv7D4V8wmTU8FXEwbMdQ\",\n \"developer\": {\n \"devId\": \"Bravo GmbH\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Bravo%20GmbH\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"🏆Bravo Cleaner is an amazing Android phone cleaner app, focusing on junk files cleaner, speed booster, battery saver and photos clean. This app can clear cache files to optimize your phone storage space. It also has unique cleaning function to clean up TikTok and WhatsApp, Download this one-tap smart phone clear clean master now to get rid of junks! It makes your phone faster than ever.

Bravo Cleaner FEATURES:
💡Junk Cleaner Master
Upset about the lag in your games or videos? Bravo Cleaner can automatically scan and clean phone memory, app cache, junk files, RAM, temp files of SNS apps, hence freeing up storage space and boosting phone speed and performance. Come and get a comfortable experience on Android phones just in one touch!
🚀Smart Phone Booster
Is your Android phone running heavily? Bravo Cleaner booster can real-time effectively release your mobile storage and clean ram, deeply optimize the space by clearing out bulk junk files, cache data, APK files, browser history if necessary, thus making the experience on Android phones more enjoyable and convenient.
🔋Battery Saver & Extend Battery Life
It’s time to meet your awesome personalized battery doctor! Bravo Cleaner can intelligently monitor and analyze battery usage, close battery-draining apps in time to help save battery power and extend its life. Just ONE TAP can save electricity and help Android users away from the low-battery trouble!
💙Photos Clean
Bravo Cleaner is a powerful photo manager and amazing photo optimizer. It can clean duplicate, similar, useless photos to release more space for your Android photo. Safe, free and easy to manage your photos efficiently.
🌟Magic SNS Apps Optimizer & Smart Doctor
Bravo Cleaner release storage space of SNS apps, speeds up communication and boosts mobile effectively by clearing RAM of TikTok, WhatsApp and other SNS apps. Just one tap to free up memories without worrying about removing the wrong files. Bravo Cleaner are free phone optimizer, deep cache cleaner and phone sweeper to make your boost mobile stay clean. Say goodbye to lag!

💞Bravo Cleaner saves more space for your Android phone with its junk cleaner, phone booster, battery saver and photos cleaner function. One-tap to clear junk files to save space of SNS apps. With Bravo Cleaner, you will have a better clear app experience in watching videos, playing games, and chatting with your friends. Download this super magic phone clear app now!

👉👉If you like Bravo Cleaner, have feedback, suggestion, or just want to say hi, please contact us via charaleong@gmail.com, thus we can bring you the best user experience and upcoming renew versions.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.353319,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.engro.cleanerforsns\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.engro.cleanerforsns/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.engro.cleanerforsns/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.engro.cleanerforsns/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.engro.cleanerforsns/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Netflix\",\n \"appId\": \"com.netflix.mediaclient\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.netflix.mediaclient\",\n \"icon\": \"https://play-lh.googleusercontent.com/TBRwjS_qfJCSj1m7zZB93FnpJM5fSpMA_wUlFDLxWAb45T9RmwBvQd5cWR5viJJOhkI\",\n \"developer\": {\n \"devId\": \"Netflix, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Netflix%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Looking for the most talked about TV shows and movies from the around the world? They’re all on Netflix.

We’ve got award-winning series, movies, documentaries, and stand-up specials. And with the mobile app, you get Netflix while you travel, commute, or just take a break.

What you’ll love about Netflix:

• We add TV shows and movies all the time. Browse new titles or search for your favorites, and stream videos right on your device.
• The more you watch, the better Netflix gets at recommending TV shows and movies you’ll love.
• Create up to five profiles for an account. Profiles give different members of your household their own personalized Netflix.
• Enjoy a safe watching experience just for kids with family-friendly entertainment.
• Preview quick videos of our series and movies and get notifications for new episodes and releases.
• Save your data. Download titles to your mobile device and watch offline, wherever you are.

For complete terms and conditions, please visit http://www.netflix.com/termsofuse
For privacy statement, please visit http://www.netflix.com/privacy\",\n \"scoreText\": \"4.4\",\n \"score\": 4.432515,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.netflix.mediaclient\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.netflix.mediaclient/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.netflix.mediaclient/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.netflix.mediaclient/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.netflix.mediaclient/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Easy Booster\",\n \"appId\": \"com.gleam.betty.easybooster\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.gleam.betty.easybooster\",\n \"icon\": \"https://play-lh.googleusercontent.com/Tyj4Hw0Mxoc8cRrpHhRLHhuWPP5IrhTGKjpl8PLHZhdhnvXkVBfzbBFZ9JcIccUn_bYC\",\n \"developer\": {\n \"devId\": \"Mini tool\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Mini%20tool\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"EasyBooster focuses on solving the problem that the mobile phone runs too slowly, so that your mobile phone can be unblocked from now on.

Junk Clean:
Focus on optimizing your storage space and clearing your phone of junk files.

Battery Saver:
The power saving mode can solve the problem of excessive power consumption of Android phones and help you to end the ineffective programs that consume power. Perfect for extending the battery life of your phone.

CPU cooler:
CPU Cooler can effectively reduce the temperature of the mobile phone CPU, so that your mobile phone no longer heats up, no longer freezes, and runs more smoothly. Regular use of the cooling function can also extend the life of the battery.\",\n \"scoreText\": \"4.0\",\n \"score\": 4.0277777,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.gleam.betty.easybooster\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.gleam.betty.easybooster/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.gleam.betty.easybooster/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.gleam.betty.easybooster/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.gleam.betty.easybooster/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ZOOM Cloud Meetings\",\n \"appId\": \"us.zoom.videomeetings\",\n \"url\": \"http://gplayapi.srik.me/api/apps/us.zoom.videomeetings\",\n \"icon\": \"https://play-lh.googleusercontent.com/JgU6AIREDMsGLmrFSJ8OwLb-JJVw_jwqdwEZWUHemAj0V5Dl7i7GOpmranv2GsCKobM\",\n \"developer\": {\n \"devId\": \"zoom.us\",\n \"url\": \"http://gplayapi.srik.me/api/developers/zoom.us\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Stay connected wherever you go – start or join a secure meeting with flawless video and audio, instant screen sharing, and cross-platform instant messaging - for free!

Zoom is #1 in customer satisfaction and the best unified communication experience on mobile.

It's super easy! Install the free Zoom app, click on "New Meeting," and invite up to 100 people to join you on video! Connect with anyone on Android based phones and tablets, other mobile devices, Windows, Mac, Zoom Rooms, H.323/SIP room systems, and telephones.

VIDEO MEETINGS FROM ANYWHERE
-Best video meeting quality
-Easily join a meeting or start an instant meeting with phone, email, or company contacts

COLLABORATE ON-THE-GO
-Best Android device content and mobile screen sharing quality
-Co-annotate over shared content
-Real-time whiteboard collaboration on Android tablets

UNLIMITED MESSAGING (WITH PHOTOS, FILES, AND MORE)
-Reach people instantly to easily send messages, files, images, links, and gifs
-Quickly respond or react to threaded conversations with emojis
-Create or join public and private chat channels

MAKE, RECEIVE, AND MANAGE PHONE CALLS
-Effortlessly make or receive calls with your business number
-Get voicemail and call recording with transcripts
-Use call delegation to make/receive calls on behalf of others
-Setup auto-receptionists to autonomously answer and route calls

AND MORE….
-Safe driving mode while on the road
-Use your Android app to start your meeting or for direct share in Zoom Rooms
-Join Zoom Webinars
-Attend OnZoom events (US Beta only)
-Works over WiFi, 5G, 4G/LTE, and 3G networks

ZOOM LICENSE INFORMATION:
-Any free or paid license can be used with the app
-Zoom Phone is an add-on to paid Zoom licenses
-A paid Zoom subscription is required for certain product features

Follow us on social @zoom!

Have a question? Contact us at http://support.zoom.us.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3014355,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=us.zoom.videomeetings\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/us.zoom.videomeetings/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/us.zoom.videomeetings/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/us.zoom.videomeetings/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/us.zoom.videomeetings/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Spotify: Music and Podcasts\",\n \"appId\": \"com.spotify.music\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.spotify.music\",\n \"icon\": \"https://play-lh.googleusercontent.com/UrY7BAZ-XfXGpfkeWg0zCCeo-7ras4DCoRalC_WXXWTK9q5b0Iw7B0YQMsVxZaNB7DM\",\n \"developer\": {\n \"devId\": \"Spotify AB\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Spotify%20AB\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With Spotify, you can listen to music and play millions of songs and podcasts for free. Stream music and podcasts you love and find music - or your next favorite song - from all over the world.

• Discover new music, albums, playlists and podcasts
• Search for your favorite song, artist, or podcast
• Enjoy music playlists and an unique daily mix made just for you
• Make and share your own playlists
• Explore the top songs from different genres, places, and decades
• Find music playlists for any mood and activity
• Listen to music and more on your mobile, tablet, desktop, PlayStation, Chromecast, TV, Wear OS watch and speakers

Play podcasts and music for free on your mobile and tablet with Spotify. Download albums, playlists, or just that one song and listen to music offline, wherever you are.

With Spotify, you have access to a world of free music, curated playlists, artists, and podcasts you love. Discover new music, podcasts, top songs or listen to your favorite artists, albums. Create your own music playlists with the latest songs to suit your mood.

Spotify makes streaming music easy with curated playlists and thousands of podcasts you can’t find anywhere else. Find music from new artists, stream your favorite album or playlist and listen to music you love for free.

• Free music and podcasts made easy – Listen to a playlist, album, or the top songs from any genre on shuffle mode.

Listen to music and podcasts on your tablet for free
• Play any song, artist, podcast, album, or playlist and enjoy a personalised music experience with a daily mix to match your taste.

Spotify Premium features
• Listen to an album, playlist, or podcast without ad breaks. With Spotify you can play music by any artist, at any time on any device--mobile, tablet, or your computer.
• Download to listen to music offline, wherever you are.
• Jump back in and listen to your top songs.
• Enjoy amazing sound quality on personalized music and podcasts.
• Discover new music, a daily mix or curated playlists that suit your mood. With Spotify you’ll get a personalized music experience like no other.
• No commitment - cancel any time you like.

Want to discover new music?
Find music that you’ll love today! Explore our curated music playlists, top songs and albums, or get personalized music recommendations with your daily mix.

Love Spotify?
Like us on Facebook: http://www.facebook.com/spotify
Follow us on Twitter: http://twitter.com/spotify

Please note: This app features Nielsen’s audience measurement software which will allow you to contribute to market research, such as Nielsen’s Audio Measurement. If you don't want to participate, you can opt-out within the app settings. To learn more about our digital audience measurement products and your choices in regard to them, please visit http://www.nielsen.com/digitalprivacy for more information.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3721786,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.spotify.music\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.spotify.music/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.spotify.music/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.spotify.music/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.spotify.music/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"TextNow: Call + Text Unlimited\",\n \"appId\": \"com.enflick.android.TextNow\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.enflick.android.TextNow\",\n \"icon\": \"https://play-lh.googleusercontent.com/ZU2MdVVbKvKLuFlTCuJ0b6-HiyyZmqPcpnwA6iDJCa6CAR32U0xfcVWef1nRf9X4J6A\",\n \"developer\": {\n \"devId\": \"TextNow, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/TextNow%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Join the more than 100 million people who phone smarter, with free texting, free calling, and free nationwide coverage with TextNow!

Communication should be without limits. Stay connected to what matters most with unlimited texting and calling, without the bill. Download the TextNow app, pick a free phone number (or bring your own) with the US area code of your choice, and start calling and texting now.

Nationwide Talk & Text, Without the Phone Bill
Cut the cord from your mobile phone company! Get a TextNow SIM card to access the same nationwide network with the same coverage as the big carriers, without the bill! Now there’s a smarter way to phone, with our ad-supported, zero-cost Nationwide Talk & Text app, so you can talk and text freely from anywhere in the US.

Affordable High-Speed Data
Your phone needs can change, and TextNow has you covered. With low-cost data add-ons, you can get mobile data and go anywhere. No commitments, only pay for the data you need when you need it.

Add a Second Number to Your Phone
Need more privacy? Want to keep your personal life separate from your business? Use the TextNow calling and messaging app as free local 2nd phone number. Boost your status with your friends or mint some new ones by using a second phone number from TextNow on your favorite social apps. It’s another private phone line on your device with free calls and free text messages.

Cheap International Calling
Are your friends and family overseas? TextNow offers low-cost international calls to over 230 countries. Stay connected longer with rates starting at less than $0.01 per minute.

WiFi or Mobile Calling? Why Not Both!
Does your mobile signal need a boost? No problem! TextNow lets you use your real phone number over WiFi. Or get the same great service on our nationwide mobile network with a TextNow SIM card.

Why TextNow?


Is TextNow free?
There are no yearly or monthly fees. Our service is ad-supported, with no cost to the user. If you don't like ads, you can purchase a subscription to remove them. Users can access our free wireless network with a one-time purchase of a TextNow SIM card, allowing users to call and text without the need for WiFi.

Features Standard for All Users


So, what are you waiting for? Download the app and get phone service without the bill with unlimited texts, voice calls and much, much more over both WiFi and wireless.

Follow us on Social for the latest news and offers:
TikTok - @textnow
Facebook - @textnow
Instagram - @textnow
Twitter - @TextNow

Privacy policy: https://www.textnow.com/privacy
Terms of use: https://www.textnow.com/terms\",\n \"scoreText\": \"4.4\",\n \"score\": 4.40978,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.enflick.android.TextNow\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.enflick.android.TextNow/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.enflick.android.TextNow/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.enflick.android.TextNow/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.enflick.android.TextNow/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Pluto TV - Live TV and Movies\",\n \"appId\": \"tv.pluto.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/tv.pluto.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/gIiZK9ZUU7tt8N08ozfe8OPBnW-KPREAHdbN1WDvqqSscVdAQuuP2_i2c1Gm2zHJ_S9x\",\n \"developer\": {\n \"devId\": \"Pluto, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Pluto%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The leading free streaming TV and movie service is available to you! Watch 100s of live TV channels and 1000s of movies and TV shows, all streaming free. Pluto TV also offers over 45 channels in Spanish, including native language and dubbed movies, reality TV, telenovelas, crime, sports and more. Pluto TV is 100% free and legal: no credit cards, contracts, or bills.

Pluto TV has the best in hit movies, cult classics, and blockbuster films. You’ll find something for everyone on Pluto TV, with hits like “The Hitman's Bodyguard,” “Hitch,” and “The Mask of Zorro,” cult classics like “The Italian Job,” “Ghost Rider,” and more. Looking for rom-coms? We’ve got “Titanic,” “Bridget Jones' Diary,” and “How to Lose a Guy in 10 Days.” Fiending for frights? Horror movies such as “Insidious” and enough “Friday the 13th" movies guaranteed to keep you up all night. ¿Le gustan películas? Ve “Bewoulf” y “Labios Rojos” en español.

Choose from our library of 1000s of on-demand movies and TV shows or from our 27 exclusive movie channels including:

The biggest hit movies
-Full seasons of your favorite shows
-Chilling true crime and drama series
-Hilarious comedy shows and stand-up specials
-Spanish-language movies & shows
-The wildest reality TV shows
-The latest breaking news
-Live sports, classic games, news and analysis

Your favorite shows are streaming 24/7 on Pluto TV. Catch full seasons of CSI, Star Trek: The Next Generation, RuPaul’s Drag Race, and Narcos on their own channels, and watch classics like Survivor, Beavis & Butthead, Unsolved Mysteries and more whenever you want.

Check back often so you don’t miss the great new movies and shows we’re adding to our on-demand library every day from top content providers like Paramount, CBS, MGM, Sony and Lionsgate! Binge on 1000s of movies and TV shows any time you want!

Download Pluto TV to start watching free TV today.

Privacy Policy: https://privacy.paramount.com/en/policy
Cookie Policy: https://privacy.paramount.com/en/cookies
Do Not Sell My Personal Information: https://www.viacomprivacy.com/vdns.html
Terms of Use: corporate.pluto.tv/terms-of-use/\",\n \"scoreText\": \"4.3\",\n \"score\": 4.318654,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=tv.pluto.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/tv.pluto.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/tv.pluto.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/tv.pluto.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/tv.pluto.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Fetch Rewards: Earn Gift Cards\",\n \"appId\": \"com.fetchrewards.fetchrewards.hop\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.fetchrewards.fetchrewards.hop\",\n \"icon\": \"https://play-lh.googleusercontent.com/4JGiw1ZAdkLrWEy5xZPc1yRuY1MgI0Se4DlhXpTgeybUQIfFXD8BmxiqhE1FhSZ8FUSj\",\n \"developer\": {\n \"devId\": \"Fetch Rewards\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Fetch%20Rewards\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"■ America’s Favorite Rewards App - data.ai
■ #1 Best Cash Back App for 2022 - Motley Fool
■ Must-Have Shopping App - Google Play Store

Fetch turns your receipts into free cash and gift cards from your favorite retailers. Scan receipts or e-receipts from any store or restaurant, then redeem your points to earn gift cards, make charitable donations, enter sweepstakes, and more!

There’s no coupon clipping or chasing down deals. With our cash back app, you’ll earn rewards and unlock savings on every purchase you make.

■ How Fetch Works
1. Make purchases anywhere - grocery stores, retailers, restaurants, gas stations, and more
2. Snap pics of your receipts to earn points
3. Redeem your points for gift cards, cash, and more
4. Earn extra points with featured brands, Special Offers, and friend referrals

■ Seriously, Every Receipt Counts
Scan receipts for money. If it’s a receipt, it’ll earn you points. You’ll get 25+ points for every receipt you snap! Get receipt rewards points at any grocery store, hardware store, restaurant, or retailer. Gas stations, liquor stores, and drug stores count, too.

More points = more rewards = more cash back. Everyday savings, here we come! Redeem rewards for hundreds of popular stores and brands, including:

~ CVS
~ Chipotle
~ Sam’s Club
~ Home Depot
~ Starbucks

■ Online Purchases Also Earn Points For You

Earn gift cards online. Submit your eReceipts, earn points and save money every time you make purchases from popular online retailers like:

~ Amazon
~ Walmart
~ UberEats
~ Target
~ Best Buy
~ And dozens more!

■ Get Extra Points on 500+ Popular Brands
Fetch partners with tons of popular brands to help you earn more eRewards on your favorite stuff. You’ll earn points no matter what you buy, but you’ll get extra points when you buy from popular brands like Colgate, Ben & Jerry’s, Pepsi, and more!

■ Earn Points Fast, with Special Offers
Special Offers reward you with tons of points for buying specific items, shopping at certain stores, and eating at popular restaurants. We update your Special Offers daily, so there are always new ways to save on your favorites, discover new products and score more rewards.

■ Earn Free Gift Cards with Fetch
Easily redeem points for your favorite rewards. Earn Amazon gift cards, Visa gift cards, eBay gift cards, PSN gift cards, and more! Turn your receipts into cash, coffee, Uber rides, flights: whatever you’d like!

■ Get Your Favorites from the Google Play Store
Use points to get free Google Play Store gift cards that can be used to purchase movies, music, apps, and in-game currency like Robux, PokéCoins, and more!

■ Use Your Points for Good By Donating Them to a Charity
Want to use your points to help others in need? Redeem points for donations to a charity of your choice. Choose from organizations like the American Red Cross, Girls Who Code, NAACP, and dozens more.

■ Unlock More Savings with Fetch Clubs
With Fetch, you’ll have access to Clubs like Huggies Rewards+ and Pepsi Tasty Rewards. Clubs help you earn more points and give you access to exclusive content and giveaways. New, exciting clubs are right around the corner!

~ General Mills Good Rewards
Treat yourself to offers and content from your favorite General Mills brands

~ Huggies Rewards+
Earn extra rewards on every Huggies purchase, like diapers and baby wipes!

~ Pepsi Tasty Rewards
Unlock exclusive recipes, giveaways & more!

■ Earn a Ton of Points | Refer Friends, Enter Sweepstakes & More
You can earn thousands of points by referring friends to Fetch. You’ll get at least 2,000 points when someone signs up using your referral code, and snaps their first receipt.

Fetch sweepstakes, giveaways, and in-app experiences give you even more ways to earn points that you can use for free gift cards.

■ Connect with Friends & Family
Now, you can Fetch with all of your friends! Compete in our monthly Leaderboard challenges, keep up with your friends’ points activity, and more.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.594632,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.fetchrewards.fetchrewards.hop\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.fetchrewards.fetchrewards.hop/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.fetchrewards.fetchrewards.hop/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.fetchrewards.fetchrewards.hop/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.fetchrewards.fetchrewards.hop/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"CapCut - Video Editor\",\n \"appId\": \"com.lemon.lvoverseas\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.lemon.lvoverseas\",\n \"icon\": \"https://play-lh.googleusercontent.com/MO4jVMbqskWrBD7BDUiKkymLPDMlSFjnEE-JTCigWv6UcoENgAkSKr8bs0IvPs8Twv8\",\n \"developer\": {\n \"devId\": \"Bytedance Pte. Ltd.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Bytedance%20Pte.%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"CapCut is the official free Video Editor and Video Maker with Music for TikTok that is versatile and easy-to-use.

In addition to its basic features, such as video editing, text, stickers, filters, colors and music, CapCut offers free advanced features, including keyframe animation, smooth slow-motion effects, chroma key, Picture-in-Picture (PIP), and stabilization to help you capture and snip moments.

Create fancy videos with other unique features: trending styles, auto captions, text-to-speech, motion tracking, and background removal. Show your personality and go viral on TikTok, YouTube, Instagram, WhatsApp, and Facebook!

FEATURES

Basic video editing
• Trim and tighten clips and split or merge videos.
• Adjust video speed from 0.1x to 100x, and apply speed curves to clips.
• Animate video clips with incredible zoom in/out effects.
• Make interesting video clips for social media with the reverse/rewind function.
• Highlight the best moments for clips and vlogs with the freeze feature.
• Explore transition options with awesome effects on cut points between clips.

Advanced video editor
• Keyframe video animation is available for all settings.
• Edit videos to create smooth slow-motion with the optical flow feature and speed curve tool.
• Use the chroma key to remove specific colors from videos.
• Apply the Picture-in-Picture (PIP) feature to add video and photo layers above the clip and easily splice them.
• The stabilizing feature keeps video footage steady.

Special features
• Auto captions: automate speech recognition and subtitles in videos.
• Background removal: automatically removes people from videos free of charge.
• Trending styles: enjoy creative and constantly updated options like 3D zoom, auto velocity, and more.

Text & Stickers
• Add text to videos with different fonts and styles, find the best subtitle font with unique text templates. Subtitle font formats can be imported.
• Subtitles can be added to the timeline of video tracks and can be moved and adjusted in one step.

Trending Effects & Filters
• Match video content with diverse filters that are updated weekly with the latest trends.
• Edit videos with hundreds of trending effects, including Glitch, Blur, 3D, etc.
• Add movie-style video filters or adjust the color by changing video brightness, contrast, etc.

Music & Sound Effects
• Add music to videos with millions of music clips and sound effects.
• Sign in to sync your favorite TikTok music.
• Extract audio, clips, and recordings from videos.

Easy to Share
• Custom video export resolution, HD video editor supports 4K 60fps exports and smart HDR.
• Adjust the format and share your creativity on TikTok and other social media platforms.

CapCut is a free all-in-one video editor and video maker app with everything you need to create stunning, high-quality videos. Beginners can get started with CapCut in a matter of seconds, while advanced users can enjoy all the functions they need to edit videos. Express your individuality with exclusive video editor and video maker functions. After your music video is ready, you can share it across social media with one click, accruing everyone's likes, comments and attention.

Any questions about CapCut (Video Maker with Music & Video Editing app)? Please contact us at capcut.support@bytedance.com.
Facebook: CapCut
Instagram: CapCut
YouTube: CapCut
TikTok: CapCut\",\n \"scoreText\": \"4.2\",\n \"score\": 4.230577,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.lemon.lvoverseas\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.lemon.lvoverseas/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.lemon.lvoverseas/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.lemon.lvoverseas/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.lemon.lvoverseas/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Peacock TV: Stream TV & Movies\",\n \"appId\": \"com.peacocktv.peacockandroid\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.peacocktv.peacockandroid\",\n \"icon\": \"https://play-lh.googleusercontent.com/IdHOrlnq_yC9w5NGHollnGnunojuEW1_-8g32VaETN3kkXkTOTi001XN2TBykRC3Tg\",\n \"developer\": {\n \"devId\": \"Peacock TV LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Peacock%20TV%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Download Peacock, the streaming service from NBCUniversal. Peacock has all your favorites, all in one place.

With Peacock, stream new movies and thousands of TV show episodes — including Parks & Rec, Yellowstone, Modern Family, and every episode of The Office — plus exclusive Originals and current series from Bravo and NBC.

Stay up to date on live news and stream all your favorite live sports including WWE, NFL, MLB, Premier League, golf, and more.

Here’s what you get with PEACOCK:
•\\tInstant access to hundreds of movies from major Hollywood studios such as Universal, DreamWorks Animation, and Focus Features.
•\\tThousands of hours of TV series, including full seasons of buzzworthy faves, bingeworthy classics, and current-season NBC hits.
•\\tPeacock Channels – playing your favorite entertainment, 24-7. Scroll less and watch more with the SNL Vault, Fallon Tonight, NBC Sports on Peacock, WWE, NBC News NOW, TODAY All Day, True Crime, and Dateline 24/7.
•\\tA daily dose of live news with the best of NBC News, CNBC, MSNBC, and E! News – plus Late Night, SNL and more.
•\\tHit Spanish-language TV shows and news from Telemundo.
•\\tUp to 6 personal profiles to optimize your viewing experience.

Upgrade to PEACOCK PREMIUM ($4.99/month) for an all-access pass to everything Peacock has to offer – watch every movie, episode, and season, plus stream your favorite live sports and events. More to watch. More to love.

•\\tStream everything— including new movies, full seasons of exclusive premium TV like Yellowstone, and your NBCUniversal faves from Bravo, SYFY, USA, E!, and Oxygen.
•\\tEvery WWE Premium Live Event —including WrestleMania—plus series, docs, and the WWE Vault.
•\\tExclusive Peacock Originals, including Bel-Air, Below Deck Down Under, The Resort, Girls5eva, Dr. Death, Vampire Academy, Love Island, The Real Housewives Ultimate Girls Trip, and more.
•\\tMore live sports, including exclusive Premier League soccer matches, football, golf, MLB Sunday Leadoff, and IndyCar.
•\\tThe streaming home for your Bravo faves, including The Real Housewives of Beverly Hills, Top Chef, and more.
•\\tCurrent-season NBC hits like the One Chicago franchise, The Voice, Law & Order: SVU, Young Rock, and Grand Crew.
•\\tUnlimited access to the entire library of Kids and Family entertainment.

With PEACOCK PREMIUM PLUS ($9.99/month), get everything included in Peacock Premium as well as:
•\\tStream Peacock ad-free*.
•\\tDownload available titles to your mobile device and watch later, anywhere.
*Due to streaming rights, Peacock Channels, events, and a few shows & movies will still contain ads.

Content availability may vary over time.

Please note: Use of the PeacockTV app is limited to the United States and its territories. Video is accessible via 3G, 4G, 5G, LTE and Wi-Fi networks. Data charges may apply.

If applicable, subscription charges begin after any promotional period of Peacock Premium/Peacock Premium Plus concludes. You will be charged on a recurring basis as described above, minus applied offers plus applicable taxes. Your subscription will auto-renew until you cancel. Cancel at any time by visiting your account in the Peacock App. By subscribing, you agree to the preceding subscription terms and our Terms of Use and Privacy Policy below.
Upgrade at www.peacocktv.com
Terms of Use: www.peacocktv.com/terms
Privacy Policy: www.peacocktv.com/privacy
Customer Help: www.peacocktv.com/help
Do Not Sell My Personal Information: www.peacocktv.com/do-not-sell-my-info
CA Notice: https://www.peacocktv.com/ca-notice

This app features Nielsen proprietary measurement software, which will allow you to contribute to market research, like Nielsen’s TV Ratings. To learn more about our digital measurement products and your choices in regard to them, please visit http://www.nielsen.com/digitalprivacy for more information.\",\n \"scoreText\": \"3.8\",\n \"score\": 3.8182902,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.peacocktv.peacockandroid\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.peacocktv.peacockandroid/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.peacocktv.peacockandroid/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.peacocktv.peacockandroid/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.peacocktv.peacockandroid/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"PayPal - Send, Shop, Manage\",\n \"appId\": \"com.paypal.android.p2pmobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.paypal.android.p2pmobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/bDCkDV64ZPT38q44KBEWgicFt2gDHdYPgCHbA3knlieeYpNqbliEqBI90Wr6Tu8YOw\",\n \"developer\": {\n \"devId\": \"PayPal Mobile\",\n \"url\": \"http://gplayapi.srik.me/api/developers/PayPal%20Mobile\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Now there’s more ways to PayPal— buy, sell, send, receive and explore all in one place. It’s a simple and secure way to get paid back for last night’s takeout, send money to friends who have an account with PayPal, buy and checkout with crypto, manage your bills and more. Plus, we’ve added some new features we think you’ll love.

*NEW* FIND DEALS RIGHT IN THE APP
• Get exclusive deals curated just for you right in the PayPal app.
• Earn cash back when you shop in the app.
• Multiply your rewards. Earn them with merchants, your credit cards, and with PayPal.

All rewards programs are subject to applicable terms.

PAY IN 4 WITH PAYPAL
• Buy now and pay later by splitting your purchase into 4 interest-free payments at millions of online retailers with no late fees.
• Just choose PayPal at checkout and select ‘Pay Later’, where you’ll see ‘Pay in 4’ as a way to pay.
• Make the down payment today and pay the rest in 3 payments—one every two weeks.
• Payments are easy to manage through the PayPal app and on PayPal.com.

Loans to California residents are made or arranged pursuant to a California Finance Lenders Law License. PayPal, Inc. is a Georgia Installment Lender Licensee, NMLS #910457. Learn more at paypal.com/payin4

CRYPTOCURRENCY
• Buy, sell and hold Bitcoin, Ethereum, Bitcoin Cash and Litecoin in the PayPal app.
• Now you can check out with crypto when you pay with PayPal at millions of online merchants.

PayPal Balance account required. Terms apply. Only available in the US and limited in certain states. Buying and selling cryptocurrency is subject to a number of risks and may result in significant losses. You have to report any gains or losses on crypto sales, including when you check out with crypto, on your taxes.

SEND AND REQUEST MONEY FOR FREE
• When funded by a bank account or with your PayPal balance, it’s free and secure to send money or ask for it back from friends and family in the US.
• Just type a name, email or phone number and PayPal will find the right person for you if they have an account.
• Request money quickly and securely from friends or family and personalize your payments with animations, stickers, emojis and more.

GET SPENDING NOTIFICATIONS
• Never miss a thing – stay on top of payments and sending or receiving money, with push notifications.
• Check out all your latest PayPal activity, by just logging in.

GENEROSITY NETWORK
• Create, share, and donate to fundraisers with millions of other PayPal users.
• Support a cause you care about by donating to charity right from the app. You can even set your favorite charity and donate at checkout.

Personal or business fundraisers on the Generosity Network may raise up to 20,000.00 USD and run for up to 30 days. You may run 1 Generosity Network fundraiser at a time. You may run multiple fundraisers to benefit charity at the same time, and there is no limit for amount raised.

ACCESS YOUR PAYPAL BALANCE INSTANTLY WITH THE PAYPAL CASH CARD
• Easily transfer funds from your bank balance to your PayPal balance.
• Shop in-store, online or everywhere Mastercard® is accepted and withdraw cash at ATMs worldwide.
• PayPal Balance account required to get the card.

TRUST PAYPAL SECURE TRANSACTIONS
• You can be sure PayPal will help keep your financial information secure, with commercially available encryption and advanced fraud protection. All that plus fraud monitoring transactions, 24/7.

A TOUCH-FREE WAY TO PAY OR BE PAID
• Pay touch-free by scanning a QR code. All you need to do is scan a seller’s QR code when you pay.
• Whatever you’re selling, now you can quickly set up a QR code and get paid in person, all with just your phone.


Not all features may be available in your market.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.386617,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.paypal.android.p2pmobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.paypal.android.p2pmobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.paypal.android.p2pmobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.paypal.android.p2pmobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.paypal.android.p2pmobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Walmart Shopping & Grocery\",\n \"appId\": \"com.walmart.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.walmart.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/nckECUuaqv8rJllZ3CIvOJxxBnqe0TISPy_X-9B3U8nM4rst1Nr0eixKZlXW5fKyiTsf\",\n \"developer\": {\n \"devId\": \"Walmart\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Walmart\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Save money. Live better.

The Walmart app is the easiest way to shop for everything on your list, including fresh groceries, household essentials, the latest tech and a lot more. Plus, our convenient pickup, delivery and shipping options make it a breeze to get your order exactly when you want it, whether you’re shopping in-store or on the go.

Convenient ways to get your items:

Pickup 🚗
Swing by the store to collect your order curbside—we’ll even load your car.

Delivery 🚚
From a local Walmart store straight to your door. For those need-it-now moments, choose Express delivery to get your order in as little as one hour.*
*Restrictions and fees apply.

Shipping 📦
Fast two-day shipping, dropped off by FedEx or UPS. Eligible orders over $35 ship free!

Even more time-saving features you’ll love:

Personalized shopping suggestions 🛒
Quickly and easily fill your cart with frequently purchased items.

Easy barcode scanning 🤳
Check prices and build your shopping lists with the item barcode scanner.

Stress-free store pickup 🚗
Check in with the Walmart app when you’re on your way and we’ll bring your order out to you when it’s ready.

Real-time order tracking 📱
Get live order updates sent straight to your phone and easily track order status any time from the homepage.

Walmart Pay 💳
Check out using all your payment methods. Just tap "Pay” and we’ll recommend how to split your total to make the most of your cards and balances.

Store maps 📍
Find all your favorite items quickly with store maps and save time shopping when you visit a Walmart store.

Pharmacy 💊
Refill, transfer, manage and pick up your family’s prescriptions. Plus, schedule vaccinations, locate testing sites and more.

Meet Walmart+
The Walmart app is the easiest way to get the most out of your membership and save more time and money. App-exclusive features for Walmart+ include:

Scan & go 💨
Use your phone to shop in-store and check out contact-free.

Member prices on fuel ⛽️
Get up to 10¢ off every gallon at 14,000+ locations nationwide**—including Exxon and Mobil stations!
**Fuel discount varies by location and station, subject to change.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.67851,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.walmart.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.walmart.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.walmart.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.walmart.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.walmart.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"My Bath & Body Works\",\n \"appId\": \"com.bathandbody.bbw\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.bathandbody.bbw\",\n \"icon\": \"https://play-lh.googleusercontent.com/wD02w_sFYhJy_4J_OIKUwhI399zMPJg52dbOoZqWGMvWAYJsk9TVAq_bbZAq_oawAg\",\n \"developer\": {\n \"devId\": \"Bath and Body Works Mobile\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Bath%20and%20Body%20Works%20Mobile\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Earn FREE product, shop in a snap and more—just consider the app your personal shopper (that dishes about all the best deals first).
Download, join and these perks are all yours:
•\\tEarn points toward your choice of FREE full-size products (up to $16.50)*
•\\tShop straight from the app
•\\tSee offers in your Wallet
•\\tCheck your points anytime, anywhere
•\\tBe the FIRST to know about big deals, new launches and more

Oh, and we’ll set you up with $10 off $30 just for joining! (Give us up to 72 hours to add this welcome offer to your Wallet.)*
*Full terms and conditions in the app.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6951456,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bathandbody.bbw\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.bathandbody.bbw/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.bathandbody.bbw/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.bathandbody.bbw/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.bathandbody.bbw/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Amazon Prime Video\",\n \"appId\": \"com.amazon.avod.thirdpartyclient\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.amazon.avod.thirdpartyclient\",\n \"icon\": \"https://play-lh.googleusercontent.com/VojafVZNddI6JvdDGWFrRmxc-prrcInL2AuBymsqGoeXjT4f9sv7KnetB-v3iLxk_Koi\",\n \"developer\": {\n \"devId\": \"Amazon Mobile LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Amazon%20Mobile%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Watch movies, TV, and sports, as well as recommendations just for you. Prime Video delivers exclusive Amazon Originals like The Boys, The Marvelous Mrs. Maisel, and Tom Clancy’s Jack Ryan, along with International Originals like Last One Laughing and Mirzapur.

App features:
• Download videos to watch offline.
• Follow your favorite actors and directors to get notifications for videos featuring them as they become available on Prime Video (US only).
• Cast from your phone or tablet to the big screen with Chromecast or Fire TV.
• Profiles create personalized entertainment experiences.
• Go behind the scenes of movies and TV shows with exclusive X-Ray access, powered by IMDb (availability varies by market).
• Create or join a watch party to chat while watching movies and TV with others.
• Resume watching videos across devices.

For our Terms of Use and usage rules, see amazon.com/videoterms. Amazon, the Amazon logo, and Prime Video are trademarks of Amazon.com, Inc. or its affiliates.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.286149,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.amazon.avod.thirdpartyclient\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.amazon.avod.thirdpartyclient/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.amazon.avod.thirdpartyclient/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.amazon.avod.thirdpartyclient/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.amazon.avod.thirdpartyclient/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"QR & Barcode Scanner\",\n \"appId\": \"com.gamma.scan\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.gamma.scan\",\n \"icon\": \"https://play-lh.googleusercontent.com/nJcgTrETflv8liaA-3zrv7po7NyfKDMpMswbazxx6oWGnNAzT4D1mPniyX0nOrE-YnaV\",\n \"developer\": {\n \"devId\": \"Gamma Play\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Gamma%20Play\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"QR & Barcode Scanner app is the fastest QR code scanner / bar code scanner out there. QR & Barcode Scanner is an essential QR reader for every Android device.

QR & Barcode Scanner / QR code reader is extremely easy to use; with quick scan built in simply point QR code scanner free app to QR or barcode you want to scan and QR scanner will automatically start scanning and QR scan it. No need to press any buttons, take photos or adjust zoom as barcode reader works automatically.

QR & Barcode Scanner can scan and read all QR codes / barcode types including text, url, ISBN, product, contact, calendar, email, location, Wi-Fi and many more formats. After scan and automatic decoding user is provided with only the relevant options for individual QR or Barcode type and can take appropriate action. You can even use QR & Barcode Scanner to scan coupons / coupon codes to receive discounts and save some money.

QR code scanner, barcode scanner app is also QR code generator in your pocket. Using QR generator is extremely easy to use, simply enter the data you wish on QR code and click to generate QR codes.

QR codes are everywhere! Install qrcode reader app to scan QR code or to scan barcode on the go. Barcode & QR Scanner app is the only free scanner app you will ever need. Turn on the flashlight for scanning in the dark or use pinch to zoom to scan QRs far away.

With barcode reader app you can also scan product barcodes. Scan with bar code reader in shops and compare prices with online prices to save money. QR & Barcode Scanner app is the only free QR code reader / barcode scanner you will ever need.

Other functionality of QR code reader / QR code scanner: Create QR, Scan QR from image, Scan QR from Gallery, Share your contact info via QR, share images to scan from other apps, generate QR codes from clipboard content, change color, theme of the app, use dark mode, use Batch scan mode to scan multiple QR codes at once, export as .csv .txt, import .csv, add to Favorities, easy share...\",\n \"scoreText\": \"4.6\",\n \"score\": 4.563309,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.gamma.scan\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.gamma.scan/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.gamma.scan/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.gamma.scan/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.gamma.scan/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Venmo\",\n \"appId\": \"com.venmo\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.venmo\",\n \"icon\": \"https://play-lh.googleusercontent.com/YAKMX5YFcuE8_NogkbM7gkqrhBY6CUefbpULAVnNZLSitbo9S3Dw2FIYNqhW0d5G94Y\",\n \"developer\": {\n \"devId\": \"PayPal, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/PayPal%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Venmo is the fast, safe, social way to pay and get paid. Join over 83 million people who use the Venmo app today.

SEND AND RECEIVE MONEY
Pay and get paid for anything from your share of rent to a gift. Add a note to each payment to share and connect with friends.

SHOP WITH THE VENMO DEBIT CARD
Get a debit card that gets YOU. Earn automatic cashback when you spend with Venmo Debit Card at some of your favorite merchants.¹ No monthly fee, no minimum balance.²

GET REWARDED WITH THE VENMO CREDIT CARD
Automatically earn 3% cash back on your eligible top spend category, 2% on the next, and 1% on the rest.³

BUY CRYPTO WITH AS LITTLE AS $1
Buy, hold, and sell cryptocurrency right on the Venmo app. New to crypto? Learn more with in-app resources. Crypto is volatile, so it can rise and fall in value quickly. Be sure to take it at a pace you're comfortable with.⁴

DO BUSINESS ON VENMO
Create a business profile for your side gig, small business, or anything in between—all under your same Venmo account.

PAY IN STORES
Use your Venmo QR code to pay touch-free at stores like CVS. Just scan, pay, and go.

PAY IN APPS & ONLINE
Check out with Venmo on some of your favorite apps, like Uber Eats, StockX, Grubhub, and Zola.

MANAGE YOUR MONEY
Get your Venmo money in the bank within minutes using Instant Transfer⁵. Want your paycheck up to two days early⁶ ? Try Direct Deposit on Venmo.



¹DOSH offer terms apply.\\u202f Check app for availability.\\u202f

²The Venmo Mastercard is issued by The Bancorp Bank pursuant to license by Mastercard International Incorporated. Mastercard is a registered trademark, and the circles design is a trademark of Mastercard International Incorporated.

³See Rewards Program Terms. For more information on the Venmo Credit Card go here: https://venmo.com/about/creditcard . The Venmo Visa Credit Card is issued by Synchrony Bank pursuant to a license from Visa USA Inc. VISA is a registered trademark of Visa International Service Association and used under license.

⁴Terms apply and available here: https://venmo.com/legal/crypto-terms . Only available in the US and limited in certain states. Buying and selling cryptocurrency is subject to a number of risk and may result in significant losses. Venmo does not make any recommendation regarding buying or selling cryptocurrency. Consider seeking advice from your financial or tax adviser.

⁵Transfer speed depends on your bank and could take up to 30 minutes. Transfers are reviewed, which may result in delays or funds being frozen or removed from your Venmo account.

⁶ Subject to bank/employer practices. Terms apply and available here: https://help.venmo.com/hc/en-us/articles/360037185594\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1671495,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.venmo\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.venmo/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.venmo/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.venmo/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.venmo/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Discord: Talk, Chat & Hang Out\",\n \"appId\": \"com.discord\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.discord\",\n \"icon\": \"https://play-lh.googleusercontent.com/0oO5sAneb9lJP6l8c6DH4aj6f85qNpplQVHmPmbbBxAukDnlO7DarDW0b-kEIHa8SQ\",\n \"developer\": {\n \"devId\": \"Discord Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Discord%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Discord is where you can make a home for your communities and friends. Where you can stay close and have fun over text, voice, and video chat. Whether you’re part of a school club, a gaming group, a worldwide art community, or just a handful of friends who want to spend time together, Discord makes it easy to talk every day, and hang out more often.

CREATE AN INVITE-ONLY PLACE
• Discord servers are organized into topic-based channels where you can collaborate, share, have meetings, or just talk to friends about your day without clogging up a group chat.
• Send a message directly to a friend or call them up with our voice chat feature
• Voice channels make hanging out easy. Got a free moment? Grab a seat in a voice channel so friends can see you’re around and pop in to talk without having to call. You can even watch videos together!
• Reliable tech for staying close with friends. Low-latency voice and video chat feels like you’re meeting in the same room.
• Easily talk with friends while gaming and steam roll the competition.
• Be a meme messenger with easy image sharing

STAY CLOSE WITH TEXT, VIDEO, AND VOICE CHAT
• Wave hello over video, watch friends stream their games, share stories over voice calls, or gather up and have a drawing session with screen share.
• Snap a photo and turn it into your own custom emojis and share them with friends.
• Share anything from funny videos and stories to your latest group photos, and pin your favorites to remember those moments later.
• Hang out in group channels or talk privately with direct messages
• Zoom through convos with friends using topic-specific channels!

FOR A FEW OR A FANDOM
• Custom moderation tools and permission levels can group up your friends or teams, organize meetings for your local book club, or bring together music fans from around the world.
• Create moderators, give special members access to private channels, and much more.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.153319,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.discord\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.discord/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.discord/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.discord/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.discord/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"SHEIN-Fashion Shopping Online\",\n \"appId\": \"com.zzkko\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.zzkko\",\n \"icon\": \"https://play-lh.googleusercontent.com/99kIOo2NkDRAwBGQRfcq8-RP9x4PRKSxXlhiK519nxKF5ikbKhXdtgUrRI3UaSPTSwo\",\n \"developer\": {\n \"devId\": \"Roadget Business PTE. LTD.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Roadget%20Business%20PTE.%20LTD.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Now introducing the SHEIN mobile app! Everything you love about our site, now at your fingertips. SHEIN is a fun, ultra-affordable online shopping platform featuring styles for women, men, kids, curve, plus over 20,000+ styles including dresses, tops, swimwear, shoes and accessories. Think of us as your one-stop destination for everything trendy! We'll keep you in the loop with push notifications, you can engage with other SHEIN lovers in real time and browse over 1000+ daily new arrivals, plus styling tips, livestreams, reviews and more to inspire you!

Perks:
- Get an extra 10% off on your first order
- Free shipping on orders over $49 & free returns
- Fun, easy shopping that's 100% secure
- Browse by New Arrivals, Trends, Category, Best Sellers and more
- Daily Flash Sales: Score up to 80% off countless styles
- Get first access to sale alerts and promotional discounts
- Now accepting PayPal and major Credit Cards
- Style now, pay later! Choose Afterpay to pay in 4 interest-free payments.
- 24/7 Customer Service and Live Chat available


Contact us:
URL: us.shein.com
Facebook: www.facebook.com/sheinus/
Instagram: www.instagram.com/shein_us/
Email: dispute@shein.com\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7243133,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.zzkko\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.zzkko/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.zzkko/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.zzkko/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.zzkko/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Roku - Official Remote Control\",\n \"appId\": \"com.roku.remote\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.roku.remote\",\n \"icon\": \"https://play-lh.googleusercontent.com/gh8XYB5Lqs0btp5QU7WM60dTXe8oXMCeIXHq6tGNe8ncL4wxjgLTyqPenv8MzlSWJfk\",\n \"developer\": {\n \"devId\": \"Roku Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Roku%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get to know the must-have streaming sidekick!


Use the free Roku® mobile app to:
• Control your Roku devices with a convenient remote
• Use your voice or keyboard to quickly search for entertainment
• Enjoy private listening with headphones
• Stream free movies, live TV, and more on the go with The Roku Channel
• Cast media files from your phone, like videos and photos, to your TV
• Add and launch channels on your Roku devices
• Enter text on your Roku device more easily with your mobile keyboard


You must connect your phone or tablet to the same wireless network as your Roku device to use certain features of the mobile app. Some features require a compatible Roku device and may require logging into your Roku account.


Feature availability:
• Voice search is available in English in the US, UK, and Canada. It’s also available in Spanish in Mexico and the US.
• The Roku Channel can be viewed in the mobile app in the US only.
• Some channels require payment, can change, and vary by country.


For more information and troubleshooting, go to http://support.roku.com
https://docs.roku.com/published/userprivacypolicy/en/us#userprivacypolicy-en_us-CCPA\",\n \"scoreText\": \"4.6\",\n \"score\": 4.580867,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.roku.remote\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.roku.remote/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.roku.remote/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.roku.remote/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.roku.remote/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Life360: Find Family & Friends\",\n \"appId\": \"com.life360.android.safetymapd\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.life360.android.safetymapd\",\n \"icon\": \"https://play-lh.googleusercontent.com/AxZFJIQK5sr8KXkko0jBH5SolEbpM_8W8q7h3EZNeTNWTeZi-G3kp2OTbrqo--X24H4\",\n \"developer\": {\n \"devId\": \"Life360\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Life360\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"We simplify safety so families can live fully. Every day more than 33 million members across 195 countries trust us to protect and connect their loved ones at home, on the road, and on the go.

From real-time location updates to keep everyone coordinated, to Crash Detection and 24/7 Roadside Assistance, Life360 is designed to free families from everyday worries. Our range of Driving Safety, Digital Safety, Location Safety, and Personal Safety features are there to keep our members safe every step of the way.

Explore Life360 for free
Download Life360 today and protect each family member with advanced driving, digital, and location safety features. Stay on top of everyone’s comings and goings with advanced Location Sharing, two days of Location History, and two Place Alerts. Plus, you’ll get free Crash Detection for the car, and Data Breach Alerts to keep your family’s information safe online.

When you choose a LIfe360 membership plan, your family has access to premium features including 24/7 Roadside Assistance, SOS alerts for anytime you find yourself in an uneasy situation, Travel Support, ID Theft Protection, and so much more.

Explore our different plans to find the one that fits your family’s size and life stage and try it for free for 7 days free. Whichever plan you choose, rest easy knowing that your features will cover each family member.
\\t\\t\\t

Life360 Platinum\\t\\t\\t\\t\\t
• 24/7 Roadside Assistance
• ID Theft Protection
• Disaster Response
• Medical Assistance
• All of Gold, and more…

Life360 Gold\\t\\t\\t\\t\\t\\t\\t
• 30 days of Location History
• Unlimited Place Alerts
• Individual Driver Reports
• Crash Detection + Dispatch
• All of Silver, and more…

Life360 Silver

• 5 Place Alerts to stay in step
• 7 days of Location History
• $100 in Stolen Phone Coverage
• Family Driving Summary

\\thttps://www.life360.com/privacy_policy
\\thttps://www.life360.com/terms_of_use

Disclaimers: Continued usage of location services while the app is in the background can excessively drain battery. With that in mind, our algorithms always keep battery usage to a minimum, even while you drive!

Members participating in a shared Circle may consent to allow access to their location to other members within that Circle. See more in our privacy policy!\",\n \"scoreText\": \"4.6\",\n \"score\": 4.598817,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.life360.android.safetymapd\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.life360.android.safetymapd/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.life360.android.safetymapd/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.life360.android.safetymapd/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.life360.android.safetymapd/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Hulu: Watch TV shows & movies\",\n \"appId\": \"com.hulu.plus\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.hulu.plus\",\n \"icon\": \"https://play-lh.googleusercontent.com/4whGAVjZGrrlNxzheKAfBXrxggtyAb4euWLeQI8fDfVfdnFEZjE0DZTJ8DKoh64pqcIa\",\n \"developer\": {\n \"devId\": \"Disney\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Disney\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Discover new TV shows and series, films, and more with Hulu. From award-winning shows and movies to your favorite sports, including the NFL and ESPN— it only takes a second to download to watch shows and new TV.

Watch films, stream new TV shows, and follow news (with Hulu + Live TV plan*) across all your devices. Browse episodes and watch shows via multiple plans, including Hulu, Hulu (No Ads), or Hulu + Live TV*.

Stream shows including Hulu Originals while keeping up with your favorite sports games this football season** - with NFL, CFB, and more.

*Regional restrictions, blackouts, and additional terms apply.
**Live TV Plan required. Regional restrictions, blackouts, and additional terms apply.

Plus, Hulu is now the home of new TV shows from FX Networks, with 40+ acclaimed series and FX originals.

Hulu plans provide the following:

• TV designed for you—Watch shows based on personalized recommendations
• Separate profiles—create up to 6 profiles so people can stream shows the way they want
• Track your favorites—save movies, series, or new TV shows, and continue where you left off
• Your favorite devices, any time— watch shows and browse episodes on your TV, smartphone, or tablet
• Premium networks — Discover and watch shows and films on SHOWTIME®, CINEMAX®, and STARZ® for an additional monthly subscription fee

Hulu

Our ad-supported plan lets you explore and browse episodes, watch movies and more in our huge streaming TV library. Stream thousands of episodes of the shows you love, from award-winning Hulu Originals like The Handmaid’s Tale, The Great, and Pam & Tommy to other popular shows like This is Us, Family Guy, and Atlanta.

Hulu (No Ads)

Discover the plan that gives you everything you get with the Hulu plan in an ad-free* experience. Plus, you can download thousands of titles to watch offline.**

*There are a few shows in our streaming library that are not included in Hulu (No Ads) due to streaming rights. Episodes of those shows will stream uninterrupted — there will just be a quick ad before and after each video.
**Select content available for download.

Hulu + Live TV*

Watch on-demand and live TV from 75+ channels, including live news, sports, and more. Plus, get unlimited access to the entire Hulu streaming library through our ad-supported plan. No cable required. No hidden fees when you want to watch shows. There are no equipment rentals fees, or installation appointments.

Whether you want to watch live news, or stream your favorite anime show, with Hulu you choose the plan that works for you.

*Regional restrictions, blackouts, and additional terms apply.

Download the Hulu app now to stream shows, watch movies, view sports on ESPN, and so much more!

Terms of Use: http://www.hulu.com/terms
Privacy Policy: http://www.hulu.com/privacy
Your California Privacy Rights: https://www.hulu.com/ca-privacy-rights
Do Not Sell My Personal Information: https://www.hulu.com/do-not-sell-my-info

This app features third party software, enabling third parties to calculate measurement statistics (e.g., Nielsen’s TV Ratings).

We may work with mobile advertising companies to help deliver online and in-app advertisements tailored to your interests based on your activities on our website and apps and on other, unaffiliated websites and apps. To learn more, visit www.aboutads.info. To opt-out of online interest-based advertising, visit www.aboutads.info/choices. To opt-out of cross-app advertising, download the App Choices app at www.aboutads.info/appchoices. Hulu is committed to complying with the DAA’s Self-Regulatory Principles for Online Behavioral Advertising and the DAA’s Application of Self-Regulatory Principles for the Mobile Environment.

Please note: This app features Nielsen’s proprietary measurement software which contributes to market research, like Nielsen’s TV Ratings. Please see http://priv-policy.imrworldwide.com/priv/mobile/us/en/optout.html for more information.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5384226,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hulu.plus\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.hulu.plus/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.hulu.plus/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.hulu.plus/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.hulu.plus/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Daily Diary:Journal with Lock\",\n \"appId\": \"com.dailymoods.diary\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.dailymoods.diary\",\n \"icon\": \"https://play-lh.googleusercontent.com/h-G2vY9It33OwyMs4JpOhACXrpIyk0HWmXuz4L4e68IistW9bxjfuZtsyVDcuMRcDc4\",\n \"developer\": {\n \"devId\": \"BIRKENDAHL LINUS\",\n \"url\": \"http://gplayapi.srik.me/api/developers/BIRKENDAHL%20LINUS\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Daily Diary is a locked diary APP, you can use it to record your daily life, work, and some private things. First of all it is completely free and very safe. You don't have to worry about others snooping on your privacy.

🤔Why choose Daily Diary?

💝Daily Diary has a lot of themes, different themes, different moods;

🎉Daily Diary has a very powerful diary editing function, which supports input of text, voice, pictures, videos, stickers, labels, etc.; you can also adjust different text formats; each diary can record the location, weather, and the mood of the day;

🔒Daily Diary supports locking, you can use the nine-square pattern to unlock or digital password lock, and support to use security questions to retrieve the password;

🌹Daily Diary counts the number of days you have written a diary, and rewards you with roses, so let’s work hard to record your life for roses;

👀Daily Diary has two diary display views, you can choose according to your usage habits;

📅Daily Diary supports viewing the diary according to the calendar to see which day you did not write a diary;

🔍Daily Diary has a powerful search function, supports searching by keywords, and also supports filtering diaries by type, such as: diary with pictures, diary with video, diary with audio, diary of a certain weather, diary of a certain type A diary of a location, a diary of a certain weather, a diary of a certain mood, etc.

💋Daily Diary is worth a try.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.53719,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dailymoods.diary\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.dailymoods.diary/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.dailymoods.diary/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.dailymoods.diary/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.dailymoods.diary/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"DoorDash - Food Delivery\",\n \"appId\": \"com.dd.doordash\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.dd.doordash\",\n \"icon\": \"https://play-lh.googleusercontent.com/Fvled-zLfL8ER0EBNIk-FnunJCcH2u_T6rdITclOFdU2jpEopdMstZOHP-PtuhP_5coZ\",\n \"developer\": {\n \"devId\": \"DoorDash\",\n \"url\": \"http://gplayapi.srik.me/api/developers/DoorDash\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Delivery anywhere you are. DoorDash offers the greatest selection of your favorite local and national restaurants, convenience stores, and grocery stores -- more than 310,000 menus across 4,000+ cities in the U.S.,Canada and Australia. Spend more time doing the things you love — we'll take care of the rest. First month, $0 delivery fees. Restrictions apply: https://drd.sh/tF5uns/

SIGN UP FOR DASHPASS
Get unlimited $0 delivery fees on the best of your neighborhood from restaurants, grocery stores, convenience stores, pet stores, and more. Plus, DashPass members get access to exclusive items and offers, 10% off eligible orders thanks to reduced service fees, and 5% back on eligible Pickup orders. Your first 30 days on DashPass are free, then $9.99/month. Cancel anytime.

RESTAURANTS, GROCERIES, AND MORE, JUST A FEW TAPS AWAY
Get on-demand delivery or pickup from restaurants, grocery stores, convenience stores, and more. Get what you need faster with quick and easy ordering.

NO-CONTACT DELIVERY
Deliveries are now left at your door by default and you have the choice to select “Hand it to me” if you prefer. If a no-contact delivery is requested, the Dasher will know you want them to leave your food in a safe place and alert you when it’s ready for pickup.

SCHEDULE DELIVERIES
Advance ordering allows you to get your food when it's most convenient for you.

REAL-TIME TRACKING
See when your order will arrive. From food quality to prep-times to traffic to weather, we've factored in all the elements that come between you and your food.

NO MINIMUMS
Order as little or as much as you want.

PAYMENT
Conveniently pay via Apple Pay or credit card.

ABOUT DOORDASH
DoorDash is a technology company that connects people with the best in their cities. We do this by empowering local businesses and in turn, generate new ways for people to earn, work and live. We started this by facilitating door-to-door delivery, but we see this as just the beginning of connecting people with possibility -- easy evenings, happier days, bigger savings accounts, wider nets and stronger communities.

Growing every day and currently serving over 4,000 cities across the United States, Puerto Rico, Canada, and Australia.

National partners include: Chick-fil-A, Burger King, Wendy’s, Chipotle, The Cheesecake Factory, Outback Steakhouse, Panera, Chili's, Subway, Dunkin’ Donuts, Jamba Juice, Panda Express, Moe's Southwest Grill, P.F. Chang’s, Denny’s, Buffalo Wild Wings, Papa John's, California Pizza Kitchen, Papa Murphy’s, Jack in the Box, Five Guys, Boston Market, Red Robin, TGI Friday’s, Red Lobster, Qdoba Mexican Eats, El Pollo Loco, Noodles & Company, Buca di Beppo, White Castle, SmashBurger, Schlotzsky’s, Albertsons, Meijer, HyVee, Southeastern Grocers, Grocery Outlet and many more.

Notice at Collection (California Residents): https://help.doordash.com/consumers/s/privacy-policy-us#section-11
Visit doordash.com to learn more.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5930367,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dd.doordash\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.dd.doordash/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.dd.doordash/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.dd.doordash/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.dd.doordash/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Expedia: Hotels, Flights & Car\",\n \"appId\": \"com.expedia.bookings\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.expedia.bookings\",\n \"icon\": \"https://play-lh.googleusercontent.com/tg70Viipx73KZE8vjUeGgFqQt9NMDoDVSeU2jQBRBxXvjrn4_9LrNfE22IvqMCm4Rgzn\",\n \"developer\": {\n \"devId\": \"Expedia\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Expedia\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Expedia app is your all-in-one travel companion, making it fast, easy, and convenient to find and save on all your amazing adventures ahead. Dreaming of a beach vacation in Florida? Or a romantic getaway in Paris? Whatever your reason to escape, you’ll find Member Prices to help you get there for a great price. Plus, earn double Expedia Rewards points for every eligible trip booking you make in the Expedia app.

Members get more through the app, including:
- Lower Member Prices of 10% or more off thousands of hotels*
- Double points on all eligible app bookings*
- In-trip extras as your status rises, like free hotel room upgrades and late checkout

Simply log in, or join for free to begin enjoying your Expedia member benefits.

Get inspired for your next trip by exploring over 500,000+ hotels worldwide, including boutique hotels, luxury hotels, airport hotels, hostels, B&Bs, vacation rentals, and resorts. Plus, enjoy free cancellation on most hotels. Because flexibility matters.*

From trip planning to booking, the Expedia app is designed to enhance your travel experience and keep you one step ahead with real-time travel alerts and the ability to view your trip details anytime, anywhere.

Search for hotels to fit your escape:
- Save 10% or more on thousands of hotels with Member Prices
- Sort by price, free cancellation, deals, or reviews to find a hotel you’ll love
- Read real reviews from verified hotel guests

Find your perfect flight:
- Choose from hundreds of airlines and flights
- Sort by price, no change fees flights, duration, or departure and arrival time
- Book with confidence and get the best deal on your next flight with Expedia’s new Price Tracking and Predictions.
- Book all class types, from economy to first-class seats

Get going as soon as you land:
- Enjoy round-trip car rentals from any airport – with no cancellation fee
- Reserve rental cars up to 30 minutes in advance
- Choose from our selection of standard car rentals, luxury autos, SUVs, and more

Discover and book things to do:
- Browse and book activities for hundreds of destinations worldwide
- Get tickets for tours, shows and theme parks, museums, and more
- Reserve airport shuttles and ground transportation

Book in a flash and get rewarded for your travel:
- Already signed in? Complete your booking in less than 30 seconds
- Earn double Expedia Rewards points on all your app purchases

Your trip companion, no matter the device:
- View upcoming trip details, hotel address information, and get maps for directions
- Receive alerts for flight delays, hotel check-out times, and more
- Share itineraries with family and friends via email or text message
- Browse inspiring travel guides

Download the Expedia App for hotels, flights, cars rentals, activities and bundle deals today!


*These offers are only available to Expedia Rewards members. The discount will be applied to the price of selected hotels (excluding applicable taxes and other fees). Prices displayed include the promotional discount and are per room, per night, based on two people sharing a room. Blackout periods may apply and a minimum hotel stay may be required. Please check individual hotel for details. Offers are subject to limited availability and may be discontinued without notice. Expedia’s usual booking terms and conditions apply. Bonus point offers are calculated on the base points earned for an eligible booking only and are not calculated on any bonus points earned for being Silver or Gold members, or otherwise. Free cancellation on most hotels. Some hotels require you to cancel at least 24-48 hours before check-in. See property pages on our app for details.

The Expedia app uses information for analytics, personalization, and advertising. By using our app, you agree to our privacy and cookies policies.
\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4066143,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.expedia.bookings\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.expedia.bookings/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.expedia.bookings/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.expedia.bookings/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.expedia.bookings/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Twitter\",\n \"appId\": \"com.twitter.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.twitter.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/wIf3HtczQDjHzHuu7vezhqNs0zXAG85F7VmP7nhsTxO3OHegrVXlqIh_DWBYi86FTIGk\",\n \"developer\": {\n \"devId\": \"Twitter, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Twitter%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Join the conversation!

Expand your social network and stay updated on what’s trending now. Retweet, chime in on a thread, go viral, or just scroll through the Twitter timeline to stay on top of what’s happening, whether it’s social media news or news from around the world.

Twitter is your ✨ go-to social media app ✨ and the new media source for what's going on around the globe.

Jump into the conversation with sound!Twitter Spaces is a new way to have live audio conversations that amplify the power of the human voice. Engage authentically with fans and followers, listen and learn about your favorite creators, influential people and activists on their live Spaces. From tweeting to talking, Join, listen, and speak in live audio conversations.

Explore top trending topics in media, or get to know thought-leaders in the areas that matter to you; whether your interests range from celebrity tweets to politics, news updates, best podcast recommendations or football, you can follow & speak directly to influencers or your friends alike. Every voice can impact the world.

Follow your interests. ⭐ Tweet, Retweet, Reply to Tweets, Share or Like - Twitter is the #1 social media app for latest news & updates.

Trending Topics Get ready for a new kind of media. Search hashtags and trending topics to stay in the know. Follow the tweets of your favorite influencers and crime podcast hosts, alongside hundreds of interesting Twitter users, and read their content at a glance.

Share your opinion Engage your social network with noteworthy links, photos and videos. DM your friends or reply in a thread. Whether you chat privately or go viral, your voice makes a difference.

Get noticed. Twitter allows you to find interesting people or build a following of people who are interested in you. Beyond chatting with friends, Twitter allows influencers to build a personal connection with their fans. Speak directly to the people who influence you - you may be surprised by how many answer back.

✔️ Build your profile:

*Customize your profile, add a photo, description, location, and background photo
*Post visual content 🤸
*Use hashtags in your Tweets #️⃣
*Draw in followers outside of Twitter 🌎

Track What’s Trending

Discover top trending hashtags and breaking news headlines. Follow media topics, Tweet threads & live videos, to keep your finger on the pulse of what’s happening. Whether you’re interested in sports highlights, pop culture memes or politics, Twitter is your source of information.

Join a community
Go beyond just the people you know; use social media to expand your social network. Find like-minded friends or explore interests you never knew you had. Get informed on the topics that matter to you, whether your interests are mainstream or niche. You can share content or be a fly on the wall; either way, you’ll discover something new each time you open the app.

Find your voice on social media - download the Twitter app for Android today!

Like us on Facebook: https://www.facebook.com/TwitterInc/
Follow us on Instagram: https://www.instagram.com/twitter/?hl=en

Privacy Policy: https://twitter.com/en/privacy
Terms and Conditions: https://twitter.com/en/tos

We share device identifying data with some advertising partners which may include app opens that happen prior to signing up. Please see here for more details: https://help.twitter.com/en/safety-and-security/data-through-partnerships\",\n \"scoreText\": \"3.7\",\n \"score\": 3.6902509,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.twitter.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.twitter.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.twitter.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.twitter.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.twitter.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ClassDojo\",\n \"appId\": \"com.classdojo.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.classdojo.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/FUzIQanDvPv3Gl_4qmOWr74en-f16P-WKOeXTEu2LUvIEYvTeZ9USEf4O0FrH8tvCA\",\n \"developer\": {\n \"devId\": \"ClassDojo\",\n \"url\": \"http://gplayapi.srik.me/api/developers/ClassDojo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Ready to build an amazing classroom community?

ClassDojo is a beautiful, safe, and simple communication app for teachers, parents, and students.

* Teachers can encourage students for any skill, like “Working hard” and “Teamwork”
* Teachers can bring parents into the classroom experience by sharing photos, videos, and announcements
* Students can add their classwork easily to their own digital portfolios for their parents to see
* Teachers can also safely and instantly message with any parent
* Parents see their child’s updates at home, as well as a stream of photos and videos from school
* All your favorite teacher tools, like Group Maker and Noise Meter, are now in one place!

ClassDojo helps teachers build a positive classroom culture by encouraging students and communicating with parents.

ClassDojo is free for everyone, and K-12 teachers, parents, students, and school leaders in over 180 countries have joined. It works on all devices, like tablets, phones, computers, and smartboards.

See how much people love ClassDojo at: www.classdojo.com/wall-of-love/

Join the ClassDojo community today!\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7899227,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.classdojo.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.classdojo.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.classdojo.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.classdojo.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.classdojo.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Uber - Request a ride\",\n \"appId\": \"com.ubercab\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.ubercab\",\n \"icon\": \"https://play-lh.googleusercontent.com/AQtSF5Sl18yp3mQ2tcbOrBLekb7cyP3kyg5BB1uUuc55zfcnbkCDLHFTBwZfYiu1aDI\",\n \"developer\": {\n \"devId\": \"Uber Technologies, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Uber%20Technologies%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"We’re committed to your safety at Uber. We’ve established a Door-to-Door Safety Standard to help you feel safe every time you ride.

And with Uber, your destination is at your fingertips. Just open the app and enter where you want to go, and a nearby driver will help you get there reliably.

FIND A RIDE FROM ALMOST ANYWHERE
Request a ride from 600+ airports and in 10,000+ cities around the world, the Uber app is a great way to make your travel plans stress-free. Request a ride on demand or schedule one ahead of time.

FIND A RIDE TO ALMOST ANYWHERE
Whether you’re looking for style, space, or affordability, Uber can help you find the perfect ride to fit your needs:

Enjoy elegance and premium features with Uber Black
Ride with extra room (and more of your friends) with UberXL

All of these transportation options and more are available in one place with the Uber app.

SEE PRICE ESTIMATES
With Uber, you can see your price estimate up front before booking. That means you’ll always have an idea of what you’ll pay before requesting your ride.

YOUR SAFETY DRIVES US
We’re committed to making every trip with Uber as safe as possible. That's why—in addition to our Door-to-Door Safety Standard—we've built new safety features and updated our Community Guidelines for respectful and positive experiences.

You can share your trip
Give your loved ones peace of mind while you’re on a trip—you can share your location and trip status so they know you made it to your destination.

You can contact emergency services
You can call your local authorities directly from the app, and your location and trip details will be displayed so you can quickly share them with emergency services.

TIP AND RATE YOUR DRIVER
After every ride, you can submit a rating along with comments. You can also let your driver know you appreciated your experience by adding a tip for them right in the app.

Not all products are available in all markets.

To see if Uber is available in your city, visit https://www.uber.com/cities.
Follow us on Twitter at https://twitter.com/uber.
Like us on Facebook at https://www.facebook.com/uber.

Have a question? Visit uber.com/help.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6494436,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ubercab\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.ubercab/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.ubercab/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.ubercab/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.ubercab/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Samsung Smart Switch Mobile\",\n \"appId\": \"com.sec.android.easyMover\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.sec.android.easyMover\",\n \"icon\": \"https://play-lh.googleusercontent.com/KlHY0O3groJhp-QsW4CBfxZuabFkfGOhjIjrlQw-b28Z6KXmYn3QSFbrtgZsJz4HYw\",\n \"developer\": {\n \"devId\": \"Samsung Electronics Co., Ltd.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Samsung%20Electronics%20Co.%2C%20%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"• If you are unable to download through the Google Play Store, please follow the instructions below.
- Please reboot a phone and go to Settings → Apps → Google Play Store → Clear cache and data → Then, try to download again.

▣ Smart Switch gives you the freedom to move your contacts, music, photos, calendar, text messages, device settings and more to your new Galaxy device. Plus, Smart Switch™ helps you find your favorite apps or suggest similar ones on Google Play™.

▣ Who can transfer?
• Android™ owners
- Wireless transfer: Android 4.0 or higher
- Wireless transfers from a compatible Android device to Galaxy device: Android 4.0 or higher (Note that non-Samsung devices with Android versions lower than 6.0 can only connect with Galaxy devices that support a mobile AP.)
- Wired transfer: Android 4.3 or higher, charger cable, and a USB connector

• iOS™ owners - use the option that’s best for you:
- Wired transfer from your iOS device to your Galaxy: iOS 5.0 or above, iOS device cable (lightning or 30 pin), and a USB connector
- Import from iCloud™: iOS 4.2.1 or higher and Apple ID
- PC/Mac transfer using iTunes™: Smart Switch PC/Mac software – Get started http://www.samsung.com/smartswitch

• Windows™ Mobile owners
- Wireless transfers: Windows OS 10
* Note: For more information and step-by-step directions, go to http://www.samsung.com/smartswitch

▣ What can be transferred?
- Contacts, calendar(Device content only), messages, photos, music (DRM free content only, Not supported for iCloud), videos (DRM free content only), call logs, memos, alarms, Wi-Fi, wallpapers, documents, app data (Galaxy devices only), home layouts (Galaxy devices only)
- You can send app data and home layouts by upgrading your Galaxy device to M OS (Galaxy S6 or higher).

▣ Which devices are supported?
• Galaxy: Recent Galaxy mobile devices and tablets (From Galaxy S2)
* Note: For Galaxy S2, old OS (GB/ICS) version can cause incompatibility. If your S2 does not work properly, please try after firmware update.

• Other Android devices:
- HTC, LG, Sony, Huawei, Lenovo, Motorola, PANTECH, Panasonic, Kyocera, NEC, SHARP, Fujitsu, Xiaomi, Vivo, OPPO, Coolpad(DazenF2), RIM(Priv), YotaPhone, ZTE(Nubia Z9), Gionee, LAVA, MyPhone(My28s), Cherry Mobile, Google(Pixel/Pixel2)

* Note: For reasons such as compatibility between devices, it may not be possible to install and use Smart Switch on certain devices.
1. To transfer data, both devices must have a minimum of 500 MB free space in their internal memory.
2. If you are using a wired connection, your device must support a 'Transferring media files (MTP)' USB option to allow content to be transferred.
3. If you have a non-Samsung device that constantly disconnects from the wireless network, go to Advanced Wi-Fi on your device, turn off the “Wi-Fi initialize” and “Disconnect low Wi-Fi signal” options, and try again.
(The options described above may not be available, depending on your device manufacturer and OS version.)

※ Application permissions
The following permissions are required for the app service.
[ Required permissions ]
. Phone: Used to confirm your phone number
. Call logs: Used to transfer call log data
. Contacts: Used to transfer contacts data
. Calendar: Used to transfer calendar data
. SMS: Used to transfer SMS data
. Storage: Used to save the files necessary for data transfer
. Microphone: Used for high-frequency audio when searching for Galaxy devices.
. Bluetooth: Used to search for nearby Galaxy devices using Bluetooth.
. Location: Used to connect to devices using Wi-Fi Direct, which makes your location available to nearby devices

If your system software version is lower than Android 6.0, please update the software to configure App permissions.
Previously allowed permissions can be reset on Apps menu in device settings after software update.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.09943,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.sec.android.easyMover\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.sec.android.easyMover/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.sec.android.easyMover/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.sec.android.easyMover/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.sec.android.easyMover/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"NewsBreak: Local News & Alerts\",\n \"appId\": \"com.particlenews.newsbreak\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.particlenews.newsbreak\",\n \"icon\": \"https://play-lh.googleusercontent.com/tglON9RT5UtgM5omnTCl-PsDxyKIxg4jc8Q36WGEoYmEKjZXsTaUv7HbHo_xEoCloQ\",\n \"developer\": {\n \"devId\": \"Particle Media Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Particle%20Media%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get daily news alerts & updates on current events sent straight to your phone, because a small news reader makes a big difference to communities! Keep up to date with news that impacts you & your community! Read trending headlines on live local news updates, international news, weather alerts, & more!

Small news makes a big difference! NewsBreak is your #1 local news app for current events, free live news, local weather alerts for your community. Download today to stay up to date on all things local!

Local news is different from national US news, trending headlines or global news. NewsBreak believes that local news helps bring neighborhoods together around the unique stories they share in common. Only local, small news has the unique ability to meaningfully inform the decisions we make throughout the day.

Are there any weather alerts or winter storm updates for my area? What about traffic updates? What important events are happening nearby? Stay updated with a crime map for the neighborhood & check for local weather alerts. Join NewsBreak’s growing local news community & see why over 45M people across the United States have helped make us the nation’s #1 local news app!

Remember - we don’t just do small news! Local breaking news, sports news, trending national & international news – NewsBreak’s got it all. Get everything from sports updates to national news headlines & live stream news sent straight to your phone while coming together with your neighborhood to share interesting conversations related to local news in your area.

Join the 45M+ locals across the U.S. that trust NewsBreak as their #1 local news app!

NewsBreak Features:

Local News Highlights
• Get local news, traffic, events near by, local weather alerts, news widget, & more in a curated daily briefing
• Live stream news on local channels: follow local news, events, newspapers, & activities
• Get local weather reports & traffic updates at a glance

Breaking News, National & Local
• Both small news & breaking news, stay up to date with our current news coverage
• Daily news aggregated right onto your device
• Browse national news headlines & read comprehensive, in-depth stories
• Use the discovery engine to discover stories from over 10,000 trusted sources

Personalized News Feed
• Get the stories that matter to you with a highly personalized feed, relevant to your likes & dislikes
• Get coverage on the tv news that matters most to you, including sports news, business news, tech news, health news, real estate news, science news, finance news, celebrity news, market news, & more!
• Keep up with the latest coverage of headline news & events, nationally & locally!
• Our news aggregator collects & delivers the news that matters to you
• Get news alerts customized to your tastes to make NewsBreak your personalized news reader

Your Community News
• Find local eats, small news updates, traffic alerts, deals, local shopping, & more ahead of time
• Read personal & vivid stories from our local news writers & content creators
• Treat us as your personal newsstand, magazine collector, news picker, blog reader, restaurant reviewer, & more
• Stay updated with daily life, events near you, & neighborhood crime with the local safety map

Create Civic Value - Support the Cause
• Use NewsBreak to revive the local news maker ecosystem & support small US news publishers
• Increase local story volume & geographic coverage to stimulate local storytelling & community power

Follow or Block the Trend - It’s Up to You
• It’s totally cool to stay on top of some topics, or totally hate them!
• NewsBreak allows you to follow what is trending, or completely block some topics you don’t appreciate
• You can laugh, share, think, cry, upvote, downvote, comment, reply...
• NewsBreak is a free ground that welcomes you to express emotions & opinions

Download NewsBreak today to stay informed on local news, national headlines, & world news!

Better informed, better life.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4712806,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.particlenews.newsbreak\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.particlenews.newsbreak/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.particlenews.newsbreak/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.particlenews.newsbreak/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.particlenews.newsbreak/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Reddit\",\n \"appId\": \"com.reddit.frontpage\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.reddit.frontpage\",\n \"icon\": \"https://play-lh.googleusercontent.com/nlptFyxNsb8J0g8ZLux6016kunduV4jCxIrOJ7EEy-IobSN1RCDXAJ6DTGP81z7rr5Zq\",\n \"developer\": {\n \"devId\": \"reddit Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/reddit%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Reddit is the place where people come together to have the most authentic and interesting conversations on the internet—Where gaming communities, nostalgic internet forums, bloggers, meme-makers, and fandoms mingle alongside video streamers, support groups, news junkies, armchair experts, seasoned professionals, and artists and creators of all types.

With over 100,000 communities about every topic you could think of (and a few you’d probably never think of if it wasn’t for the creativity of strangers on the internet), Reddit is the place where you can dive into anything and connect with people on any topic.

A few things you’ll find on Reddit…

■ Thousands of communities
Whether you're into breaking news, sports, TV fan theories, or a never-ending stream of the internet's cutest animals, there's a community on Reddit for you.
■ Laughs, lols, and plenty of ridiculousness
Lose track of vast amounts of time as you find memes, bananas for scale, bread stapled to trees, cat videos, and more of the absurd and oddly absorbing.
■ Discussions that will draw you in
The real action is always in the comments. Reddit’s discussion threads are where community members jump in to provide commentary, humor, and insight.
■ Answers to questions you’re too afraid to ask in public
Recipes, street fashion, career help, fitness plans, and more—find ideas and inspiration for whatever you want to do.
■ Live video streams, chats, and talks
Want to know what people are doing right now? Streaming videos, live chats, and live audio conversations give you a variety of ways to connect with people in the moment.
■ Crowd-sourced points of view on just about everything
Product reviewers, music critics, sports fans, or doge enthusiasts—find people that obsess and care about whatever it is you’re interested in.
■ Anonymous profiles so you can do you
On Reddit, you (not your job, number of friends, or social status) define who you are.
■ Lots and lots of cats

Reddit Premium:
Purchase Reddit Premium and enjoy an ads-free experience, 700 coins for every month you’re subscribed, and access to premium avatar gear, r/lounge, custom app icons, and more.

Payment will be charged on a recurring monthly or annual basis to your Google Play account. Your monthly or annual Premium subscription will automatically renew unless you cancel at least 24 hours before your subscription ends. Cancel anytime in your device’s Account Settings. No partial refunds.

Privacy Policy: https://www.redditinc.com/policies/privacy-policy
User Agreement: https://www.redditinc.com/policies/user-agreement
Content Policy: https://www.redditinc.com/policies/content-policy

Download the official Reddit app today.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.1052403,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.reddit.frontpage\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.reddit.frontpage/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.reddit.frontpage/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.reddit.frontpage/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.reddit.frontpage/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"King James Bible - Verse+Audio\",\n \"appId\": \"kjv.bible.kingjamesbible\",\n \"url\": \"http://gplayapi.srik.me/api/apps/kjv.bible.kingjamesbible\",\n \"icon\": \"https://play-lh.googleusercontent.com/6OZsxYBXjE2WmI7WI6exaIUY-SygmjAo04g41kP_ywZqYxAy-eVjQXgL1DR14ya4IQ\",\n \"developer\": {\n \"devId\": \"iDailybread\",\n \"url\": \"http://gplayapi.srik.me/api/developers/iDailybread\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"King James Bible - Daily Verse And Audio is a study tool. With the help of this Bible app, people can study, read, share and listen to the King James Bible. This app is the one that helps you pray and understand different words in the Bible.

It can be used without internet access. It also allows you to quickly jump to the exact Bible verse in the KJV translation with a simple design and create your own Bible verse collection, audio Bibles, and private notes.

CONVENIENT BIBLE STUDY TOOL
- Access King James Bible anytime anywhere by swiping the screen corner
- Off to a good start with an inspiring Bible verse from KJV Bible App each day
- Easy verse copying and pasting
- Study KJV Bible Offline
- Listen to audio Bibles offline
- Search in the App with keywords
- Daily Bible verse can be set to appear on the screen after a phone call ends
- Share Bible verses with your family and friends on social media

CUSTOMIZE YOUR PERSONAL VERSION OF THE BIBLE
- Bookmarks: Catch up where you left off with a simple bookmark.
- Highlights: Mark favorite verses in different colors and manage them in the highlighted tab.
- Notes: Write down your own thoughts and share them with your friends.
- Font Adjustment: Choose any font sizes, styles you want.
- Reading plans: A large and increasing pool of reading plans to help you grow in your understanding of God’s words.
- Share verses with your friends and family on multiple social media with ease

READ BIBLE DAILY
- Prayer and Read Bible every day with the help of the King James Bible Version (KJV) app.
- Download text or audio content to read, learn, and listen to the Bible
- Immersive Christian Bible verse reading experience
- Listening to audio Bible scriptures, reciting daily verses, sharing the Bible verses, all in one Bible App
- Use this KJV Bible app for your daily devotional study and Christian bible reading
- Keep in touch with friends every day through sharing and discussing ideas with them

YOUR PRIVACY ON ANDROID
KJV Bible app requests access to your pictures when you use Setting-Feedback-Upload pictures, and uploads the pictures you choose to our server, so that your feedback can be resolved faster.
We do not sell any personal information you provide us, nor do we share your private information without your consent.

KEEP IN TOUCH WITH KJV BIBLE APP DEVELOPERS
- Send us Emails: cs@idailybread.org
- Visit our website: https://www.idailybread.org
- Like us on social media

King James Bible -Daily Verse And Audio Books keeps God’s teaching at your fingertips. A pocket bible on the go. It helps you study God’s Word anytime, anywhere you want. Now get started on this exciting journey and spend time with God!

This Application is not related to, offered by, or sponsored by the YouVersion Application or Life Church.\",\n \"scoreText\": \"4.9\",\n \"score\": 4.87083,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=kjv.bible.kingjamesbible\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/kjv.bible.kingjamesbible/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/kjv.bible.kingjamesbible/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/kjv.bible.kingjamesbible/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/kjv.bible.kingjamesbible/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Remind: School Communication\",\n \"appId\": \"com.remind101\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.remind101\",\n \"icon\": \"https://play-lh.googleusercontent.com/O8A0yONWSafn8LIYROmP9tjTV2hptlIkUhqZOkEK7Z9XePXIttJEaRfCbcFtnzrICbg\",\n \"developer\": {\n \"devId\": \"Remind101\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Remind101\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Remind is a communication platform that helps every student succeed. Whether you're in the classroom, at home, or anywhere in between, Remind makes it easy to stay connected to your school community.

* Communicate in real time—on any device.
* Keep personal contact information private.
* Translate messages into more than 90 languages.
* Share files, photos, and content from your favorite sites.

Join the millions of educators, students, and parents using Remind to manage school communication and make time for what's important. Visit our site to learn more: http://www.remind.com\",\n \"scoreText\": \"4.4\",\n \"score\": 4.416759,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.remind101\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.remind101/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.remind101/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.remind101/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.remind101/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Chat\",\n \"appId\": \"com.google.android.apps.dynamite\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.dynamite\",\n \"icon\": \"https://play-lh.googleusercontent.com/cF_oWC9Io_I9smEBhjhUHkOO6vX5wMbZJgFpGny4MkMMtz25iIJEh2wASdbbEN7jseAx\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Google Chat is an intelligent and secure communication and collaboration tool, built for teams. From ad-hoc messaging to topic-based workstream collaboration, Chat makes it easy to get work done where the conversation is happening.

• Group collaboration that allows Google Workspace content creation and sharing (Docs, Sheets, Slides), without having to worry about granting permissions
• Side by side editors, one click meetings, scheduling, document creation, and shared files, tasks, and events make it easy to get work done
• Google search functionality, with options to filter for conversations and content that you’ve shared
• Ready for Enterprise, with the full benefits of Google Workspace security and access controls including Data Loss Prevention, Compliance, Admin Settings, Vault Retention, Holds, Search, and Export

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/\",\n \"scoreText\": \"3.7\",\n \"score\": 3.674833,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.dynamite\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.dynamite/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.dynamite/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.dynamite/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.dynamite/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Microsoft Teams\",\n \"appId\": \"com.microsoft.teams\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.microsoft.teams\",\n \"icon\": \"https://play-lh.googleusercontent.com/jKU64njy8urP89V1O63eJxMtvWjDGETPlHVIhDv9WZAYzsSxRWyWZkUlBJZj_HbkHA\",\n \"developer\": {\n \"devId\": \"Microsoft Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Microsoft%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Whether you’re on a conference call with teammates about a project you are working on or a video chat with friends and family planning a weekend activity, Microsoft Teams helps bring people together so that they can get things done. It’s the only app that has chats, video calls, meetings, files, tasks, and calendar in one place. Easily connect with people through a video call or group chat and bring plans to life. Set up a group call to get family and friends together to manage tasks at home or plan a surprise birthday party. Work with teammates via secure meetings, video calls, document collaboration, and built-in cloud storage. You can do it all in Microsoft Teams.

Easily connect with anyone:
• Conduct a conference call securely to collaborate with external partners for work assignments while maintaining control over your data.
• Video calling lets you meet with teammates, family, and friends securely. Set up a video meeting within seconds and invite anyone by sharing a link or calendar invite.
• Chat 1-1 or in group chats with friends or colleagues. @mention people in chats to get their attention.
• Dedicated group messaging channels help create a focused workspace for important projects.
• Video call anyone directly in Teams or instantly convert a group chat to video call.
• GIFs, emojis, and message animations make it easier to express yourself when words aren’t enough.
• Whether you’re looking for a dedicated work chat or a group chat for friends and family, Microsoft Teams makes communication simple and convenient for everyone.

Accomplish plans and projects together:
• Group messaging and task lists allow you to stay on top of work projects or plans with family and friends. Set up a group chat, assign tasks, set due dates, and cross off completed tasks to keep everyone on the same page.
• File sharing in chats makes it easier to coordinate on work assignments or personal projects.
• Cloud storage makes it easy to access shared documents and files on the go.
• Dashboard view neatly organizes all shared content—photos, files, tasks, links—so you don’t have to spend time looking for things*.
• Screenshare, whiteboard, or breakout in virtual rooms to get most out of your work meetings.

Designed to give you peace of mind:
• Store important information such as subscription passwords in a digital Safe*.
• Enterprise-level security and compliance you expect from Microsoft 365**.

*Available when using Microsoft Teams with your personal account.

**Commercial features of this app require a paid Microsoft 365 commercial subscription, or a trial subscription of Microsoft Teams for work. If you’re not sure about your company’s subscription or the services you have access to, visit Office.com/Teams to learn more or contact your IT department.

By downloading Teams, you agree to the license (see aka.ms/eulateamsmobile) and privacy terms (see aka.ms/privacy). For support or feedback, email us at mtandapp@microsoft.com. EU Contract Summary: aka.ms/EUContractSummary\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6669173,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.microsoft.teams\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.microsoft.teams/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.microsoft.teams/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.microsoft.teams/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.microsoft.teams/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Pinterest\",\n \"appId\": \"com.pinterest\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.pinterest\",\n \"icon\": \"https://play-lh.googleusercontent.com/dVsv8Hc4TOUeLFAahxR8KANg22W9dj2jBsTW1VHv3CV-5NCZjP9D9i2j5IpfVx2NTB8\",\n \"developer\": {\n \"devId\": \"Pinterest\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Pinterest\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Pinterest is the place to explore inspiration. You can:

- Discover new ideas
- Save what inspires you
- Shop based on your taste
- Find new creators
- Share what you love

On Pinterest, discover inspiration for whatever you’re into. Explore billions of ideas to turn your dreams into reality: Plan your dream wedding 💐Nail your nailscapes 💅🏿 Discover your summer DIY project 🔨Make a visual shopping list 👚Create a life you love ✨

Why wait? Download today to create a life you love.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5497985,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.pinterest\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.pinterest/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.pinterest/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.pinterest/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.pinterest/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ToonMe - Cartoon Face Maker\",\n \"appId\": \"com.different.toonme\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.different.toonme\",\n \"icon\": \"https://play-lh.googleusercontent.com/sNvgPXzakEbIQNGr4ttb_cXI1m1ruxyPTmEhtsfeMgwGIAkcbrooWAPu7z1iY3m7UC0\",\n \"developer\": {\n \"devId\": \"Otis Clare\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Otis%20Clare\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"🖼️Cartoon Face Maker
Turn your face into retro comic style, it's awesome.

💗3D Face Maker
It's amazing to see what your big-eyed self looks like by turning your connection into 3D.

👼Angel Face Maker
Turning your hair blond, making your face more refined, and turning you into a blond angel is incredible.

🎮Game Face Maker
Turn your face into the style of a 3A game NPC, it feels like seeing yourself in the game world, it's amazing.\",\n \"scoreText\": \"4.0\",\n \"score\": 4,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.different.toonme\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.different.toonme/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.different.toonme/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.different.toonme/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.different.toonme/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Wonder - AI Art Generator\",\n \"appId\": \"com.codeway.wonder\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.codeway.wonder\",\n \"icon\": \"https://play-lh.googleusercontent.com/VeZDLhyfBv58cbfOuJQ_C__2dUGjzRXIUoL2_FBMQS4uihfF8fzq0_OO52lFuRTT7g\",\n \"developer\": {\n \"devId\": \"Codeway Dijital\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Codeway%20Dijital\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Turn words into mesmerizing digital artworks! All you need to do is enter a prompt, pick an art style - and watch Wonder bring your idea to life in seconds!

It’s super simple: Simply describe what you want Wonder to paint — such as “Life Under Sea” or “Shattered Rainbow” — pick a style (Cubist, Dali, Synthwave, Steampunk etc.), or select “no style”; and hit create!

【 BECOME AN ARTIST 】

Here are some cool things you can ask Wonder to paint for you:

- Poems
- Song lyrics
- Unique & creative word combinations such as “Haunted Cornfield” or “Flaming Ocean”
- Movie characters
- Star signs
- Monuments
and many more!

【 SHARE IT & GO VIRAL】

Once you have your completely unique, original artwork; feel free to share it with friends or hop on the latest #AIPainting trend on social media.

【 EXPLORE NEW STYLES 】

You can choose from a range of familiar art styles, from ornate baroque paintings to futuristic synthwave landscapes and everything in between.

【 USE AS LOCKSCREEN 】

Get ready to hear questions such as “I love your lockscreen, who’s the artist?” — then you can proudly answer: “I did it myself!”

Ready to test your creativity with the mind-boggling powers of AI? Try Wonder today & see the wonders you can do!

---

Privacy Policy: codeway.co/wonder-privacy
Terms of Use: codeway.co/wonder-terms\",\n \"scoreText\": \"4.0\",\n \"score\": 4.025292,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.codeway.wonder\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.codeway.wonder/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.codeway.wonder/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.codeway.wonder/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.codeway.wonder/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouTube TV: Live TV & more\",\n \"appId\": \"com.google.android.apps.youtube.unplugged\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.unplugged\",\n \"icon\": \"https://play-lh.googleusercontent.com/gk-WYYED1OJNr0G28ucBPUTPric5QCLwW2q_rNcYg-XTQCbPkhcp3CqVJ-1dHiBql10\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"• Cable-free live TV. No cable box required.
• Watch major broadcast and cable networks, including ABC, CBS, FOX, NBC, NFL Network, ESPN, AMC, Univision, HGTV, TNT and more, including your local news and sports channels.
• Watch on your smartphone, tablet, computer, smart TV, or game console, and on your big screen via Google Chromecast, Roku player & TV, and Apple TV.
• Cloud DVR without DVR storage space limits. Each recording will be stored for 9 months.
• 6 YouTube TV accounts per household. Everyone gets their own login, recommendations and DVR.
• No commitment, no contracts; cancel anytime.
• Start your free-trial today.

Over eighty-five networks are available in YouTube TV:

BROADCAST
ABC, CBS, FOX, NFL Network, NBC, PBS, and more

SPORTS
CBS Sports Network, NBC Sports RSN (regional), ESPN, ESPN2, ESPNews, ESPNU, Galavisión, Golf Channel, MLB Game of the Week Live on YouTube, MLB Network, NBA TV, NFL Network, Olympic Channel, SEC Network, Univision, UniMás and more

ENTERTAINMENT & LIFESTYLE
AMC, Animal Planet, BBC America, BET, Bravo, CMT, Comedy Central, Comet, Cozi TV, Decades, Discovery, E!, Food Network, Freeform, FX, FXM, FXX, Galavisión, IFC, Investigation Discovery, HGTV, MotorTrend, MTV, Nat Geo, Nat Geo Wild, Oxygen, Paramount Network, Pop, Smithsonian Channel, SundanceTV, SyFy, TBS, TCM, TLC, TNT, Travel Channel, TruTV, TV Land, Univision, UniMás, USA, VH1, WE tv, YouTube Originals, and more

NEWS
BBC World News, Cheddar, CNBC, CNN, Galavisión, HLN, MSNBC, NBCLX, Univision, UniMás, and more

KIDS
Cartoon Network, Disney Channel, Disney Junior, Disney XD, Nickelodeon, PBS Kids, Universal Kids

SPANISH LANGUAGE
Galavisión, Telemundo, Universo, Univision, UniMás and more

Sports and premium networks like our Sports Plus add-on now with 15+ channels included, HBO Max, SHOWTIME, STARZ, and more are also available for an additional monthly charge.

Availability:
YouTube TV is available nationwide in the United States.

For more information, please visit our Help Center.

Terms of service: tv.youtube.com/tv/terms
Paid terms of service: tv.youtube.com/tv/paidterms
Privacy policy: tv.youtube.com/tv/privacy

Enjoy cable-free live tv now!\",\n \"scoreText\": \"4.2\",\n \"score\": 4.167689,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.youtube.unplugged\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.unplugged/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.unplugged/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.unplugged/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.unplugged/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Bravo Booster: One-tap Cleaner\",\n \"appId\": \"com.bravo.booster\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.bravo.booster\",\n \"icon\": \"https://play-lh.googleusercontent.com/sGpJjbXMOIJ1QV-gPWuif_r6WircCAUksyoq5eDfT1YrFD1COTS_PxQJ1cpr2pQ1rA\",\n \"developer\": {\n \"devId\": \"Bravo GmbH\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Bravo%20GmbH\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"🏆Bravo Booster is an amazing Android phone boost app, focusing on phone speed booster, junk files cleaner, battery saver and photos clean. This app can clear ram files to optimize your phone storage space. Bravo booster can also clean up TikTok and WhatsApp, boost phone effectively, Download this one-tap smart phone booster doctor now to get rid of slow running! Bravo Booster can make your phone faster than ever.
 
Bravo Booster Core FEATURES:
🚀Amazing Phone Booster
Bravo Booster can real-time effectively release your mobile storage and clean ram, deeply optimize the space by cleaning up junk files, cache data, ram, thus making the experience on Android phones more enjoyable and convenient. One-tap speed booster, simple to use and help speed up the phone by freeing up RAM.
🔋Bravo Battery Saver & Extend Battery Life
It’s time to meet your awesome personalized battery saver doctor! Bravo Booster can intelligently monitor and analyze battery usage, close battery-draining apps in time to help save battery power, optimize battery usage and extend its life. Just one tap can save electricity and help Android phone away from the low-battery trouble!
🤩Junk Cleaner Master
Upset about the lag in your games or videos? Bravo Booster can automatically scan and clean phone memory, app cache, junk files, ram of SNS apps, free up storage space, boost phone speed and improve phone performance. Come and get a fast and smooth experience on Android phone just in one tap!
👏Photos Cleaner
Bravo Booster is a powerful photo manager and amazing photo optimizer. It can clean up duplicate, similar, useless photos to release more space for your photos. Safe, free and easy to manage your photos efficiently. The function photo cleaner is powerful to speed up your Android phone. It is an amazing speed booster to release more space of your phone!
 
💞Bravo Booster can save more space for your Android phone with its phone booster, files cleaner, battery saver, One-tap to clear junk files to save space of SNS apps. Bravo Booster can optimize space and speed up your phone with just one tap. With Bravo Booster, you will have a better clear app experience in watching videos, playing games, and chatting with your friends. Download this super magic phone clear app to greatly improve your phone speed!
 
👉If you like Bravo Booster, have feedback, suggestion, or just want to say hi, please contact us via “charaleong@gmail.com” thus we can bring you the best user experience and upcoming renew versions.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3663626,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bravo.booster\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.bravo.booster/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.bravo.booster/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.bravo.booster/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.bravo.booster/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Zelle\",\n \"appId\": \"com.zellepay.zelle\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.zellepay.zelle\",\n \"icon\": \"https://play-lh.googleusercontent.com/F4U2pL8z-Ic5FzCfe1xVXMWRvff6oEBIzDsyGRc4mE3bIUPiCfhuXXXvTOfcpVglKqs\",\n \"developer\": {\n \"devId\": \"Early Warning Services, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Early%20Warning%20Services%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Zelle® has partnered with leading banks and credit unions across the U.S. to bring you a fast, safe and easy way to send money to friends and family. Money moves quickly - directly from bank account to bank account. If your bank or credit union offers Zelle, you already have it in your mobile banking app or online banking – if they don’t, the Zelle app will make it easy for you to send money to enrolled Zelle users that already have access through their financial institution.

Zelle. This is how money moves®.

Using just your recipient’s email address or U.S. mobile number, you can settle up simply and safely with almost anyone you know and trust. Even better, Zelle does not charge any fees to use the service. (Mobile carrier or bank fees may apply).

GET STARTED:
1.\\tDownload the Zelle app.
2.\\tEnroll using a Visa® or Mastercard® debit card linked to a U.S. checking account; or
3.\\tEnroll your U.S. checking account by using your online banking username and password, if your bank supports this feature*.
4.\\tChoose a person to pay, or request money from, by entering their U.S. mobile number or email address.
5.\\tConfirm the amount and hit send. If they’re already enrolled with Zelle, they’ll typically get the money in minutes. If they aren’t, they will be notified and can follow a few simple steps to complete the payment.

*Some banks allow customers to enroll in the Zelle app using their online or mobile banking username and password.

Zelle and the Zelle related marks and logos are property of Early Warning Services, LLC

You must have a bank account in the U.S. to use Zelle.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.10348,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.zellepay.zelle\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.zellepay.zelle/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.zellepay.zelle/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.zellepay.zelle/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.zellepay.zelle/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Uber Eats: Food Delivery\",\n \"appId\": \"com.ubercab.eats\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.ubercab.eats\",\n \"icon\": \"https://play-lh.googleusercontent.com/WSolXsO3HwiJSS-lXWgv1llcHHsbkdMUvhfeOz-rIsBh7_RnpdA2sLe58o3KjXY0LQ\",\n \"developer\": {\n \"devId\": \"Uber Technologies, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Uber%20Technologies%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get food delivery to your doorstep from thousands of amazing local and national restaurants. Find the meal you crave and order food from restaurants easily with the Uber Eats app. Track your order in real-time.

FIND YOUR FAVORITE FOOD & RESTAURANTS
Order food from nearby restaurants and search by cuisine, restaurant name, dish, meal. The Uber Eats app offers a variety of food delivery options for you to order and enjoy, including: pizza, burritos, burgers, sushi, and tasty Chinese takeout. Prefer Pickup? Skip the line and reservations and choose to Pickup your order instead. Choose your favorite delivery options with the Uber Eats app now.

SUBSCRIBE TO THE EATS PASS
For $9.99 per month, Eats Pass subscribers get $0 delivery fee and 5% off orders over $15 at eligible restaurants available on Uber Eats. United States and Canada only (excludes Quebec). See availability, fees, terms & conditions in the Eats Pass section of the Uber Eats app.

SIMPLE DELIVERY ORDERING
Pick your food order from any menu and add it to your cart with a few taps. That’s it.
Uber Eats makes it easy to order food delivery online or through the app and have it delivered by restaurants and delivery people near you.
Or, schedule your order in advance for a delivery person to pick it up later. Your choice!

ORDER FOOD AHEAD WITH PICKUP
Now you can also order food ahead for Pickup instead of just ordering delivery. Select Pickup, add food items to your cart, and skip the lines to the restaurant to get your food.

REAL-TIME ORDER TRACKING
Track your food delivery order on a map as it heads your way.
See the estimated arrival time at your address.
Get notified when your order arrives.

NO-CONTACT DELIVERY OPTIONS
Choose to have your food delivery order left at the door for a no-contact experience. If you have additional instructions or preferences, you can let your delivery person know where you’d like your order to be placed—like a lobby, doorstep, or another dedicated place.

FIND SOME OF YOUR FAVORITE NATIONAL RESTAURANTS
Some of our food delivery partners include: Buffalo Wild Wings, Burger King, CAVA, A&W, Chick-fil-A, Chipotle, Dunkin', IHOP, KFC, McDonald's, Panda Express, Panera, Popeyes, Shake Shack, Sonic, Starbucks, Subway, Sweetgreen, Taco Bell, Tim Hortons, Wendy's, Five Guys, Jersey Mikes, White Castle, Jack in the Box, Outback Steakhouse, Red Lobster.

THE APP CHOICE OF MILLIONS
Over 1 billion orders have been delivered by delivery people using the Uber Eats app. Join the millions who choose the Uber Eats app to order food today.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4345884,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ubercab.eats\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.ubercab.eats/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.ubercab.eats/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.ubercab.eats/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.ubercab.eats/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Messenger Home - SMS Launcher\",\n \"appId\": \"com.myhomescreen.sms\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.sms\",\n \"icon\": \"https://play-lh.googleusercontent.com/34KpZO_6hcbzYVO5tsJFJNSve-_ATlchQrrV0eNOFCcTmzsGNAOTxCJ1Xh9XvzoRpA\",\n \"developer\": {\n \"devId\": \"Yobi Mobi\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Yobi%20Mobi\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Messenger Home is a free, all-in-one Android launcher and lightning-fast SMS messaging app that supercharges your phone’s home screen. It keeps your text messaging simple, fast, and fun with over 5 million users to confirm it. SO, JUST ANOTHER MESSAGING APP, RIGHT? 📲 Not exactly. Messenger Home’s free launcher features a functional home screen to give you quick access to your five most frequent contacts to message. Swipe right on your home screen and you’ll have access to all of your text message and SMS conversations. Packed with 4000+ free emojis, stickers, and GIFs, Messenger Home will spice up your SMS texting and messaging experience! NOT CONVINCED YET? Explore our growing set of new features that help you stay connected with Messenger Home SMS Launcher: PERSONALIZED MESSAGING: 📱 Easily customize your chat and messenger with new themes and colors to make it more YOU. Message your friends in style. APP SPEED: One Swipe Access to all your SMS text messages. Swipe right to open your messages, and swipe left to return to your home screen. SIMPLICITY IN MESSAGING: Dynamic home screen shortcuts for your top 5 most frequently messaged friends and family! Chat quicker with your most recent friends you have been messaging. This free app makes SMS texting simple and easy. CREATIVITY IN MESSAGING: While we’re on the subject of your contacts, each one has a custom colorized icon so you can easily message the person you are looking for. Create private and secure groups to chat with. Free texting in your own creative way. FUN MESSAGING: Satisfy all your expressive needs with over 4000 free emojis, gifs, stickers, and memes directly inside your SMS text messages 🤯. Expressing yourself through chat has never been more fun!😍 APP VERSATILITY: Messenger Home is free and optimized for phone, web, and voice functionality so accessing important SMS text messages, chats with friends, your favorite apps, searching for a contact, or searching the web is as simple as ever. APP FUNCTIONALITY: Messenger Home replaces your OEM home screen with our sleek, messaging focused home screen to chat and message who you want. Most frequent contacts who message or text you are conveniently placed front and center on your home screen, and your most popular apps are grouped into thematic folders for easy access. We are not just a SMS texting, chatting and messaging app; We take you phone to a new level of functionality. 📱 WELL, REALLY? Yes, we think it might just be the best free messaging home screen experience for Android™! See it yourself for free by downloading the app to start messaging and chat away! Key Features: -Default SMS, chat, and messenger features -Top contacts you message, chat, or SMS text will be easily accessible from home screen -Secure and private SMS text, messaging and chat 💯 -Messenger widget for SMS texting, messaging and chat -Customize your SMS theme -Chat and messaging features you will love -Customizable notifications for SMS texting, messaging and chat -Over 4000+ free emojis, stickers, and GIFs you can use in your messages 🤩 -Protected messages, chats and SMS texts -Free messenger app for Android Our mission is to build the fastest, easiest, most functional free Messaging Launcher available. We're constantly looking for feedback on the app, messaging, chat, SMS text, privacy, and security, in order to make the next versions even better. Keep Messenger Home updated and let us know what you think. We hope you love it! Messenger Home. Chat more. Connect better.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0930552,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.myhomescreen.sms\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.sms/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.sms/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.sms/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.sms/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Paramount+ | Peak Streaming\",\n \"appId\": \"com.cbs.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.cbs.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/oi4GE8ulxHp4Y2xVzKu_WAMrgE4Jj4Kbdd7hAWLeoZTsMtC5bYTd2xcYhlvMk69pTFY\",\n \"developer\": {\n \"devId\": \"CBS Interactive, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/CBS%20Interactive%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to A Mountain of Entertainment. Stream tens of thousands of full episodes—including favorites from CBS, Nickelodeon, Nick Jr., Comedy Central, BET, MTV and Smithsonian Channel—plus exclusive shows, brand-new originals, and live sporting events like UEFA Champions League and the NFL on CBS, when you subscribe to Paramount+.

• Watch full episodes on demand from hit series like Survivor, NCIS, SpongeBob SquarePants, Ink Master and more! (Plus, it’s all ad-free with the Premium plan.*)
• Obsess over originals. Watch subscriber-only originals such as Halo, Star Trek: Picard, 1883, iCarly, SEAL Team, and The Good Fight.
• Make every night a movie night with blockbuster hits and fan-favorite films from Paramount Pictures, MGM and more.
• Access 24/7 live streams with around-the-clock news coverage on CBS News, scores + highlights on CBS Sports HQ and entertainment news on ET Live, plus 20 live channels of curated favorites.
• Create up to 6 individual profiles for each member of your household. Have kids? Use our Kids Mode profile feature.
Watch live sports like NFL on CBS & UEFA Champions League.
• Save your faves with our watchlist feature, My List.
Stream your local, live CBS station (Premium plan only).
• Catch the best in live events including NCAA March Madness, The Masters Tournament, The GRAMMYs and more (Premium plan only).
• Download and watch offline* (Premium plan only).
• Stream even MORE originals, movies & sports when you get the Paramount+ with SHOWTIME bundle.

Try Paramount+ FREE now. After your trial, it’s only $4.99/month or $49.99/year for the Essential plan, or $9.99/month or $99.99/year for the ad-free Premium plan.*

Download the app now to get started.

*Live TV includes commercials and select shows have promotional interruptions. Downloaded content is accessible for earlier of 30 days from date of download or 48 hours from start of playback. Content availability subject to change. Please note use of the Paramount+ app is limited to United States. Paramount+ promotional offers for new subscribers only. Live TV subject to availability. Prices shown are in U.S. dollars. Other restrictions apply.

Your subscription will automatically renew after any applicable promotional period and your Google Play account will be charged the subscription price on a recurring basis until you cancel. You can cancel your subscription at any time through your Google Play account settings. If you cancel your subscription, the cancellation will go into effect at the end of your current subscription period, as applicable. You will have continued access to the Paramount+ Service for the remainder of your paid subscription period.

Please note: This app features Nielsen’s proprietary measurement software which will allow you to contribute to market research, like Nielsen’s TV Ratings. Please visit http://www.nielsen.com/digitalprivacy for more information.

Paramount+ Subscription Terms:
www.pplus.legal/subscription

ViacomCBS Privacy Policy:
https://www.viacomcbsprivacy.com/policy

Cookie Policy:
https://www.viacomcbsprivacy.com/cookies

Do Not Sell My Personal Information:
https://www.viacomcbsprivacy.com/donotsell\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9071472,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cbs.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.cbs.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.cbs.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.cbs.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.cbs.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"MISTPLAY: Play to earn rewards\",\n \"appId\": \"com.mistplay.mistplay\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.mistplay.mistplay\",\n \"icon\": \"https://play-lh.googleusercontent.com/g32lMQYLcgMY55HVyraex4rn5dL_fPr0M4lVK_mMk8E7baIb7Q-ln56XJZ6fNJLPnow\",\n \"developer\": {\n \"devId\": \"MISTPLAY\",\n \"url\": \"http://gplayapi.srik.me/api/developers/MISTPLAY\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Introducing Mistplay, the app that lets you earn gift cards while playing games ⚡️💰🎮

1️⃣ Discover new mobile games that are curated just for you.
2️⃣ As you play, you'll earn units.
3️⃣ Redeem your units for gift cards to Amazon, the Google Play Store, and more!

Our Story: The Best Kept Secret in Gaming

Since launching in 2016, we've already been downloaded over 20 million times and given out more than 9 million USD in rewards. Every game we feature is free to play. All you need to do is play your games and choose your rewards! So what are you waiting for?

Meet Mistplay:

🔥 Earn rewards while playing mobile games.
🎮 The more games you play, the more points you earn!
🎁 Redeem your points for awesome rewards.
🌟 Complete badges to earn even more units.
🎉 Introduce your friends to Mistplay and earn more together.
🚀 Keep your daily streak going for weekly unit bonuses!

Would you like to ask questions, suggest feedback, or recommend a new game? Our support team would be happy to help you out. Please contact us at bit.ly/MistplaySupport.

Stay up to date with all the latest news:

Facebook: https://www.facebook.com/mistplayapp
Twitter: https://twitter.com/mistplayapp
Instagram: https://www.instagram.com/mistplay
Blog: https://medium.com/mistplay
YouTube: https://www.youtube.com/channel/UCQ55Bap61Mo0ft4GC144bjQ\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9680562,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.mistplay.mistplay\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.mistplay.mistplay/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.mistplay.mistplay/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.mistplay.mistplay/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.mistplay.mistplay/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"BeReal. Your friends for real.\",\n \"appId\": \"com.bereal.ft\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.bereal.ft\",\n \"icon\": \"https://play-lh.googleusercontent.com/8Lu1K0dDM8hFB3wlkUgUvOOw9hc7NRwVijiEPqeXZhzz7t2Q3jktTZ_aqT3kofwurG4\",\n \"developer\": {\n \"devId\": \"BeReal\",\n \"url\": \"http://gplayapi.srik.me/api/developers/BeReal\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"BeReal is the simplest photo sharing app to share once a day your real life in photo with friends.

Everyday at a different time, everyone captures a photo within 2 minutes.

Capture and post in time to discover what your Friends are up to.


CAMERA
• The special BeReal camera is designed to take both a selfie and a frontal photo simultaneously.

DISCOVERY
• Share your BeReal publicly and discover what other people are doing around you.

CHALLENGES.
• Some days, the BeReal comes with a unique challenge.

COMMENTS
• Comment on your friend's BeReal and chat with all their friends.

REALMOJIS
• React on your friend's BeReal with a RealMoji, your own emojis representation.

MAP
• See where your friends are in the world when they post their BeReal.

MEMORIES
• Access your previous BeReal in an archive.

WIDGETMOJI
• See your friends right on your Home Screen when they react to your BeReal with a widget.

iMESSAGE REALMOJIS STICKERS
• React with your RealMojis as stickers in your iMessage chats.

/!\\\\ WARNING /!\\\\
• BeReal won't make you waste time.
• BeReal is life, Real life, and this life is without filters.
• BeReal will challenge your creativity.
• BeReal is your chance to show your friends who you really are, for once.
• BeReal can be addictive.
• BeReal might frustrate you.
• BeReal won't make you famous. If you want to become an influencer you can stay on TikTok and Instagram.
• BeReal doesn't care if you have millions of followers or if you're verified.
• BeReal may cause accidents, especially if you are riding bikes.
• BeReal is pronounced “BiRil”, not bereale, or Bèreol, it’s like B-Real from Cypress Hill.
• BeReal won’t let you cheat, you can try and if you manage to do so, come work with us.

Questions, ideas? We would love to hear what you think and we could even integrate some of your ideas on Be Real.\",\n \"scoreText\": \"4.0\",\n \"score\": 4.031983,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bereal.ft\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.bereal.ft/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.bereal.ft/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.bereal.ft/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.bereal.ft/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Rumble\",\n \"appId\": \"com.rumble.battles\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.rumble.battles\",\n \"icon\": \"https://play-lh.googleusercontent.com/JU0SMPV8hcaKd6vTClAS5zqJqSExOSV1koYBkmmyvvZVdxb9GKEIGtqwXHlVcvPF2w\",\n \"developer\": {\n \"devId\": \"Rumble Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Rumble%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Are you looking for a new video app? Are you looking for a place where you can grow followers faster, have a search and related videos that doesn't preference channels, ability monetize your videos, and watch your favorite creators? Rumble is the new home for everything video. We believe your time invested into Rumble, will greatly exceed the results of our competition.

Major creators are joining daily and hopefully you will be next to join the future of video!

Rumble Features:
- Livestreaming
- Channel creation
- Video hosting
- Smooth UI
- Video Monetization
- Licensing

Thank you for considering Rumble, the future of video!\",\n \"scoreText\": \"4.6\",\n \"score\": 4.566906,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.rumble.battles\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.rumble.battles/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.rumble.battles/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.rumble.battles/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.rumble.battles/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Chime – Mobile Banking\",\n \"appId\": \"com.onedebit.chime\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.onedebit.chime\",\n \"icon\": \"https://play-lh.googleusercontent.com/IihPs4IZsflvpscJVS14-ySG-BJH2B97Fv1nCEsr0e8YZXFxTiTSTesHz3UAF-bcaCvs\",\n \"developer\": {\n \"devId\": \"Chime\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Chime\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Chime is the banking app that has your back. Keep your money safe with security features, overdraft up to $200 fee-free*, and get paid early with direct deposit^, with no monthly fees‡.

Chime is a financial technology company, not a bank. Banking services provided by The Bancorp Bank or Stride Bank, N.A.; Members FDIC

TRUSTED BY MILLIONS
Stay in control of your money with instant transaction and daily balance alerts. Plus, enable two-factor authentication and block your card in a single tap.

OVERDRAFT UP TO $200*
We get it– when your balance is running low, the last thing you need is an overdraft fee. Eligible members on Chime can overdraft up to $200* on debit card purchases and ATM withdrawals fee-free.

SAY GOODBYE TO MONTHLY FEES‡
Your account shouldn’t cost you money. Chime has no monthly maintenance fees, minimum balance fees, or foreign transaction fees. Plus, access 60k+ fee-free ATMs at locations like Walgreens, 7-Eleven, CVS, and more.

GET PAID UP TO 2 DAYS EARLY
Get your paycheck up to two days early^ with direct deposit, earlier than you would with some traditional banks.

MEET CREDIT BUILDER, A NEW WAY TO BUILD CREDIT
Whether it’s for gas or groceries, use Credit Builder¹ to increase your FICO® Score by an average of 30 points² with regular on-time payments. No interest, no annual fees, no credit check to apply.

PAY ANYONE WITH NO TRANSFER FEES
Send money to friends, family, or roommates as fast as a text – with no transfer fees.
–––––
Banking services provided by The Bancorp Bank or Stride Bank, N.A., Members FDIC. The Chime Visa® Debit Card is issued by The Bancorp Bank or Stride Bank pursuant to a license from Visa U.S.A. Inc. The Chime Visa® Credit Builder Card is issued by Stride Bank pursuant to a license from Visa U.S.A. Inc. Debit card and Credit card may be used everywhere Visa credit cards are accepted.

*Chime SpotMe is an optional, no fee service that requires a single deposit of $200 or more in qualifying direct deposits to the Chime Checking Account each month. All qualifying members will be allowed to overdraw their account up to $20 on debit card purchases and cash withdrawals initially, but may be later eligible for a higher limit of up to $200 or more based on member's Chime Account history, direct deposit frequency and amount, spending activity and other risk-based factors. Your limit will be displayed to you within the Chime mobile app. You will receive notice of any changes to your limit. Your limit may change at any time, at Chime's discretion. Although there are no overdraft fees, there may be out-of-network or third party fees associated with ATM transactions. SpotMe won't cover non-debit card transactions, including ACH transfers, Pay Anyone transfers, or Chime Checkbook transactions. See Terms and Conditions.

‡Out-of-network ATM withdrawal fees may apply except at MoneyPass ATMs in a 7-Eleven, or any Allpoint or Visa Plus Alliance ATM.

^Early access to direct deposit funds depends on the timing of the submission of the payment file from the payer. We generally make these funds available on the day the payment file is received, which may be up to 2 days earlier than the scheduled payment date.

¹To be eligible to apply for Credit Builder, you need to have received a qualifying direct deposit of $200 or more to your Checking Account within 365 days of your Credit Builder application. See http://chime.com/applycb for details on qualifying direct deposit.

²Based on a representative study conducted by Experian®, members who made their first purchase with Credit Builder between June 2020 and October 2020 observed an average FICO® Score 8 increase of 30 points after approximately 8 months. On-time payment history can have a positive impact on your credit score. Late payment may negatively impact your credit score.

Chime received the highest 2021 Net Promoter Score among competitors in the industry according to Qualtrics®.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.629704,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.onedebit.chime\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.onedebit.chime/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.onedebit.chime/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.onedebit.chime/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.onedebit.chime/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Duolingo: language lessons\",\n \"appId\": \"com.duolingo\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.duolingo\",\n \"icon\": \"https://play-lh.googleusercontent.com/hSyebBlYwtE2aMjzSIHasUO9cQv9HgNAw9owy6ADO0szOKYO3rDk60r7jcyXu82Fbq1M\",\n \"developer\": {\n \"devId\": \"Duolingo\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Duolingo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn a new language with the world’s most-downloaded education app! Duolingo is the fun, free app for learning 40+ languages through quick, bite-sized lessons. Practice speaking, reading, listening, and writing to build your vocabulary and grammar skills.

Designed by language experts and loved by hundreds of millions of learners worldwide, Duolingo helps you prepare for real conversations in Spanish, French, Chinese, Italian, German, English, and more.

Whether you’re learning a language for travel, school, career, family and friends, or your brain health, you’ll love learning with Duolingo.

Why Duolingo?
Duolingo is fun and effective. Game-like lessons and fun characters help you build solid speaking, reading, listening, and writing skills.
Duolingo works. Designed by language experts, Duolingo has a science-based teaching methodology proven to foster long-term language retention.
Track your progress. Work toward your language learning goals with playful rewards and achievements when you make practicing a daily habit!
Join 300+ million learners. Stay motivated with competitive Leaderboards as you learn alongside our global community.
Every language course is free. Learn Spanish, French, German, Italian, Russian, Portuguese, Turkish, Dutch, Irish, Danish, Swedish, Ukrainian, Esperanto, Polish, Greek, Hungarian, Norwegian, Hebrew, Welsh, Arabic, Latin, Hawaiian, Scottish Gaelic, Vietnamese, Korean, Japanese, English, and even High Valyrian!

What the world is saying about Duolingo⭐️⭐️⭐️⭐️⭐️:

Editor's Choice and "Best of the Best” —Google Play

“Far and away the best language-learning app.” —The Wall Street Journal

“This free app and website is among the most effective language-learning methods I’ve tried… lessons come in the form of brief challenges — speaking, translating, answering multiple-choice questions — that keep me coming back for more.” —The New York Times

“Duolingo may hold the secret to the future of education.” — TIME Magazine

“...Duolingo is cheerful, lighthearted and fun…” — Forbes

If you like Duolingo, try Super Duolingo for 14 days free! Learn a language fast with no ads, and get fun perks like Unlimited Hearts and Monthly Streak Repair.

Send any feedback to android@duolingo.com

Use Duolingo on the Web at https://www.duolingo.com

Privacy Policy: https://www.duolingo.com/privacy\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6144214,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.duolingo\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.duolingo/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.duolingo/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.duolingo/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.duolingo/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ESPN Fantasy Sports\",\n \"appId\": \"com.espn.fantasy.lm.football\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.espn.fantasy.lm.football\",\n \"icon\": \"https://play-lh.googleusercontent.com/agdeEPKtsU_mFdAlmUkV_vbUtdf-1ldu_N0vS5lgJkDeTOHCCxKym3C1hs3VCvT-DFE\",\n \"developer\": {\n \"devId\": \"Disney\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Disney\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"ESPN Fantasy Football is back for another season in the #1 fantasy sports app, alongside fantasy basketball, hockey, baseball, and our uber-fun prediction game, Streak. All ESPN games are completely free to play.

- Create a fantasy football, basketball, baseball, or hockey league to play with friends or join an existing league to compete against other fans. You can play our standard game or customize the rules to your liking.
- Sign up, draft your fantasy team, edit your lineup, add players, and make trades.
- Get player rankings, projections, and analysis from the most trusted names in fantasy sports, including Matthew Berry.
- Follow your players all season long with live, real-time matchup and pro game scoring.
- Predict the winners from sports biggest matchups each day in Streak for a chance to win cash prizes and bragging rights. Test your sports knowledge against ESPN experts, friends, family, and other fans.
- Customize your teams with hundreds of exclusive, free team logos.
- Subscribe to alerts and get the latest videos and news for the players on your roster, right as news breaks.
- Subscribe to weekly wrap-up emails to track your fantasy performance all season long.

Live Streaming with your TV provider:
- ESPN, ESPN2, ESPN3, ESPNU, SEC Network, SEC Network Plus, ESPNews ESPN Deportes, and Longhorn Network are all available to stream live in the ESPN App. Access to live video is determined by your TV provider and package and, in some instances, your Internet service provider.
- Due to contractual limitations with certain content, especially play-by-play broadcasts, there are times when the schedule that's on-air won't match the schedule that's online. If you have specific schedule questions, please contact the station directly by visiting their website.

Terms of Use - https://disneytermsofuse.com/
Privacy Policy - http://www.disneyprivacycenter.com
ESPN+ Subscriber Agreement - https://es.pn/plus-terms

Before you download this app, please consider that it includes advertising, some of which may be targeted to your interests. You may choose to control targeted advertising within mobile applications by using your mobile device settings (for example, by re-setting your device's advertising identifier and/or opting out of interest based ads).

Please note: This app features Nielsen's proprietary measurement software which will allow you to contribute to market research, like Nielsen's TV Ratings. Please see www.nielsen.com/digitalprivacy for more information. You may also visit Settings in the app to opt out of Nielsen measurement.

- Your California Privacy Rights - https://privacy.thewaltdisneycompany.com/en/current-privacy-policy/your-california-privacy-rights/
- Do Not Sell My Information - https://privacy.thewaltdisneycompany.com/en/dnsmi\",\n \"scoreText\": \"4.2\",\n \"score\": 4.181015,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.espn.fantasy.lm.football\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.espn.fantasy.lm.football/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.espn.fantasy.lm.football/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.espn.fantasy.lm.football/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.espn.fantasy.lm.football/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Ticketmaster-Buy, Sell Tickets\",\n \"appId\": \"com.ticketmaster.mobile.android.na\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.ticketmaster.mobile.android.na\",\n \"icon\": \"https://play-lh.googleusercontent.com/KmWVboPY-BCCfiflJ-AYCPGBv86QLMsXsSpvQksC0DVR8ENV0lh-lwHnXrekpHwbQA\",\n \"developer\": {\n \"devId\": \"Ticketmaster L.L.C.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Ticketmaster%20L.L.C.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Ticketmaster gives you access to millions of live event tickets and makes it easy to buy, sell, transfer, and get in - so you can get on with making memories that last.

We are the Official Ticketing Partner of the NFL, NBA, NHL, and USTA. Add in our exclusive partnerships with thousands of venues, artists, bands, theater tours, and broadway shows and shopping with Ticketmaster gives you unparalleled access to the most memorable live events worldwide.

Ticket management at your fingertips. You’re always just a few clicks away from securing the perfect seats to the live events and shows you love.

BUY SIMPLY
- Search millions of events and get real-time updates as new listings go live.
- Use interactive 3-D venue maps and see your seat view before you buy.

CHANGE OF PLANS?
- List your tickets on our trusted resale marketplace and sell to other fans.
- Transfer your seats to friends and family for free.

PROTECT YOURSELF FROM SCALPERS
- Avoid forgeries “similar location” seats with Verified Tickets. The seats you buy the seats you’ll sit in and backed by our 100% guarantee.

YOUR PHONE IS YOUR TICKET
- Scan into your events with the app or upload your seats to Apple Wallet (mobile-entry events only).
- See all your event info in one convenient place.

NEVER MISS OUT ON AN EVENT
- Get alerts about your favorite events, artists, bands, and venues.

Download the Ticketmaster app and go live.

REACH OUT TO US
Website: www.ticketmaster.com
Twitter: www.twitter.com/ticketmaster
Instagram: www.instagram.com/ticketmaster
Facebook: www.facebook.com/ticketmaster\",\n \"scoreText\": \"3.6\",\n \"score\": 3.613284,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ticketmaster.mobile.android.na\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.ticketmaster.mobile.android.na/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.ticketmaster.mobile.android.na/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.ticketmaster.mobile.android.na/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.ticketmaster.mobile.android.na/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"eBay: The shopping marketplace\",\n \"appId\": \"com.ebay.mobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.ebay.mobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/31-mJUIynIfQBizOn-w1yWLKHBxVeRKA3gz348_E3K-TnuEaqCjn_-Fr9j0yQ6i0y5E\",\n \"developer\": {\n \"devId\": \"eBay Mobile\",\n \"url\": \"http://gplayapi.srik.me/api/developers/eBay%20Mobile\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Buy and sell the brands you love, from seasonal fashion to luxury handbags, rare sneakers, top tech, vintage watches, and the latest toys. Shop your favorite brands including Nike, adidas, Gucci, Playstation, Nintendo, Apple, and more.

New to eBay marketplace? Sign up now to discover the joys of buying and selling with eBay.

The eBay app
• Discover online shopping deals and receive sales alerts.
• Track your online shopping orders in real time.
• Quickly and safely speed through checkout.
• Make money by listing on the marketplace in minutes.

Discover hundreds of deals and sales
• We have deals and sales in top categories: tech, toys, fashion, watches, sneakers and more.
• Shop the brands you love for less: Nike, adidas, Gucci, Playstation, Nintendo, Apple, and more.

Authenticity Guarantee: Nike, adidas, Gucci and more
Our professional authentication gives you peace of mind from start to finish. Across watches, sneakers, and handbags, you can safely buy and sell with our Authenticity Guarantee — at no cost to you:
• Sneakers: Pick up authentic pairs from Nike, adidas, and more.
• Watches: Find vintage, rare, and new designs from Rolex, OMEGA, Breitling, and more.
• Handbags: Shop a variety of colors and styles across Louis Vuitton, Gucci, Prada, Yves Saint Laurent, and more.

Shopping Certified Refurbished: Buy phones, laptops and more
• Browse and buy phones, laptops, portable audio, game consoles, surveillance tools, and more.
• Shop smart and get phenomenal sales on premium brands including iRobot, KitchenAid, Bose, Samsung, and more, backed by a two-year warranty.
• All items are inspected and approved by the manufacturer to operate like-new PLUS all items include eBay’s Money Back Guarantee and hassle-free 30 day returns.

eBay Money Back Guarantee
Get the item you ordered or your money back — it’s that simple. Our eBay Money Back Guarantee applies to virtually everything on our site, and there's no extra fee for coverage. It's automatic and covers your purchase price plus original shipping on eligible purchases.

Your eBay. Your way.
Discover a range of useful features on eBay's app where you can find exactly what you want, at a price you'll love:
• Seamless payments: Buy with Google Pay, PayPal, PayPal Credit, credit card, and debit card for a quick and easy checkout.
• Dark Mode: Enhance your experience with our award-winning Dark Mode feature. Simply go to My eBay > Settings > Appearance > Dark Mode to turn on or off.
• Barcode Scanner: Scan the item to instantly find what you're looking for.
• Image search: Snap a photo with your phone or upload an image — we'll find it for you!

Make money on the eBay marketplace
List items speedily with smart features that help you make money:
• Barcode Scanner: Scan the barcode of the item you want to sell and instantly get the details (description, shipping, etc.) for your listing.
• Image Clean-up: Snap a picture (or use one you already have) and use the background-remover to make your listing stand out.
• Up and Running: eBay proudly supports small businesses — join a community of sellers and access powerful selling tools and insights.

So, whether you’re scoring a deal, or making some money for the new year — download now to enjoy the best buying and selling experience with the eBay app. From tech and toys, to fashion, sneakers and home, we have you covered.

Keep in touch
Thanks to all our loyal fans for your support and suggestions! Your feedback is important to us. Please contact us with any questions by tweeting @askebay or join the discussion at www.ebay.com/android.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6627073,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ebay.mobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.ebay.mobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.ebay.mobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.ebay.mobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.ebay.mobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Facebook Lite\",\n \"appId\": \"com.facebook.lite\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.facebook.lite\",\n \"icon\": \"https://play-lh.googleusercontent.com/5pZMqQYClc5McEjaISPkvhF8pDmlbLqraTMwk1eeqTlnUSjVxPCq-MItIrJPJGe7xW4\",\n \"developer\": {\n \"devId\": \"Meta Platforms, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Meta%20Platforms%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Keeping up with friends is faster and easier than ever with the Facebook Lite app! Use Facebook Lite as a friends app to connect and keep up with your social network. The Facebook Lite app is small, allowing you to save space on your phone and use Facebook in 2G conditions. Many of the classic features of Facebook are available on the app, such as sharing to a Timeline, liking photos, searching for people, and editing your profile and groups. Specific features include:

• Find friends and family
• Post status updates & use Facebook emoji to help relay what’s going on in your world
• Share photos and your favorite memes
• Get notified when friends like and comment on your posts
• Find local social events, RSVP, and make plans to meet up with friends
• Interact with your friends by adding your own comments or reactions to their Facebook posts
• Save photos by adding them to photo albums
• Follow people to get their latest news
• Look up local businesses to see reviews, operation hours, and pictures
• Buy and sell locally on Facebook Marketplace

The Facebook app does more than help you stay connected with your friends and interests. It's also your personal organizer for storing, saving and sharing photos. It's easy to share photos straight from your Android camera, and you have full control over your photos and privacy settings. You can choose when to keep individual photos private or even set up a secret photo album to control who sees it.

Facebook Lite also helps you keep up with the latest news and current events around the world. Subscribe to your favorite celebrities, brands, websites, artists, or sports teams to follow their News Feeds from the convenience of your Facebook Lite app!


Problems with downloading or installing the app? See https://www.facebook.com/help/fblite
Still need help? Please tell us more about the issue: https://www.facebook.com/help/contact/640732869364975
Facebook is only available to people aged 13 and over.
Terms of Service: http://m.facebook.com/terms.php\",\n \"scoreText\": \"4.0\",\n \"score\": 4.035373,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.lite\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.facebook.lite/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.facebook.lite/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.facebook.lite/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.facebook.lite/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Lyft\",\n \"appId\": \"me.lyft.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/me.lyft.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/ACQqLgO-aRSvB-t4TOPtJBjH-KdUA3BUpcrk1LQv5CPrxtL0JaQKeCL1AhygE4kHqg\",\n \"developer\": {\n \"devId\": \"Lyft, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Lyft%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Count on Lyft to take you where you need to go with safety first. Got an appointment? Need to pick up some groceries? We’ll match you with a driver, help you find the quickest bus route, or show you the nearest scooter — you’ll be on your way in minutes. If it gets you there, it’s on the app.

USING LYFT IS EASY
Choose your destination, find a ride in seconds, and pay directly in the app. It’s that simple.

YOUR WELL-BEING COMES FIRST
We want to make sure every ride is as comfortable as it can be so that you can sit back and relax. With guidance from public health officials, we’ve created health safety requirements to help protect everyone in the car.

LOOK OUT FOR ONE ANOTHER
All riders and drivers are required to agree to our Health Safety Commitment before using Lyft.

CHOOSE HOW YOU RIDE
With Lyft, you’ve got options. Choose from up to 9 different ways to go, all available right from your app.* Whether you’re looking for an affordable ride, the most direct route, or a way to treat yourself – we’ve got the mode to suit your needs and mood.

* Lyft ride types may vary by region. Check the app to see what is available in your city.

Prices vary based on market condition.

By downloading the app, you agree to allow Lyft to collect your device's language settings.\",\n \"scoreText\": \"3.9\",\n \"score\": 3.937846,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=me.lyft.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/me.lyft.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/me.lyft.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/me.lyft.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/me.lyft.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Pandora - Music & Podcasts\",\n \"appId\": \"com.pandora.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.pandora.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/jm0217jbZ0VJhGU7ecHHoi7MOcY7KMvxY5t1bIsc3KSVwLNbTwkwsfvtHvQkfabSmyNH\",\n \"developer\": {\n \"devId\": \"Pandora\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Pandora\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Pandora gives you a personalized listening experience that continually evolves with your tastes.

Create stations from your favorite songs, artists or genres, search or browse to find recommended stations for your mood or activity, and discover podcasts that speak to you. Download today and get instant access to your favorite artists and podcasts, while staying up to date on the most recent singles and releases. From rap and pop to rock and country, play your favorite artists and stay up to date on today’s top hits and releases. Start streaming all of the current global hits and enjoy your own personalized music experience.

Take Pandora with you wherever you go with Android Auto for your daily commute or your next road trip. Enjoy your own personalized music or podcast experience from anywhere on the world’s most powerful music discovery platform. The new voice mode lets you search, play, pause, skip adjust volume & thumb up music with a simple voice command. Start streaming your favorite artist, song, genre, or podcast instantly today for free in your car.

Enjoy everything Pandora has to offer right from the convenience of your wrist, with Google’s Wear OS. With a quick tap, you can control media playback such as play/pause, replay, skip, thumbs, and more. No phone necessary.

With Podcasts on Pandora, find your favorites and listen to personalized recommendations that actually make sense. Just search on your mobile phone or tablet and play to start listening, then tap + to add to your collection. Find something new by simply browse and tap recommended podcasts to find over 1,400 podcasts, including SiriusXM shows, on-demand whether you're on Pandora Premium, Plus or Radio.

Looking for more?

Meet Pandora Modes - The new way to customize your station experience. Choose from six different modes to switch up the kind of music you're hearing:
•My Station: The station experience you know and love.
•Crowd Faves: Hear the most 👍songs by other listeners.
•Deep Cuts: Hear less familiar songs from station artists.
•Discovery: Hear more artists who don't usually play on this station.
•Newly Released: Hear the newest releases from station artists.
•Artist Only: Hear songs from the station artist.

Pandora Premium™
Subscribe to enjoy personalized on-demand music and podcasts

• Search and play your favorite songs, podcasts, albums and playlists on-demand
• Create playlists, not worklists – on your own or powered by Pandora
• Download the music you want for offline listening
• Unlimited skips and replays
• Higher quality audio
• Listen with ad-free music

Pandora Plus™
Subscribe to enjoy personalized radio with ad-free music

• Unlimited personalized stations and podcasts
• Up to four stations for offline listening
• Unlimited skips and replays
• Higher quality audio
• Listen with ad-free music

Pandora Plus subscriptions are $4.99 per month. Pandora Premium subscriptions are $9.99 per month. You’ll be charged as a recurring transaction through your Google Play account. Pending trial eligibility, charges for Plus >($4.99/month) or Premium ($9.99/month) begin at the end of a free trial unless you cancel 24 hours prior to the end of the current subscription month. Any unused portion of a free Pandora Plus trial period will be forfeited if you upgrade to Pandora Premium. You can manage your subscription, cancel or turn off auto-renewal through Account Settings in your Google Play account. Pandora is available to US customers only.

Some advertising exclusions apply. Skips, replays and offline features may be limited by certain licensing restrictions. Pandora may use large amounts of data, and carrier data charges may apply. For best results, we recommend you connect your device to trusted Wi-Fi networks when available.

Terms and conditions:
www.pandora.com/legal
www.pandora.com/legal/subscription
www.pandora.com/privacy\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1634088,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.pandora.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.pandora.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.pandora.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.pandora.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.pandora.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Microsoft Authenticator\",\n \"appId\": \"com.azure.authenticator\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.azure.authenticator\",\n \"icon\": \"https://play-lh.googleusercontent.com/_1CV99jklLbXuun-6E7eCPR-sKKeZc602rhw_QHZz-qm7xrPdgWsJVc7NtFkkliI8No\",\n \"developer\": {\n \"devId\": \"Microsoft Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Microsoft%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Use Microsoft Authenticator for easy, secure sign-ins for all your online accounts using multi-factor authentication, passwordless, or password autofill. You also have additional account management options for your Microsoft personal, work or school accounts.

Getting started with multi-factor authentication

Multi factor authentication (MFA) or two factor authentication (2FA) provides a second layer of security. When logging in with multi-factor authentication, you’ll enter your password, and then you’ll be asked for an additional way to prove it’s really you. Either approve the notification sent to the Microsoft Authenticator, or enter the one-time password (OTP) generated by the app.\\u202fThe one-time passwords (OTP codes) have a 30 second timer counting down. This timer is so you never have to use the same time-based one-time password (TOTP) twice and you don’t have to remember the number. The one-time password (OTP) doesn’t require you to be connected to a network, and it won’t drain your battery. You can add multiple accounts to your app, including non-Microsoft accounts like Facebook, Amazon, Dropbox, Google, LinkedIn, GitHub, and more.

Getting started with passwordless

Use your phone, not your password, to log into your Microsoft account. Just enter your username, then approve the notification sent to your phone. Your fingerprint, face ID, or PIN will provide a second layer of security in this two-step verification process. After you’ve signed in with two factor authentication (2FA), you’ll have access to all your Microsoft products and services, such as Outlook, OneDrive, Office, and more.

Getting started with autofill

Microsoft Authenticator app can also autofill passwords for you. Sign-in on the Passwords tab inside the Authenticator app with your personal Microsoft account to start syncing passwords, including the passwords saved in Microsoft Edge. Make Microsoft Authenticator the default autofill provider and start autofilling passwords on apps and sites you visit on your mobile. Your passwords are protected with multi-factor authentication in the app. You will need to prove yourself with your fingerprint, face ID, or PIN to access and autofill passwords on your mobile. You can also import passwords from Google Chrome and other password managers.

Microsoft personal, work or school accounts

Sometimes your work or school might ask you to install the Microsoft Authenticator when accessing certain files, emails, or apps. You will need to register your device to your organization through the app and add your work or school account. Microsoft Authenticator also supports cert-based authentication by issuing a certificate on your device. This will let your organization know that the sign-in request is coming from a trusted device and help you seamlessly and securely access additional Microsoft apps and services without needing to log into each. Because Microsoft Authenticator supports single sign-on, once you have proven your identity once, you will not need to log in again to other Microsoft apps on your device.

Enroll in our beta program! Follow this link for an early preview of our latest updates: https://play.google.com/apps/testing/com.azure.authenticator\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6359887,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.azure.authenticator\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.azure.authenticator/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.azure.authenticator/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.azure.authenticator/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.azure.authenticator/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Pay: Save, Pay, Manage\",\n \"appId\": \"com.google.android.apps.nbu.paisa.user\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.paisa.user\",\n \"icon\": \"https://play-lh.googleusercontent.com/HArtbyi53u0jnqhnnxkQnMx9dHOERNcprZyKnInd2nrfM7Wd9ivMNTiz7IJP6-mSpwk\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Google Pay is a safe, simple, and helpful way to manage your money, giving you a clearer picture of your spending and savings:
- Pay at your favorite places
- Send and receive money instantly
- Earn rewards for everyday payments
- Understand your spending & improve your financial health

📱MAKE PAYMENTS FAST & EASY

Send & receive money
+ Transfer money easily to friends & family safely
+ Create a group to send and receive money for things like trips, dinner, bills, rent, and more. Google Pay will even help you do the math on who owes what.
+ Money transfers are instant and free with Google Pay balance. There are no fees if you use ACH to withdraw funds

Your shared payments stay with the group
+ When you send a payment with Google Pay, it’ll stay between you and your friends. Only the people involved in the transaction will see it.

Pay contactless
+ Pay with your phone anywhere contactless payments are accepted. Just unlock it, hold it to the reader, and go.

Connect with your favorite businesses and discover new ones
+ See businesses where you’ve used Google Pay when you open the app. Get quick access to your transactions, loyalty cards, and activate offers.

Discover nearby restaurants and order a meal
+ No need to toggle between different delivery apps. Explore places to eat, see menus, and order a meal for pickup or delivery with just a few taps.

Fuel your next adventure
+ Find nearby gas stations, see prices, and pay for fuel right from the app.

Take your phone for a ride
+ Pay contactless for transit rides where available. Just add a pass or set up a card, then use your phone to ride.

Shop online
+ Use Google Pay to checkout quickly and securely when you shop on websites and apps.

📈 ORGANIZE AND UNDERSTAND YOUR MONEY

Manage your money
+ See the total balance from all of your eligible accounts in one payment app, so you’ll always know exactly what’s coming in and what’s going out.
+ Get reminders about upcoming bill payments.

Stay on top of your spending
+ Get weekly summaries, track trends over time, and see what you’ve spent at every business.

All your transactions, all together
+ With your permission, you can see activity from accounts you've linked. Import receipts from Gmail and Google Photos and then simply search for any of them.

💵 SAVE AND GROW YOUR MONEY

Earn rewards you can use right away
+ Get cashback for things like paying and referring friends. Any money you receive will go straight to your balance so you can use it instantly.

Double down on cashback
+ Activate offers and get cashback for redeeming them – whether you use Google Pay or your plastic card. Better yet: get twice the rewards when you redeem with a cashback credit card.

Loyalty made easy
+ No more sign-up forms or punch cards. Easily enroll in loyalty and rewards programs from the app, then let Google Pay apply points and perks automatically.

🛡️ SAFER WITH GOOGLE

Authentication for every payment
+ You'll need to use your fingerprint, pattern, PIN, or face to verify your identity each time you open the app or make a payment — only you can pay or send money

Keeping your private information safe
+ Try out a more personalized experience to see the most relevant offers from stores and get recommendations for ways to save. Turn it on or off at any time.
+ Manage and control personalization and other privacy settings like location preferences and contact syncing from settings

Your cards encrypted
+ When you pay cashless with your Android phone, Google Pay shares a unique Virtual Account Number instead of your actual card number with the business, so your payment info stays safe

Still have questions? Head over to https://support.google.com/googlepay\",\n \"scoreText\": \"4.1\",\n \"score\": 4.066909,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.nbu.paisa.user\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.paisa.user/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.paisa.user/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.paisa.user/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.paisa.user/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"OfferUp: Buy. Sell. Letgo.\",\n \"appId\": \"com.offerup\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.offerup\",\n \"icon\": \"https://play-lh.googleusercontent.com/l_81q9c_BqSJX58fQ-hqWQO9LmMqcuIFW2leB9PtUyu7QY1ngt3gzW0qTos2vBMvpQ\",\n \"developer\": {\n \"devId\": \"OfferUp Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/OfferUp%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Buy. Sell. Letgo. - OfferUp and Letgo are now one big mobile marketplace.

Buy, sell and shop deals on thousands of unique items nearby! So whether you want to make some extra money by selling your used furniture or want to do some clothes shopping the choice is yours with OfferUp.

OfferUp makes it easy to find great deals on the things you want and make money on the things you want to sell. Ditch the Classified Ads and garage sales -- this is the best way to buy and sell in your community or neighborhood with a mobile marketplace you can trust.

Cars, clothes, shoes, vintage fashion, and more! Here’s how shopping and selling with OfferUp works:

• Buy or sell anything; easily offer up your items for sale in 30 seconds.
• Find great deals and discounts on clothes, shoes, furniture, vintage fashion, cell phones, electronics, baby & kids items, sports equipment, used cars, home goods and more.
• Use reputation features like ratings and profiles to see who you’re dealing with and build trust.
• Shop local items for sale with thousands of new postings daily.
• Message buyers and sellers securely from within the app.
• Build your reputation with your unique seller profile page.
• Browse and shop items by image and sort by category or location.
• Join millions of people using OfferUp across the country.
• Skip the garage sale! OfferUp is the simplest way to buy and sell locally.

Fun facts about shopping and selling with OfferUp:

1. With OfferUp you can easily sell anything like clothes and shoes, used cars, electronics, vintage fashion, and furniture.
2. OfferUp shows you what’s selling nearby in your local community.
3. Communication between buyers & sellers happens through the app via secure messaging.
4. OfferUp is better than a garage sale; you can do your shopping right on your phone or tablet.

Be part of the community:

We’re making local shopping and selling an experience that everyone can try and trust. The community at the heart of our marketplace is what makes that possible. When you join OfferUp, you’re joining millions of people helping each other make money and save money around the nation -- and right in the neighborhood.

From shoes to cars, vintage fashion to furniture - unearth unique items that you can’t find anywhere else with OfferUp. Download OfferUp today and enjoy the mobile marketplace with plenty of hidden gems just waiting to be discovered.

The two leading mobile marketplaces in the U.S., OfferUp and Letgo, are joining forces to create a new powerhouse. OfferUp acquired Letgo on July 1, 2020.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3417053,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.offerup\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.offerup/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.offerup/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.offerup/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.offerup/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Alibaba.com - B2B marketplace\",\n \"appId\": \"com.alibaba.intl.android.apps.poseidon\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.alibaba.intl.android.apps.poseidon\",\n \"icon\": \"https://play-lh.googleusercontent.com/D09AsmYSxDpMWRSXbu54j2R_8sR-1OgbV2DXSI9_HIuY2IMZ8b8JgscWol6mikknaks\",\n \"developer\": {\n \"devId\": \"Alibaba Mobile\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Alibaba%20Mobile\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"What is Alibaba.com?
Alibaba.com is one of the world’s leading B2B ecommerce marketplaces. Our app allows you to source products from global suppliers, all from the convenience of your mobile device.

Purchase with confidence
Our Trade Assurance service protects your orders and payments on the platform, letting you purchase securely and conveniently with extended support.

Customizable products
Meet suppliers with years of customization and order fulfillment experience for sellers on Amazon, eBay, Wish, Etsy, Mercari, Lazada, and more.

Easy sourcing
Discover millions of ready-to-ship products in every industry category. Tell suppliers what you need and get quotes quickly with Request for Quotation services.

Fast shipping
Alibaba.com partners with major freight forwarders to provide land, sea, and air shipping solutions with on-time delivery services, end-to-end tracking, and competitive prices.

Livestreams and factory tours
Interact with manufacturers in real-time via product demos and tours of manufacturing facilities, providing insight and oversight on how your products are made.

Popular categories and trade shows
Source a wide range of popular items – from trending consumer goods to raw materials – and join our annual trade shows for niche product highlights and discounts.

Quality control
Choose Alibaba.com Production Monitoring and Inspection Services to reduce production delay and quality risks.

Discounts and promotions
Unlock new discounts and promotions from featured manufacturers and suppliers.

Stay updated
Use the Alibaba.com app to stay up to date on new products and promotions from your favorite suppliers.

Language and currency support
Alibaba.com supports 16 languages and 140 local currencies. Use our real-time translator to communicate with sellers in your mother tongue.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4808874,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.alibaba.intl.android.apps.poseidon\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.alibaba.intl.android.apps.poseidon/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.alibaba.intl.android.apps.poseidon/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.alibaba.intl.android.apps.poseidon/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.alibaba.intl.android.apps.poseidon/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ESPN\",\n \"appId\": \"com.espn.score_center\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.espn.score_center\",\n \"icon\": \"https://play-lh.googleusercontent.com/6Jaqkn0Ok9ycbZ0TdDTZ9OAaNfQ3v0J8ftP4QQG-MHnUGIej7-5nLBFTREa0i9EgjHM\",\n \"developer\": {\n \"devId\": \"Disney\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Disney\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Watch thousands of live events and shows from the ESPN networks plus get scores, on-demand news, highlights, and expert analysis. Subscribe to the ESPN+ streaming service for live sports, exclusive originals, premium articles, fantasy tools, and more.

Watch on ESPN:
• NFL (Monday Night Football) • NBA • MLB • College Sports (football, basketball, baseball, softball, and more) • Golf (The Masters) • Soccer (UEFA Euro and MLS) • Tennis (Wimbledon, US Open, Australian Open) • eSports • ESPN Shows (SportsCenter, PTI, First Take, Sportsnation, NBA: The Jump, and more) •

ESPN+ Subscribers:
Stream exclusive live sports and ESPN+ Originals without cable--all in HD.

Sign up for ESPN+ and get access to the streaming service that delivers live sports from the best leagues and teams in the world. Get live events from the UFC, MLB, PGA TOUR LIVE, NHL, LaLiga and Bundesliga, college football, basketball, and more. Enjoy the complete 30 for 30 library and exclusive ESPN+ Originals from the biggest names in sports including Tom Brady, Derek Jeter, Peyton Manning, Dana White, Abby Wambach, and more all inside the ESPN app.

Highlights and scores from what you care about. From news about your favorite sports or team playing right now, the home tab has you covered. Fast access to scores for your favorite teams and leagues and the top games of the day in the scores tab. Also, subscribe to your favorite ESPN Podcasts or listen live to ESPN Radio.

ESPN, ESPN2, ESPN3, ESPNU, SECN, and more are all available to stream live in the ESPN App. Access to live video is determined by your TV provider and package and, in some instances, your Internet service provider.

Due to contractual limitations with certain content, especially play-by-play broadcasts, there are times when the schedule that's on-air won't match the schedule that's online. If you have specific schedule questions, please contact the station directly by visiting their website.

Terms of Use - https://disneytermsofuse.com/
Privacy Policy - http://www.disneyprivacycenter.com
ESPN+ Subscriber Agreement - https://es.pn/plus-terms

Your California Privacy Rights - https://privacy.thewaltdisneycompany.com/en/current-privacy-policy/your-california-privacy-rights/
Do Not Sell My Information - https://privacy.thewaltdisneycompany.com/en/dnsmi

Before you download this app, please consider that it includes advertising, some of which may be targeted to your interests. You may choose to control targeted advertising within mobile applications by using your mobile device settings (for example, by re-setting your device's advertising identifier and/or opting out of interest based ads).

Please note: This app features Nielsen's proprietary measurement software which will allow you to contribute to market research, like Nielsen's TV Ratings. Please see www.nielsen.com/digitalprivacy for more information. You may also visit Settings in the app to opt out of Nielsen measurement.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.06742,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.espn.score_center\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.espn.score_center/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.espn.score_center/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.espn.score_center/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.espn.score_center/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ViX: Cine y TV en Español\",\n \"appId\": \"com.univision.prendetv\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.univision.prendetv\",\n \"icon\": \"https://play-lh.googleusercontent.com/s2G05IFOkSB2E6w_lBAgVOJT8rYVSIX7cT5dRR7HjWhUM0smh606nQ3uqWM8sLPk7BI\",\n \"developer\": {\n \"devId\": \"TelevisaUnivision Interactive, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/TelevisaUnivision%20Interactive%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"ViX: El servicio de streaming en español más grande del mundo.

Una app con dos experiencias: ViX y ViX+. Disfruta de más de 100 canales en vivo y on-demand, series y películas originales, estreno de cine todas las semanas, deportes premium y noticias las 24 horas en todos tus dispositivos favoritos.

En ViX te ofrecemos más de 40 mil horas de contenido en español 100% gratis. ¡Sí, es gratis! Entretenimiento sin límites, en vivo y on-demand.

• Disfruta de tus novelas favoritas desde el principio con episodios completos como Teresa, Marimar, La Rosa de Guadalupe y María del Barrio
• Tus comedias clásicas que te hacen reír a carcajadas como Nosotros los Guapos, La Familia P. Luche, 40 y 20 y Vecinos
• Dramas, acción, reality tv y documentales
• Cine de Hollywood
• Lo mejor del fútbol
• Noticias las 24 horas del día
• Y tele para los pequeños de la familia como Rosita Fresita y Cocomelon
• Siempre GRATIS. No necesitas tarjeta de crédito o suscripción
• 100% legal

Y ahora llegó ViX+ donde puedes vivir ¡una experiencia PREMIUM!. Mucho más de lo que más te gusta.

• Las mejores series originales producidas en tu idioma como María Félix, La Mujer del Diablo y María Alta
• Espera estrenos de películas en exclusiva todas las semanas como Mirreyes contra Godínez 2 y Enfermo Amor
• Los deportes en vivo que quieres ver como la Liga MX y los clásicos más aclamados de Latinoamérica.
• El hogar de la UEFA Champions League y de los mejores comentaristas
• Comedias, acción y drama con el mejor talento latino
• Más novelas premium que en cualquier otro servicio de streaming
• Prueba ViX+ GRATIS por 7 días. ¡Suscríbete ya!
• Cancela cuando quieras

*Algunos contenidos solo aparecerán en ciertas regiones o países.

ViX y ViX+: Nuestro streaming en español ¡Una celebración con los tuyos!\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2449903,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.univision.prendetv\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.univision.prendetv/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.univision.prendetv/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.univision.prendetv/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.univision.prendetv/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Waze Navigation & Live Traffic\",\n \"appId\": \"com.waze\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.waze\",\n \"icon\": \"https://play-lh.googleusercontent.com/r7XL36PVNtnidqy6ikRiW1AHEIsjhePrZ8W5M4cNTQy5ViF3-lIDY47hpvxc84kJ7lw\",\n \"developer\": {\n \"devId\": \"Waze\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Waze\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Always know what’s happening on the road with Waze. Even if you know the way, Waze tells you about traffic, construction, police, crashes, and more in real-time. If traffic is bad on your route, Waze will change it to save you time.

Why Waze?
◦ See what’s happening - Alerts about traffic, police, hazards and more on your drive
◦ Speedometer - Get an alert when you reach the speed limit to help you avoid tickets & drive safer.
◦ Get there faster - Instant routing changes to avoid traffic and save you time
◦ Toll costs - Waze keeps you in-the-know about toll charges on your route.
◦ Know when you’ll arrive - Your ETA is based on live traffic data
◦ Pay less for gas - Find the cheapest gas along your route
◦ Play music & more - Listen to your favorite apps for music, podcasts & more right from Waze
◦ Drive with Android Auto - Use Waze on your car’s display
◦ Always find the way - Choose from a variety of voices to guide you while you drive

Be prepared, drive with Waze!

Waze directions aren’t meant for emergency or oversized vehicles.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.384066,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.waze\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.waze/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.waze/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.waze/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.waze/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"1.1.1.1: Faster & Safer Internet\",\n \"appId\": \"com.cloudflare.onedotonedotonedotone\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.cloudflare.onedotonedotonedotone\",\n \"icon\": \"https://play-lh.googleusercontent.com/39xbI_gFcmGEIl6JEAGhJQKv8GBjR_RFyJ6qhrFfA9CUOKZU2clSs7uo81e30zPGtg\",\n \"developer\": {\n \"devId\": \"Cloudflare, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Cloudflare%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"✌️✌️1.1.1.1 w/ WARP – the free app that makes your Internet more private – ✌️✌️

1.1.1.1 w/ WARP makes your Internet more private and safer. No one should be able to snoop 🔍 on what you do on the Internet. We’ve created 1.1.1.1 so that you can connect to the Internet securely anytime, anywhere.


A better way to connect 🔑

1.1.1.1 with WARP replaces the connection between your phone and the Internet with a modern, optimized, protocol.


Greater privacy 🔒

1.1.1.1 with WARP prevents anyone from snooping on you by encrypting more of the traffic leaving your phone. We believe privacy is a right. We won't sell your data.


Better security 🛑

1.1.1.1 with WARP protects your phone from security threats like malware, phishing, crypto mining and other security threats. Enable 1.1.1.1 for Families option from the DNS settings inside the app.


Easy to use ✌️

One-touch setup to make your Internet more safe and private. Install it today, get a more private Internet, it’s that simple.


The only way to get WARP+ 🚀

We test thousands of paths over the Internet every second to find which have the best performance. Skip right past Internet traffic jams using the same technology that we use to make thousands of websites 30% faster (on average).

---------------------

Subscription Information for WARP+

• 1.1.1.1 with WARP is free, but WARP+ is a paid feature which can be enabled at any time.
• Subscribe on a monthly basis to receive unlimited WARP+ data for the duration of the subscription.
• Your subscription will automatically renew for the same package length at the same price until you cancel in settings in the Google Play Store at least 24 hours prior to the end of the current period.
• Any unused portion of a free trial period and/or WARP+ data transfer credits, if offered, will be forfeited when you purchase a subscription, where applicable.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.155017,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cloudflare.onedotonedotonedotone\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.cloudflare.onedotonedotonedotone/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.cloudflare.onedotonedotonedotone/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.cloudflare.onedotonedotonedotone/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.cloudflare.onedotonedotonedotone/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Capital One Mobile\",\n \"appId\": \"com.konylabs.capitalone\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.konylabs.capitalone\",\n \"icon\": \"https://play-lh.googleusercontent.com/GhAZTgji_F_YJ_TmisXH7J0PgIOYNy4vLPULklCV3Ua6cV3epNZki5DxsAe-KZB7XA\",\n \"developer\": {\n \"devId\": \"Capital One Services, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Capital%20One%20Services%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"What’s on the Capital One Mobile app? All of your accounts, and so much more.

Whether you’re out in the world or feeling right at home, you can manage your money with ease:
• View balances and export statements
• Pay bills and take care of loans
• Check in on your credit with CreditWise
• Activate a credit or debit card when you need it
• Redeem rewards on the go
• Send and receive money with friends and family using Zelle®

With the Capital One Mobile app, you can ...
• Stay informed when you enable alerts and purchase notifications
• See everything that happens on your card with detailed transactions
• Instantly lock your credit or debit card from anywhere
• Get answers from Eno, your Capital One assistant

Download the app for better banking with Capital One.


Internet access is needed to use the mobile app. Check with your Internet service provider for details of specific fees and charges. Service outages may occur. Capital One customers are responsible for regularly checking their account statements. Push, email, and SMS alerts and notifications, including purchase notifications, must be enabled to be received. CreditWise monitoring and alerts may not be available if the information you enter at enrollment does not match the information in your file at one or more consumer reporting agencies or you do not have a file at one or more consumer reporting agencies. Features may not be available to all customers. Actual experiences may differ from those depicted. Additional terms and limitations apply.

© 2022 Capital One Bank (USA), N.A., and Capital One, N.A. Members FDIC. Zelle and the Zelle related marks are wholly owned by Early Warning Services, LLC and are used herein under license. To read about the Terms of your download, check out the End User License Agreement. https://www.capitalone.com/digital/mobile/android-eula/\",\n \"scoreText\": \"4.6\",\n \"score\": 4.608212,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.konylabs.capitalone\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.konylabs.capitalone/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.konylabs.capitalone/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.konylabs.capitalone/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.konylabs.capitalone/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"AliExpress\",\n \"appId\": \"com.alibaba.aliexpresshd\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.alibaba.aliexpresshd\",\n \"icon\": \"https://play-lh.googleusercontent.com/Y1f8qQ1mA14MytrPvl2w0pqnfOnSvQmnCoTinrtNfH6RNkTPrSYywswlL6--GY8iu6A\",\n \"developer\": {\n \"devId\": \"Alibaba Mobile\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Alibaba%20Mobile\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Maximum deals. Maximum fun. Shop our biggest sale of the year!
Download AliExpress for unbeatable deals🌟, millions of quality items📱, exciting new games🎮& surprising giveaways🎁!

😉What is AliExpress?
AliExpress is the go-to online shopping app to find everything you need at your fingertips!
• Great value - Competitive prices on over 100 million quality items.
• Worldwide shopping - Shipping to over 200 countries and regions, and app in 18 languages.
• Safe & secure - Popular payment methods, 24/7 Help Center and Buyer Protection policy

🤑SPEND & SAVE
Save US $3 for every $30 spent. Applicable to certain items.

🎁NEW USER BENEFITS
Choose your signup gift: Get your first item for US $0.01 or up to $5 coupon.

🚚FAST DELIVERY
Enjoy 3-10 Workday Delivery on select items.

⚡FLASH DEALS
Grab limited-time deals before time runs out.

👾INTERACTIVE GAME
Play Money Hop for a chance to win coins and coupons.

🏅TOP BRANDS
Discover deals on top brands you'll love.

🏆TOP RANKINGS
Explore top-ranked items based on number of orders, views, adds to cart and more.

👀LIVE & FEED
Get shopping inspiration by watching LIVE shows and browsing the Feed channel.

📨LEAVE US A NOTE
Liked the AliExpress experience?Tell us what you think - we'd love hear from you!
If you noticed any bugs or would like to request a feature, drop us a note in the app by tapping 'Account' then 'App Suggestion '.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4743743,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.alibaba.aliexpresshd\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.alibaba.aliexpresshd/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.alibaba.aliexpresshd/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.alibaba.aliexpresshd/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.alibaba.aliexpresshd/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Translate\",\n \"appId\": \"com.google.android.apps.translate\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.translate\",\n \"icon\": \"https://play-lh.googleusercontent.com/ZrNeuKthBirZN7rrXPN1JmUbaG8ICy3kZSHt-WgSnREsJzo2txzCzjIoChlevMIQEA\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"• Text translation: Translate between 108 languages by typing
• Tap to Translate: Copy text in any app and tap the Google Translate icon to translate (all languages)
• Offline: Translate with no internet connection (59 languages)
• Instant camera translation: Translate text in images instantly by just pointing your camera (94 languages)
• Photos: Take or import photos for higher quality translations (90 languages)
• Conversations: Translate bilingual conversations on the fly (70 languages)
• Handwriting: Draw text characters instead of typing (96 languages)
• Phrasebook: Star and save translated words and phrases for future reference (all languages)
• Cross-device syncing: Login to sync phrasebook between app and desktop
• Transcribe: Continuously translate someone speaking a different language in near real-time (8 languages)

Translations between the following languages are supported:
Afrikaans, Albanian, Amharic, Arabic, Armenian, Azerbaijani, Basque, Belarusian, Bengali, Bosnian, Bulgarian, Catalan, Cebuano, Chichewa, Chinese (Simplified), Chinese (Traditional), Corsican, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Filipino, Finnish, French, Frisian, Galician, Georgian, German, Greek, Gujarati, Haitian Creole, Hausa, Hawaiian, Hebrew, Hindi, Hmong, Hungarian, Icelandic, Igbo, Indonesian, Irish, Italian, Japanese, Javanese, Kannada, Kazakh, Khmer, Kinyarwanda, Korean, Kurdish (Kurmanji), Kyrgyz, Lao, Latin, Latvian, Lithuanian, Luxembourgish, Macedonian, Malagasy, Malay, Malayalam, Maltese, Maori, Marathi, Mongolian, Myanmar (Burmese), Nepali, Norwegian, Odia (Oriya), Pashto, Persian, Polish, Portuguese, Punjabi, Romanian, Russian, Samoan, Scots Gaelic, Serbian, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenian, Somali, Spanish, Sundanese, Swahili, Swedish, Tajik, Tamil, Tatar, Telugu, Thai, Turkish, Turkmen, Ukrainian, Urdu, Uyghur, Uzbek, Vietnamese, Welsh, Xhosa, Yiddish, Yoruba, Zulu

Permissions Notice
Google Translate may ask for permission to access the following features:
• Microphone for speech translation
• Camera for translating text via the camera
• SMS for translating text messages
• External storage for downloading offline translation data
• Accounts and credentials for signing-in and syncing across devices\",\n \"scoreText\": \"4.4\",\n \"score\": 4.376005,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.translate\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.translate/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.translate/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.translate/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.translate/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Phone Cleaner\",\n \"appId\": \"com.bingo.cooler.phonecleaner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.bingo.cooler.phonecleaner\",\n \"icon\": \"https://play-lh.googleusercontent.com/wPczEXiKJdJK4FUQTT4qWZiin_gY5snY88n_dYDKa5-qu1Hgfb3T3m8XV0xtRlDzrSg\",\n \"developer\": {\n \"devId\": \"Mini tool\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Mini%20tool\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Keep your phone in top shape from now on!
This might be the best phone cleaner you've ever used. It can speed up the phone, save power, and cool down easily.

Key Features:

Junk Clean:
Designed for low storage space, don't let junk fill your storage space and slowly slow down your device
Boost:
Focus on optimizing the speed of your phone. Use memory and fragmentation methods to solve stuttering problems.
CPU cooler:
It can effectively reduce the CPU temperature of mobile phones, then you are no longer hot in the game!

Power saving:
Precise process optimization helps you hibernate useless processes and save battery power on your phone!

PhoneCleaner promises to provide you with the best products and technologies to solve your cleaning problems.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1512194,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bingo.cooler.phonecleaner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.bingo.cooler.phonecleaner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.bingo.cooler.phonecleaner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.bingo.cooler.phonecleaner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.bingo.cooler.phonecleaner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"DuckDuckGo Privacy Browser\",\n \"appId\": \"com.duckduckgo.mobile.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.duckduckgo.mobile.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/vvjvZn0l16nn8j1KfCAbHlBn7wm6la_55pfxGOW9Wg0ut6C51wKVb3DWJTqSJc-eCnA\",\n \"developer\": {\n \"devId\": \"DuckDuckGo\",\n \"url\": \"http://gplayapi.srik.me/api/developers/DuckDuckGo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Tired of being tracked online? We can help.

DuckDuckGo is the all-in-one privacy app that helps protect your online activities. With one download you get a new everyday browser that offers seamless protections from most third-party trackers while you search and browse, and access to tracking protection when receiving email and using other apps on your device. With DuckDuckGo, privacy can be your default.

Search Privately — DuckDuckGo Private Search comes built-in so you can search the web without being tracked.

Block Tracking Cookies — prevent most 3rd-party cookies from tracking you as you browse from site to site.

Escape Website Trackers Before They Load —We automatically stop most hidden trackers (3rd-party scripts) from loading, which prevents companies from collecting and using any personal data from these trackers. Our cutting-edge tracker blocking technology – called 3rd-Party Tracker Loading Protection – goes above and beyond what you get in most popular browsers by default.

Automatically Enforce Encryption — Smarter Encryption forces many sites you visit in DuckDuckGo to use an encrypted (HTTPS) connection where available, protecting your data from prying eyes.

Block Email Trackers (Beta) — 70% of emails track you as soon as you open them. Enabling Email Protection is the easy way to block most email trackers and hide your address without switching services.

Protect Your Privacy in Other Apps (Beta) — Block most hidden app trackers in other apps day or night and prevent third-party companies from invading your privacy with App Tracking Protection. See notes and links below for more information. Join the private waitlist for the free beta version through the app settings menu.

The DuckDuckGo app has the browsing features you expect, like tabs and bookmarks, plus privacy controls you’ll love. Taking control of your privacy doesn't have to mean making tradeoffs.

Tap Fire Button, Burn Data — Clear your tabs and browsing data with one tap of the Fire Button.

Signal Your Privacy Preference with GPC — Built into the app, Global Privacy Control (GPC) intends to help you express your opt-out rights automatically by telling websites not to sell or share your personal information. Whether it can be used to enforce your legal rights (for example, current or future CCPA, GDPR requirements) depends on the laws in your jurisdiction.

Note about our 3rd-Party Tracker Loading Protection following DuckDuckGo ad clicks:
Our 3rd-Party Tracker Protection goes above and beyond what you get in most popular browsers by default, but we’re constantly working to make it more comprehensive. Currently, if an advertiser wants to detect conversions on their own website for our private DuckDuckGo search ads, our 3rd-Party Tracker Loading Protection will not stop bat.bing.com requests from loading on the advertiser’s website following DuckDuckGo ad clicks, but those requests are stopped in all other contexts. This is because DuckDuckGo private search advertising is in partnership with Microsoft. As part of that partnership, viewing ads on DuckDuckGo is anonymous and Microsoft has committed to not profile our users’ ad clicks.

Read more about this and our Tracking Protections at https://help.duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/

You don't need to wait to take back your privacy. Join the millions of people using DuckDuckGo and protect many of your everyday online activities with one app. It's privacy, simplified. \\u2028

About Us: https://duckduckgo.com/about
How It Works: https://duckduckgo.com/app
Privacy Newsletter: https://duckduckgo.com/newsletter
Privacy Policy: https://duckduckgo.com/privacy
Open Source: https://github.com/duckduckgo/android\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6711116,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.duckduckgo.mobile.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.duckduckgo.mobile.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.duckduckgo.mobile.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.duckduckgo.mobile.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.duckduckgo.mobile.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouTube Kids\",\n \"appId\": \"com.google.android.apps.youtube.kids\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.kids\",\n \"icon\": \"https://play-lh.googleusercontent.com/S4wylkvt2jz16hnG9IG0pAZosbB82nWWy8P-rQkb54uH-SCVd5L2j7z7x1Vz5pZvIRc\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"A video app made just for kids
YouTube Kids was created to give kids a more contained environment filled with family-friendly videos on all different topics, igniting your kids’ inner creativity and playfulness. Parents and caregivers can guide the journey as your kids discover new and exciting interests along the way. Learn more at youtube.com/kids

A safer online experience for kids
We work hard to keep the videos on YouTube Kids family-friendly and use a mix of automated filters built by our engineering teams, human review, and feedback from parents to protect our youngest users online. But no system is perfect and inappropriate videos can slip through, so we’re constantly working to improve our safeguards and offer more features to help parents create the right experience for their families.

Customize your child’s experience with Parental Controls
Limit screen time:
Set a time limit for how long your kids can watch and help encourage their transition from watching to doing.
Keep up with what they watch: Simply check the watch it again page and you’ll always know what they’ve watched and the newest interests they’re exploring.
Blocking: Don’t like a video? Block the video or whole channel, and never see it again.
Flagging: You can always alert us to inappropriate content by flagging a video for review. Flagged videos are reviewed 24 hours a day, seven days a week.

Create individual experiences as unique as your kids
Create up to eight kid profiles, each with their own viewing preferences, video recommendations, and settings. Choose from “Approved Content Only” mode or select an age category that fits your child, “Preschool”, “Younger”, or “Older”.

Select the “Approved Content Only” mode if you want to handpick the videos, channels and/or collections that you’ve approved your child to watch. In this mode, kids won’t be able to search for videos. The “Preschool” Mode designed for kids 4 and under curates videos that promote creativity, playfulness, learning, and exploration. The “Younger” Mode allows kids 5-8 to explore their interests in a wide variety of topics including songs, cartoons, and crafts. While our “Older” Mode gives kids 9 and up the chance to search and explore additional content such as popular music and gaming videos for kids.

All kinds of videos for all kinds of kids
Our library is filled with family-friendly videos on all different topics, igniting your kids’ inner creativity and playfulness. It’s everything from their favorite shows and music to learning how to build a model volcano (or make slime ;-), and everything in between.

Other important information:
Parental setup is needed to ensure the best experience possible for your kid.
Your kid may also see videos with commercial content from YouTube creators that are not paid ads.The Privacy Notice for Google Accounts managed with Family Link describes our privacy practices when your kid uses YouTube Kids with their Google Account. When your kid uses YouTube Kids without signing into their Google Account, the YouTube Kids Privacy Notice applies.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3533897,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.youtube.kids\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.kids/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.kids/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.kids/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.kids/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Shop: All your favorite brands\",\n \"appId\": \"com.shopify.arrive\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.shopify.arrive\",\n \"icon\": \"https://play-lh.googleusercontent.com/R9aVDHOYmDSxqJINTa-HFSurXTV3lDm4Nv7Rj7h1XGvGfjLry7-yblAYRjH-MTK9LYI\",\n \"developer\": {\n \"devId\": \"Shopify Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Shopify%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"LET’S GO SHOPPING
- Shop the latest trends and stay connected to your favorite brands, all in one - place.
- Turn on push-notifications so you never miss a sale, restock, or order update.
- Browse collections that spotlight the brands and communities you care about.
- Get personalized recommendations for exciting new products and brands.
- Experience new ways to shop from the brands you love like digital gifting, and shoppable content.

ONE-TAP CHECKOUT—LOTSA PERKS
- Keep your billing info secure with Shop Pay for faster one-tap checkouts.
- Buy now, pay later with flexible payment options that let you get what you want, when you want it.*
- Get carbon-neutral deliveries at no extra cost whenever you check out with Shop Pay.

AUTOMAGIC PACKAGE TRACKING
- Track all your online orders in one app.
- Know when your package ships and when it’s on your doorstep with real time notifications.

---

CONTACT

Have a question or just want to say hello? Contact us at help@shop.app or follow @shop on Twitter and Instagram.

Shop secure and worry free
Our servers meet strict PCI compliance standards for vaulting credit card info.

Powered by Shopify
Shop was created by the commerce platform trusted by millions of businesses worldwide.

*Available only in the US. Payment options are offered by Affirm and are subject to an eligibility check. Not available in New Mexico. CA residents: Loans by Affirm Loan Services, LLC are made or arranged pursuant to a California Finance Lender license.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.783691,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.shopify.arrive\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.shopify.arrive/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.shopify.arrive/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.shopify.arrive/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.shopify.arrive/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Cast for Chromecast & TV Cast\",\n \"appId\": \"com.casttv.castforchromecast.screencast\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.casttv.castforchromecast.screencast\",\n \"icon\": \"https://play-lh.googleusercontent.com/6enTpXOdL4iDqOdZhaSvFsCVIFi9XCzi1fsVBn4wR8xi8xYEm66iiWDjwLCcDgXMNkE\",\n \"developer\": {\n \"devId\": \"Begamob Global\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Begamob%20Global\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \""Cast for Chromecast & TV Cast" helps you can easily cast your phone to TV in the shortest time. Cast to TV app also helps you enjoy your library on any kind of smart tv like Chromecast, Roku, Fire TV, Xbox, Samsung, LG TV, and more. With the cast to tv app, you are no longer annoyed because the screen is too small, greatly affecting your eyes, enjoying sitting anywhere just looking at the screen.

"Cast for Chromecast & TV Cast" can show all your photos, videos, games, and other apps on a bigger screen with the same wifi connection. It is a perfect application for sharing, streaming content with high quality and real-time speed. You can also search and easily stream your favorite TV shows at any time on your TV screen through screen mirroring. Cast to tv app allows screen mirroring for Chromecast: you can cast videos, photos from your phone to Chromecast. It is also easy to use to cast to tv with other devices.
Moreover, Cast to TV app gives you casting trending movies, best music onto TV as fast and stable. This Casting App will assist you to mirror your phone screen on smart TV. Live screencast, from mobile to other devices and From Android to TV. Enable TV mirror and with the smart cast to start the practice of fitness exercises on the TV screen. Share screen and TV connect to mobile to present your presentation with the live stream with a large reflective screen.

Supported devices:
• Chromecast
• Roku
• FireTV, Xbox
• Smart TVs: Sony, Samsung, LG TV,...

Key Features:
• Easily cast to TV by phone.
• Screen Mirroring your phone to TV
• Cast photo, video,... to Smart TV
• Experience music, playing the game on the bigger screen.
• Control Smart TV by phone

How to use:
• Step 1: Your phone and Smart TV must be connected to the same Wi-Fi
• Step 2: Enable Wireless Display and Miracast on your TV
• Step 3: Choose and Connect to your Smart TV on the phone screen
• Step 4: You are ready to use. Try out every feature of our app!!

This app is not affiliated with Google or any other brands mentioned.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3092875,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.casttv.castforchromecast.screencast\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.casttv.castforchromecast.screencast/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.casttv.castforchromecast.screencast/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.casttv.castforchromecast.screencast/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.casttv.castforchromecast.screencast/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"JustPlay - Earn or Donate\",\n \"appId\": \"com.justplay.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.justplay.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/bljUXd8XG7HdHtcL8MWx0fBJNwzEbSTENPjiDhtRJrYsurP13NMdgqptsmcoFyuGHg\",\n \"developer\": {\n \"devId\": \"JustPlay GmbH\",\n \"url\": \"http://gplayapi.srik.me/api/developers/JustPlay%20GmbH\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Join over 4 million happy players who are earning money daily!

With JustPlay you PLAY GAMES and EARN fair rewards from amazing stores while giving you the opportunity to DONATE to amazing charities.

How it works? 🤑
📱Install JustPlay
🕹 Discover amazing games
💵 Get rewards for playing
🎁 Choose between PayPal cashout, gift cards or donations

Discover amazing games you can’t find anywhere else and make money for your time playing them with daily 3 hour payouts. This is digital entertainment re-imagined, we pay out all your earnings every 3 hours, you then have a choice to either get a giftcard from all your favorite stores OR donate your earnings to help fight climate change, global hunger or support doctors without borders. On top - we offer games that nobody else has so no more not being rewarded for offers because you will get paid every time.


With JustPlay we hope to build a fairer gaming ecosystem by offering games that you love while making money for your time playing them. JustPlay enables players around the world to be rewarded daily for the time they invest in playing games they love. We consider this a new paradigm in digital entertainment and our part in trying to build a more fair world. More importantly, we also believe that every human wants to help make the world a better place. So we had an idea. Let’s allow players to donate their earnings to a charity of their choice and we will - naturally - match every dollar they give.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.341674,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.justplay.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.justplay.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.justplay.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.justplay.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.justplay.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Canvas Student\",\n \"appId\": \"com.instructure.candroid\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.instructure.candroid\",\n \"icon\": \"https://play-lh.googleusercontent.com/2_M-EEPXb2xTMQSTZpSUefHR3TjgOCsawM3pjVG47jI-BrHoXGhKBpdEHeLElT95060B\",\n \"developer\": {\n \"devId\": \"Instructure\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Instructure\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Access your Canvas courses on the go with the Canvas Student mobile app! From any device, students can now:

• View grades and course content
• Submit assignments
• Keep track of course work with to do list and calendar
• Send and receive messages
• Post to discussions
• Watch videos
• Take quizzes
• Receive push notifications for new grades and course updates, and much more!\",\n \"scoreText\": \"4.5\",\n \"score\": 4.548217,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.instructure.candroid\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.instructure.candroid/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.instructure.candroid/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.instructure.candroid/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.instructure.candroid/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Nike: Shoes, Apparel & Stories\",\n \"appId\": \"com.nike.omega\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.nike.omega\",\n \"icon\": \"https://play-lh.googleusercontent.com/eLqKK4MkDoXXbD_F3A_2rs-othxTESxbocvyOGyhAmbNCydgnYKczItIY2-HLYJmhr6Q\",\n \"developer\": {\n \"devId\": \"Nike, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Nike%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Shop the latest sports styles perfect for all athletes including running shoes, Jordan clothes and more. Explore the latest trends, new arrivals, and best sellers with the Nike community. Women’s shopping, men’s footwear or kid’s apparel - shop for the whole family through Nike’s online store.

Shopping app exclusive drops await. Buy clothes for back to school or gear up for the next soccer season. Men’s clothing, women’s apparel, training gear and more - gain exclusive app access to the latest trends, innovations and clothes tips. Nike Experts provide you looks based on the hottest trends - streetwear, sneakers, clothes and more.

Shop all things sport and style. Reach your goals with products fit for all, including the latest in shopping for men and women. Shop clothes and sneakers and find inspiration from the top Nike athletes, coaches, and designers. Online shopping is redefined with the Nike app. Discover everything you need to pursue your goals through the power of sport.

Men’s clothing, women’s shopping, shoes and more - never miss a drop with notifications and exclusive access to the latest shoe releases and the season’s latest clothing. Shop clothes or discover your favorite footwear styles like Air Force 1’s, Jordans, and Converse. Streetwear, performance apparel and more must-haves await. Online shopping made convenient - for you.

Shopping is better in the Nike App.

Sneaker releases, app exclusives, and athlete tips. Experience an all-in-one clothes app. Download today to become a Nike Member and gain access to Nike app exclusive products, inspiration, and community.

SHOPPING AS IT SHOULD BE
Shop online and buy clothes through the Nike shopping app and enhance your retail experience. Shopping app collections, elevated services, curated products, and Member rewards - available exclusively for you.
• Shopping Made Easy – Enjoy free standard shipping, 60-day wear tests, and receiptless returns when you purchase through the app.
• Store Member Profile – Easily track your activity, orders and purchase history.
• Store Offers and Promos – Buy clothes and celebrate your important moments with exclusive birthday offers and promotions from us.
• Shop Member Products – Shoe releases and seasonal collections now available for exclusive first access in the Member Shop.
• Clothing & Footwear For Everyone – Women’s shopping, men’s and more. Shop hers and his with the latest in women’s and men’s clothing, kid’s apparel, footwear, and more.
• Shoes Reserved for You - Shoes we think you’ll want, set aside for you on launch day.
• Streetwear & Shoe Releases – Jordans, Dunks and the legendary Air Max. The latest sneakers and streetwear drops can be found here.
• Nike by You – Customize iconic Nike silhouettes with unique colorways and materials to match your style and express yourself.

SERVICES THAT CONNECT & GUIDE YOU
Chat one-on-one with an expert for style tips or fit advice and join your Nike community wherever you are.
• Athlete Training & Coaching – Expert advice delivered by Nike athletes, coaches and personal trainers.
• Nike Experts – Chat in real-time with our team of experts on all things sport, style, and Nike.

STORIES THAT INSPIRE & INFORM YOU
Streetwear releases, fashion tips and more. Get the latest in-depth stories, training and style advice delivered daily. Select the sports, athletes, teams, and products you’re interested in following to get more from your app.
• Stream – Discover a customized feed of content tailored to your interests.
• Clothing & Sneaker Trends – Discover new ways to wear your favorite Nike products with the world’s top stylists.
• Online Shopping Collections - Shop and learn what gear and styles empower the top Nike athletes.
• Notifications – Find out the moment new stories, styles, or events drop by turning on push notifications.

Shopping, stories, and experiences tailored for you by Nike.

The Nike App - Where All Athletes Belong. Download today.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5874133,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.nike.omega\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.nike.omega/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.nike.omega/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.nike.omega/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.nike.omega/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Etsy: Buy & Sell Unique Items\",\n \"appId\": \"com.etsy.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.etsy.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/giKCCPigafUbKQ1AkXVxSjQ1PggetEI96ORNKxxhQdvGAFhto71kO4zf7gZ9oOdLIQe5\",\n \"developer\": {\n \"devId\": \"Etsy, Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Etsy%2C%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Etsy app lets you shop millions of one-of-a-kind items straight from your phone and tablet. Whether it’s for moments big or small we have it all: handmade goods, vintage goods, creative goods, custom goods—there’s something for everyone. There’s no creative marketplace quite like it. With the Etsy app you can purchase the perfect gift for friends, family, and co-workers, or even get a little something for yourself.

With the Etsy app, it’s incredibly easy to explore all the delightful, personalized, unique items you want. Browse curated collections of handcrafted jewelry, vintage goods for your closet, customized furniture for your home, everyday supplies for your kitchen and bath, DIY kits to help that creativity flow, and so much more.

Plus, whenever there’s a big day coming up—weddings, anniversaries, birthdays, holidays, or graduation—Etsy is the go-to destination for unique occasion gifts.

The Etsy app makes it easy to find what you’re looking for.

• Save your favorite items and shops so you can discover more of what you want later. It saves you time and gives you more personalized recommendations in the future.
• Get notified when your favorite shop adds new items, or when your favorite items go on sale, so you won’t miss out on special savings or limited editions.
• Chat directly with shop owners and have items customized just for you. Most shop owners are quick to respond and love creating something just for you!
• It’s easy to buy goods swiftly and securely using our full suite of payment options, including Google Pay at checkout.
• You want order tracking? We’ll let you know when your order ships, and even better, when it’s delivered!
• Etsy is spoken around the world! You can browse in English, German, French, Dutch, Italian, Spanish, Polish, Japanese, Portuguese, or Russian.

There’s never been a better time to find something you love on Etsy. Get the app today!

Visit our support page: http://www.etsy.com/help/\",\n \"scoreText\": \"4.9\",\n \"score\": 4.8571124,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.etsy.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.etsy.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.etsy.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.etsy.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.etsy.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Home\",\n \"appId\": \"com.google.android.apps.chromecast.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.chromecast.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/vr1isZKzTtlok9P81H6cR98iqpPhkuQHJp19Z5kPej3QlhNTnLohXpqcgMqrQpyegA\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Set up, manage, and control your Google Nest, Google Wifi, Google Home, and Chromecast devices, plus thousands of compatible connected home products like lights, cameras, thermostats, and more – all from the Google Home app.

One view of your home.
The Home tab gives you shortcuts for the things you do most, like playing music or dimming the lights when you want to start a movie. Control it all with just a tap or two – and get to the good stuff faster. The Feed tab highlights important events in your home in one place. Here, you’ll also find ways to get more out of your devices and improve your home setup.

Create Routines that allow you to turn on compatible lights, check the weather, play the news, and more with one simple command.

See all the active audio and video streams on your compatible home devices in one place, change the volume, skip to the next track, or quickly change which speakers they’re playing from.

Understand what’s going on at home with a glance.
The Google Home app is designed to show you the status of your home and keep you up to date with what you may have missed. Check in on your home anytime and see a recap of recent events. You can also get a notification if something important happens while you’re away.

Set up your Nest Wifi and Google Wifi in minutes using the Google Home app. Run speed tests, set up a guest network, and easily share your Wi-Fi password with family and friends. Use parental controls like Wi-Fi pause to manage online time for the kids. Automatically prioritize video conferencing and gaming traffic on all devices, or decide which devices to prioritize for all traffic types. Get more insights on your network, whether it’s a notification when a new device joins your network or detailed insights for troubleshooting a poor internet connection.

A helpful home is a private home.
Protecting your privacy starts with one of the world’s most advanced security infrastructures, which we build directly into Google products so that they’re secure by default. The built-in security in your Google Account automatically detects and blocks threats before they reach you, so that your personal information is secure.

We build privacy tools that keep you in control.
Control your Google Assistant activity, privacy settings, information, and personal preferences. See your activity, delete it manually, or choose to delete it automatically. Control your privacy on Google Assistant with your voice. Ask questions like “Where can I change my privacy settings?” to get answers to the most common privacy and security questions.

Visit the Google Nest Safety Center at safety.google/nest to learn more about how we protect your information and respect your privacy.

* Some products and features may not be available in all regions. Compatible devices required.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.260395,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.chromecast.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.chromecast.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.chromecast.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.chromecast.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.chromecast.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Blood Pressure Pro\",\n \"appId\": \"com.bloodpressure.pro\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.bloodpressure.pro\",\n \"icon\": \"https://play-lh.googleusercontent.com/idIuf6kpBZsWCMtdOiOzJaqMJiddUgeDrsgGLzkb8V8cZ-LwLVUroDTHXgYDuZFUELPE\",\n \"developer\": {\n \"devId\": \"Desarrollos Técnicos\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Desarrollos%20T%C3%A9cnicos\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With the Blood Pressure Pro application you will control quickly, safely and easily all the information related to your blood pressure, pulse, sugar levels, blood oxygen and weight, among other functions. You will be able to track the evolution and trend of your levels, know the meaning of these values, as well as have access to information and healthy lifestyle tips beneficial to your health.

This application will help you in a simple way not only to analyze your blood pressure, but also to detect, control and improve, for example, hypertension.

This tool, besides helping you to control your blood pressure, will also allow you to record, analyze and control your oxygen and blood sugar values, your weight and your body mass index.

It has a scanner, so that you can quickly and easily check the suitability of any food through its bar code. You will be able to know if a food has excess fats, sugars, calories, etc...

Blood Pressure Pro, has been specially designed for those people who need to keep their blood pressure under control and in a very simple way to check if the values of blood pressure, oxygen and sugar are in a healthy range.

With the Blood Pressure Pro application you will find it quick and easy to know the history of all measurements and in this way it will be easy to detect small changes that occur and to act to improve your lifestyle.

The application will also allow you to record your blood pressure values in different states (left or right arm, lying down, sitting, before or after eating, before and after sports, etc.). And the detailed information will undoubtedly help you take care of your health to obtain twice the results with half the effort.

This application will allow you to organize and schedule the measurements of each of the functions you want, so you will not forget any measurement and you can have a better control of your health to avoid possible anomalies.

You will be able to share or export your blood pressure values to make the most of your medical appointment, as well as share the values entered with a family member or someone responsible for your health. You will also be able to compare the levels in different states, for example, before and after doing sports, at the beginning of the day or before going to bed, etc... All this will allow you to have more information and control over your health status.

You will also have information and healthy tips to be able to improve your health in the short, medium and long term.

Main functions of the application:

💖 Automatic measurement and control of your blood pressure.

🫀Automatic measurement and control of your blood oxygen.

🩸Automatic measurement and control of your blood sugar.

🫁Automatic measurement and control of pulse rate.

⚖️Automatic measurement and control of weight and body mass index.

⏰Organize and schedule alerts so you don't forget any measurement.

📊Monitoring and analysis in the short, medium and long term.

🥑 Information and advice on healthy eating.

📻 High-speed scanner to examine any item via barcode.

📚 Gain comprehensive insights on blood pressure, oxygen and blood sugar.

📩Share all data for further analysis.


The Blood Pressure Pro app has been designed primarily for those who:

- Keep filling in blood pressure, oxygen and sugar level data on a piece of paper.
- Want to know if their blood pressure, pulse, oxygen and sugar are in a healthy range
- Are looking for a simple way to analyze the evolution of their blood pressure, oxygen, weight and sugar levels
- They want to find out accurate information about blood pressure, oxygen and blood sugar
- Don't know how to show blood pressure changes to their physician
- Don't want to forget to check their blood pressure as often as prescribed
- Want simple information and tips for healthy living

Download it now and enjoy the health and happiness we can bring you! 💪🏻💪🏻\",\n \"scoreText\": \"3.4\",\n \"score\": 3.4301677,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bloodpressure.pro\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.bloodpressure.pro/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.bloodpressure.pro/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.bloodpressure.pro/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.bloodpressure.pro/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"VPN - Super Unlimited Proxy\",\n \"appId\": \"com.free.vpn.super.hotspot.open\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.free.vpn.super.hotspot.open\",\n \"icon\": \"https://play-lh.googleusercontent.com/fd0tiWCj1DdmE0UtudWdNSrV7dppz2JCrmWQAV2JBw9e59qO_jmmlLe5o7y7NnbDog\",\n \"developer\": {\n \"devId\": \"VPN Super Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/VPN%20Super%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"■ VPN Super Unlimited Proxy - free VPN for Android
100% free Proxy! Totally unlimited bandwidth! Super fast and high VPN speed! The best unlimited free Proxy clients for android.

VPN Super Unlimited Proxy- Free Proxy VPN, super fast VPN to proxy sites, watch videos and movies, protect WiFi security and protect privacy. Turbo charge your video streaming experience.

■ Why choose VPN Super Unlimited Proxy?
- Large number of servers, high-speed bandwidth
- Choose apps which using VPN (Android 5.0+ required)
- Unlimited time, Unlimited data, Unlimited bandwidth
- No registration or login required
- No Log is saved from any users
- Simple, one tap connect to VPN
- Protect your security and privacy
- No additional permissions required

■ What can I do with a VPN?
- Enhance your online privacy and enable you to safely and anonymously browse the Internet
- Protect you when using a public WiFi hotspot
- Allows you to create a secure connection to another network over the Internet

■ Suggest:
- In most countries, it is recommended to use the IKEv2 protocol first, for better stability and connection speed.
- When the connection fails, please switch to OpenVPN UDP and OpenVPN TCP protocol in turn.
- Switching to different countries may also increase access speed or connection success rate

■ Privacy Policy:
*When the user is in normal use, we will not log any logs related to the user.
- Only when the user actively fails to connect the connection (requires the user to click the feedback button), we will collect the necessary user connection failure log.
*The connection failure log collected is limited to the success rate of our engineers to improve the VPN connection, and will not be shared with any individual or organization.

Download VPN Super Unlimited Proxy, the world's fastest secure virtual private network, and enjoy it all!\",\n \"scoreText\": \"4.6\",\n \"score\": 4.611185,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.free.vpn.super.hotspot.open\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.free.vpn.super.hotspot.open/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.free.vpn.super.hotspot.open/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.free.vpn.super.hotspot.open/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.free.vpn.super.hotspot.open/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Easy Scanner\",\n \"appId\": \"com.mxxtech.easyscan\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.mxxtech.easyscan\",\n \"icon\": \"https://play-lh.googleusercontent.com/EICZGgffsqbPY4rJa9aSYva1xyrNjzP6TrvCeF4Vtllx7tt-4DJuIA8FkpAtDYG4VHI\",\n \"developer\": {\n \"devId\": \"Caller Show\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Caller%20Show\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Easy Scanner , a powerful scanner app that turns your device into a portable HD scanner and pocket document safe

Download and enjoy ALL FEATURES FOR FREE!


* Quickly Digitize Document
Use the camera on your device to scan and digitize all kinds of paper documents: receipts, notes, invoices, whiteboard discussions, business cards, certificates, etc.

* Optimize Scan Quality
Smart cropping and auto enhancing ensure the text and graphics in your scans are clear and sharp with premium colors and resolutions.

* Scans to PDF / Images
Easily create PDFs, share or print, add text, watermarks, mosaics, scribble, and more

* Extract Text from Scans
The optical character recognition (OCR) feature enables you to recognize text in images. You can extract the text for later searching, editing, or sharing.

* Pocket Document Safe
Safely and conveniently manage and protect your important files, including application lock, file private storage and other functions to keep your files safe and private

* Powerful Scan Editor
Easily edit scans, add text, watermarks, mosaics, textures, signatures, etc., of course, you can also paint freely on it

* Powerful PDF Editor / Tools
There is also a powerful PDF toolbox in the APP, convert to image, crop, sign, print, merge, etc.

* Transfer files between PC and mobile
The app provides a very convenient way to transfer and manage files between your phone and PC easily\",\n \"scoreText\": \"4.1\",\n \"score\": 4.11,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.mxxtech.easyscan\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.mxxtech.easyscan/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.mxxtech.easyscan/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.mxxtech.easyscan/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.mxxtech.easyscan/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"NordVPN – fast VPN for privacy\",\n \"appId\": \"com.nordvpn.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.nordvpn.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/X8hJVUEzH6Q5N0g5npd0gz4rYPmvSek1ScQL8cmnIa8bLtXeAcRQJbLaoBAL-4YXIQ\",\n \"developer\": {\n \"devId\": \"Nord Security\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Nord%20Security\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get yourself an ultra-fast VPN connection and never stop for anything.

Download NordVPN and you’ll get a fast and encrypted internet connection wherever you go. It will hide your data from cybercriminals and other people online.

One tap is all it takes to have a private and secure internet in an instant. It’s an easy-to-use VPN app for Android, trusted by millions of users worldwide.

✔ Use a VPN for privacy
When you browse the internet without a VPN, your IP address can reveal where you live. But once you connect to NordVPN, no one knows where you are, what websites you visit or files you download.

Shield yourself from malware
Surf the web in confidence with Threat Protection Lite. It blocks your access to malicious websites and protects your device from accidentally joining a botnet.

✔ Stay safe on public Wi-Fi hotspots
A coffee shop serves the best espresso but its Wi-Fi is unsecured? Use NordVPN to secure your internet connection and get stuff done without worrying about your information being leaked.

✔ Guard your sensitive data
With NordVPN, your online traffic travels through a secure encrypted tunnel. This way, it’s out of reach for cybercriminals eager to snatch your private data. No proxy server or privacy browser will give you this level of security.

✔ Stay one step ahead
Enable the Dark Web Monitor to get an alert if your credentials are exposed online. This way, you can take immediate action and protect your compromised accounts before anyone can get to them.

✔ Enjoy high-speed connection with NordLynx
It’s our fastest VPN protocol built on the backbone of WireGuard to bring you blazing speeds and bulletproof privacy. All you need to do is tap “Quick Connect” – you’ll be connected to one of our 5,400+ servers in seconds. It’s almost like traveling on a virtual express train!

✔ Fail-safe protection
Working with sensitive information? Turn the Kill Switch on – your data will stay safe even if your VPN connection drops.

✔ For everyone and everything
Protect your family, friends, and all their devices with a single NordVPN account. Install it on your Wi-Fi router and enjoy an encrypted connection 24/7.

FEATURES

• Strong VPN encryption for bulletproof security
• VPN protocols: OpenVPN, NordLynx based on WireGuard
• Unlimited data for internet freedom
• 5400+ servers worldwide for turbo speeds
• Protection of 6 devices with a single account
• Double VPN for ultimate privacy
• VPN auto-connect for effortless online protection
• 24/7 customer support by our award-winning team

If you want to go more advanced...
Enjoy these extra features without additional costs or premium subscriptions:

• Split tunneling: select apps you don’t want to run through the encrypted VPN connection
• Custom DNS: set a custom DNS server address
• Switch between TCP and UDP protocols
• Specialty servers optimized for your individual needs

Ready to experience a better internet?
If you’re looking for a single all-around cybersecurity app, VPN is a solid choice.
Wind down, connect to NordVPN, and enjoy safe and private internet access wherever you go. Online security is just a tap away!

WireGuard® is a registered trademark of Jason A. Donenfeld.

Nord Security General Terms of Service, including the end-user license agreement, which governs a user's rights to the NordVPN app, among other things: https://my.nordaccount.com/legal/terms-of-service/\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4879065,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.nordvpn.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.nordvpn.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.nordvpn.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.nordvpn.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.nordvpn.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Vrbo Vacation Rentals\",\n \"appId\": \"com.vrbo.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.vrbo.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/kMaMdsJ7pmxKdfK5u0SF4z4NpBbcAgjgCw_0VAcmlnjhN9810kGuNcrnAMG8U_b_U_w\",\n \"developer\": {\n \"devId\": \"Vrbo\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Vrbo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Beach house? Condo? Cabin? Your perfect vacation home awaits. Travel better together with Vrbo.

•\\tSEARCH from over 2 million unique places to stay in 190+ countries
•\\tPLAN and collaborate with friends and family using Trip Boards and group chat
•\\tBOOK securely from your phone or tablet
•\\tTRAVEL anywhere and share trip details with your group

With the Vrbo app, you can:
SEARCH
•\\tBrowse vacation homes with pools, backyards, and all the room you need.
•\\tFind vacation homes you won’t find on many other travel sites.
•\\tFilter by what’s important to you and your group: price, location, amenities, and more.
•\\tSee property photos and reviews at a glance.
•\\tHave questions about a property? Get quick answers from our virtual assistant.

PLAN
•\\tTap the heart to easily save and compare places you love.
•\\tInvite friends and family to join your Trip Board and help you plan.
•\\tLeave comments and vote for your favorite properties.
•\\tKeep your trip conversations in one place and chat with your group in real time from anywhere.

BOOK
•\\tHave questions? Message the owner or manager to ask about the property.
•\\tBook and pay securely on the Vrbo app with your credit card.

TRAVEL
•\\tQuickly access important booking details like check-in instructions, WiFi passwords, and arrival information -- even when you’re offline.
•\\tShare important trip details with friends and family by adding them to your trip.
•\\tAccess your conversations and message homeowners from your device anytime.

New! Poll your family and friends
Take the work out of planning. Create a poll to help your group pick the perfect place to stay.
•\\tCustomize polls with properties you want your group to rank
•\\tSend it to family and friends you want to participate
•\\tShare results with your group and book the winner!

Note: currency is displayed as USD in the property listings unless otherwise noted. Please visit www.vrbo.com/mobile for more information about the Vrbo app.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.400884,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.vrbo.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.vrbo.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.vrbo.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.vrbo.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.vrbo.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Meet\",\n \"appId\": \"com.google.android.apps.meetings\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.meetings\",\n \"icon\": \"https://play-lh.googleusercontent.com/GBYSf20osBl2CRHbjGOyaOG5kQ3G4xbRau-dzScU9ozuXQJtnUZPkR3IqEDOo5OiVgU\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Securely connect, collaborate, and celebrate from anywhere. With Google Meet, everyone can safely create and join high-quality video meetings for groups of up to 250 people.

• Meet safely - video meetings are encrypted in transit and our array of safety measures are continuously updated for added protection
• Host large meetings - invite up to 250 participants to a meeting, whether they’re in the same team or outside of your organization
• Engage in meetings - engage on meetings without interrupting, through Q&A, Polls, and Hand Raise
• Easy access on any device - share a link and invite team members to join your conversations with one click from a web browser or the Google Meet mobile app
• Share your screen - present documents, slides, and more during your conference call.
• Follow along - live, real-time captions powered by Google speech-to-text technology

*Tile view for Android tablets coming soon.
**Not all features available for non-paying users.

Anyone can join a meeting on Meet via an invitation. However, some capabilities are available only to Google Workspace customers.

With Google Workspace , you and your team can:
• Enjoy helpful features like live captions, breakout rooms, and noise cancellation* to make meetings more productive.
• Attend meetings on the go. Meetings organized by Google Workspace users also create a dial-in phone number for each meeting, so every guest can join – even without wifi or data.
• Seamlessly jump into a video call from Chat or take document collaboration to the next level by connecting over video – everything ties together so you can always connect and collaborate in context.

Learn more about Google Meet: https://workspace.google.com/products/meet/

*Not available in all Workspace plans.

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/\",\n \"scoreText\": \"4.1\",\n \"score\": 4.086839,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.meetings\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.meetings/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.meetings/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.meetings/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.meetings/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Find My Device\",\n \"appId\": \"com.google.android.apps.adm\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.adm\",\n \"icon\": \"https://play-lh.googleusercontent.com/aX0ql6V6PvVotibIvaNW7CRjaJ2oUyBIX_WgSkAl36vOAaoXiw6yQufxVQ2LV_D2DLg\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Find My Device helps you locate your lost Android and lock it until you get it back.

Features
See your phone, tablet or watch on a map. If current location isn’t available, you’ll see the last known location.

Use indoor maps to help you to find your device in airports, malls, or other large buildings

Navigate to your device with Google Maps by tapping the device location and then the Maps icon

Play a sound at full volume, even if your device is on silent

Erase the device or lock it with a custom message and contact number on lock screen

See network and battery status

See hardware details

Permissions Notice
• Location: Needed to show your device’s current location on the map
• Contacts: Needed to access the email address associated with your Google account

Find My Device is part of Google Play Protect\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4100657,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.adm\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.adm/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.adm/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.adm/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.adm/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"CallApp: Caller ID & Recording\",\n \"appId\": \"com.callapp.contacts\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.callapp.contacts\",\n \"icon\": \"https://play-lh.googleusercontent.com/94EuMQIyZgE6p9T6WFwDzniJG7wFR_0RLclA1eolkulOlzceZry58ZOeOOuzj8t1rdM\",\n \"developer\": {\n \"devId\": \"CallApp Caller ID, Call Recorder & Spam Blocker\",\n \"url\": \"http://gplayapi.srik.me/api/developers/CallApp%20Caller%20ID%2C%20Call%20Recorder%20%26%20Spam%20Blocker\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"

Caller ID? Block numbers ? Call Recording? Phone number lookup?


We got it all with CallApp, our scrupulous Phone app!

📞 Caller ID:


-Advanced Caller ID technology to identify unknown numbers. More than 5.5 BILLION numbers!
- Never ask “who called me” again!
- Always know who is calling, with our caller trace & phone book abilities!
- Stop Telemarketing & spam calls!
- Phone number lookup- search phone number or numbers and find them ASAP!

🚫 Spam Call Blocker:


- Stop robocalls, Blocking numbers and contacts block!
- Blacklist numbers, block telemarketing & telemarketer calls, stop robocalls & scam calls!
- Block spam with our caller id blocker!
- Scam calls protection!
- Advanced blacklist options & robocalls filter that fits your needs!

⏺️ Automatic call recorder (ACR):


- CallApp’s Automatic Call recording enables you to Automatically record calls!
- Use our callerid calling app, to get the optimal recording calls option.
- Record scam calls!
- Automatic call recording (ACR) made easy with CallApp!

CallApp will identify who is calling, will recognize unknown callers & numbers, while giving you a great phone book UI. Our caller ID has caller trace & phone number lookup features that will always tell you who called, with a next level user experience .

Say bye bye to robocalls, telemarketing scam calls & stop spam calls! Blacklist and block contacts with CallApp and it’s unique spam filter that uses callerid data. Advanced spam call blocker app, that can also blacklist and stop spam calls from a certain prefix & especially robocalls.

Use our call recorder technology and get an automatic call recorder (ACR), that will let you save calls, and never miss important calls and information. Recording calls has never been easier! CallApp can record phone calls for most Android devices, and the call recording can be saved on the cloud!

★Now compatible with WEAR OS & all the latest smart watches!
Communicate better & in ZERO time with the WEAR OS x CallApp integration x call recording x caller id x blacklist x spam blocker

Now introducing CallApp+: WhatsApp Caller ID & spam block, Identify SMS & calls from IM.
---
We do not sell, share data with any third party application and/or organization.

CallApp Support: support@callapp.com\",\n \"scoreText\": \"4.2\",\n \"score\": 4.24506,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.callapp.contacts\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.callapp.contacts/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.callapp.contacts/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.callapp.contacts/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.callapp.contacts/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Uber - Driver: Drive & Deliver\",\n \"appId\": \"com.ubercab.driver\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.ubercab.driver\",\n \"icon\": \"https://play-lh.googleusercontent.com/bXVEomXNViejYGr4Je5Ed4J08q8G00FUPYCdgoiPNF-2XAqWMYAGCBrK-n0OMYI3OALZ\",\n \"developer\": {\n \"devId\": \"Uber Technologies, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Uber%20Technologies%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"It’s your hustle.
Our flexibility. Your independence. Our security. Your business. Our support. Here’s why you should drive, deliver, and earn money with Uber.

Drive or deliver.
It’s up to you how you want to earn. No other app offers the same opportunities.

Earn on your terms.
Whether you want to use your bike or your car, you can make it work. Decide when, where, and how long you want to earn, while keeping your flexibility.

Plan a smarter schedule.
Exclusive app features like the Earnings Estimator can show you the busiest times to earn and keep a flexible schedule.

Work from anywhere.
Whether you’re in San Francisco, New York, or Austin, Uber is available in over 10,000 cities.

Make money in your free time, then cash out when you’re ready.
With Instant Pay, you can transfer your earnings up to 5 times a day.

Sign up is easy.
It only takes a few minutes to get started. Drive, deliver, and earn with Uber now.

*This app typically uses 2 GB of data per month. Using navigation can decrease your phone’s battery life.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5736947,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ubercab.driver\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.ubercab.driver/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.ubercab.driver/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.ubercab.driver/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.ubercab.driver/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Tinder: Dating app. Meet. Chat\",\n \"appId\": \"com.tinder\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.tinder\",\n \"icon\": \"https://play-lh.googleusercontent.com/fDpoqIbZ884ylRnMK8Lx9Fu4DsLQk5yt4f9WkxeOAPpGnzc9BTi_YKkMsLvoMdx7Uzg\",\n \"developer\": {\n \"devId\": \"Tinder\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Tinder\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With 70+ billion matches to date, Tinder® is the🔝 top free dating app🔝, and the best place to meet new people. Are you looking for true love? An open relationship? Are you looking to get out there and find a date, or do you just want to make friends and chat? With Tinder, you can meet local people everywhere and get the best out of your dating experience:
Whether you're straight, gay, bisexual, or anything in between, Tinder allows you to be who you are and find who you want. 🏳️\\u200d🌈🏳️\\u200d⚧️
Share your interests and learn more about your matches to get the conversation started, and get the sparks flying.
Photo Verified Profiles: Because the only surprises we want are flowers on the first date
ideo chat: Test your online dating chemistry and meet new people from home!
Traveling somewhere? Get to know the locals and join a community of people from around the world. Dating in New York, meeting new friends in Miami, or going on a date in London: Wherever you go, we’ll be there.

Some people call us their “most dependable matchmaker app”, some people call us 🔥”the world’s most popular free dating site”🔥, but you can just call us when you want to meet up with people in your area.
Match, Chat, and Date. That’s our mantra.
It’s easy and fun to find new people on Tinder®. Make your profile stand out with your best pics and a little something about you to increase your match-making potential. Use the 👉Swipe Right™👉 feature to Like someone, use the 👈Swipe Left™👈 feature to Nope. If someone Likes you back, It’s a Match! And no pressure: With our double opt-in feature, the interest has to be mutual in order to be a match. How many dating apps can say that? 🤔

🥂While you’re here — make a toast to the Gold life and enjoy some of Tinder’s premium features with our Tinder Gold™ subscription 🥂
Likes You allows you to see all your fans, saving you precious time 🕰️
Unlimited Likes for you to catch feelings for as many new people as you want💚
Rewind for you to undo your last Like or Nope⏪
Use Passport to go anywhere in the world to find people online outside your zip code✈️
Monthly Boost available to put your profile to the top for thirty minutes to get more attention⚡
5 Super Likes available per week because sometimes you really, really Like someone 💝
Looking for access to all of Tinder’s premium features? Join Tinder Platinum™ to also get your Likes prioritized with potential matches, to be able to message before matching, and more.

There’s a plus side for those not ready to commit to a relationship with 💛Gold💛 or Platinum. With Tinder Plus®, you’ll unlock features including Unlimited Likes, Unlimited Rewinds, and Passport.

So what are you waiting for? Download the best free dating app today! It doesn’t matter if you’re looking to make friends, meet new people or find your perfect match, Tinder is a place where everyone can find exactly what they’re looking for. — and it’s about time you showed up.

-----------------------------------

If you choose to purchase Tinder Plus®, Tinder Gold™, or Tinder Platinum™ payment will be charged to your Google Play account, and your account will be charged for renewal within 24-hours prior to the end of the current period. Auto-renewal may be turned off at any time by going to your settings in the Play Store after purchase. No cancellation of the current subscription is allowed during the active subscription period. If you don’t choose to purchase Tinder Plus®, Tinder Gold™, or Tinder Platinum™, you can simply continue using Tinder for free.

All photos are of models and used for illustrative purposes only.

Privacy: https://www.gotinder.com/privacy
Terms: https://www.gotinder.com/terms\",\n \"scoreText\": \"2.9\",\n \"score\": 2.925478,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.tinder\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.tinder/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.tinder/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.tinder/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.tinder/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Email Home - Email Homescreen\",\n \"appId\": \"com.myhomescreen.email\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.email\",\n \"icon\": \"https://play-lh.googleusercontent.com/isenQkTnvRjASFy_vwC6u5MlY3uNmxucHPjuB7Bp27YzLGpE4wlRzRemn2aWrgv7Vw\",\n \"developer\": {\n \"devId\": \"Yobi Mobi\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Yobi%20Mobi\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"BLOCK Spam, Junk, and any Threats to your Gmail, Outlook, and Yahoo account, FREE!
Take control of all your email inboxes in one fast and easy to use FREE app. Manage all your accounts any time of the day, whether for travel, business, or personal use, Email Home helps you get it DONE!
“I really enjoy email home, it helps out a lot, it fixes and divides properly the emails to the right places and without confusing other apps. I do give it a five stars, they're awesome” - Verified User
Top Features:
-\\tRead Receipts
-\\tEmail Response Reminder
-\\tOne-Click Mass Email Archive
-\\tRight-Swipe All-In-One Homescreen
-\\tVoice Search
-\\tSecure and Safe Interface
📨 COMBINE YOUR EMAIL ACCOUNTS, TAKE CONTROL!
Tired of needing multiple email apps for different providers? Email Home allows you to have all of your email accounts under one app. Switch effortlessly between multiple accounts from the same provider or between your Gmail, Yahoo and Outlook inboxes!
📨 FOCUS ON IMPORTANT EMAILS
Important emails getting lost in the mix? My Hub organizes your most important emails first so that you are always on top of what matters. Auto-sorted tabs also include Personal, Social, and Shopping. Don’t let important emails get lost in the clutter of junk mail and spam.
🚫 BLOCK SPAM INSTANTLY
Have you been inundated with spam emails? It's never been simpler to clear up your overflowing email inbox. With just one click, you can delete everything you don't want to see and save it to your archive. Easily filter spam or hazardous emails with one-click, making your email experience better and safer!
“Very well organized and easy to use. I was the king of clutter with emails, no order, no structure, but this one it looks so neat and organized. Spam and kink gone, thank you!” – Verified User
Email Home is always being updated and improved. It is critical that we listen to and act on our users' input in order to improve the app. When you download Email Home, you receive an email launcher that is constantly working to make your life easier. Get the fastest-growing email app here instead of settling for a simple one.
Email Home uses launcher technology that allows us to give you features right on your home screen. It will replace your home screen so that you have access to these awesome features anytime you need them. Connect your Gmail, Outlook, and/or Yahoo inboxes and experience a better, smarter inbox app.
Android™ is a trademark of Google LLC.
User Support: support@emailhomeapp.com
Privacy Policy: http://myhomescreenapps.com/privacy\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2979617,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.myhomescreen.email\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.email/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.email/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.email/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.email/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"SiriusXM: Music, Sports & News\",\n \"appId\": \"com.sirius\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.sirius\",\n \"icon\": \"https://play-lh.googleusercontent.com/kcrIJ1Nfq6wMpWnaQESHiqRkyTno0EO6FBtqqbptuo2IWhGMFN8WxqXkgijj7ChYuP9H\",\n \"developer\": {\n \"devId\": \"Sirius XM Radio Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Sirius%20XM%20Radio%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The SXM App delivers the ultimate SiriusXM experience including ad-free music, plus live sports, original talk shows, Howard Stern, exclusive comedy, US and world news from every angle, and more. Discover 425+ channels that include:

* Ad-free music dedicated to your favorite decades, hits, styles, and genres
* Exclusive artist channels from Garth Brooks, Dave Matthews Band, Diplo, Eminem, U2, and more
* Live play-by-play from every major professional sport as well as college sports
* Two channels of Howard Stern*
* National and global news, issues and politics channels providing news coverage on every angle on mainstream channels including CNN, C-SPAN, FOX News, MSNBC, BBC World Service News as well as SiriusXM exclusive channels Urban View, POTUS and more.

* Original talk, exclusive comedy, and more

Find new music and channels with personalized recommendations. Plus also enjoy all these SXM App exclusives:

* The best collection of podcasts curated for you, including SiriusXM originals and series from Marvel
* Xtra channels of music to fit any mood or activity
* Personalized Pandora stations
* SiriusXM video with shows, interviews, and performances
* Howard Stern video with epic studio moments


Streaming on the SXM App is included in these SiriusXM plans and more:

Streaming Platinum Plan

* 425+ channels to stream on the SXM App\\u2028
* Ad-free music for every genre & decade-plus artist-created channels\\u2028
* Original talk, podcasts, exclusive comedy & news from every angle\\u2028
* NFL, MLB®, NBA, NHL®, and NCAA® play-by-play, NASCAR®, plus the biggest names in sports talk\\u2028
* 2 Howard Stern channels, including video\\u2028
* Create Pandora stations based on artists\\u2028
* SiriusXM video library of in-studio shows & performances\\u2028

Streaming Music & Entertainment Plan
* 400+ channels to stream on the SXM App\\u2028
* Ad-free music for every genre & decade-plus artist-created channels\\u2028
* Original talk, podcasts, exclusive comedy & news from every angle\\u2028
* Play-by-play of select major sports, NASCAR®, plus the biggest names in sports talk\\u2028
* SiriusXM video library of in-studio shows & performances\\u2028


Upon purchase of any plan, your subscription will AUTOMATICALLY RENEW and you will be charged (after any free trial) the rate + applicable tax on a recurring monthly basis until you cancel. Cancel at least 24-hours before any renewal date in your Google Play account to avoid future charges. No refunds or credits, unless permitted by your billing platform. Promotional offers are for new subscribers only. All fees, content, and features may change. Use of the SXM App is limited to the United States and certain U.S. territories. Some restrictions apply. Data charges may apply.

Privacy Policy: siriusxm.com/privacy
Do Not Sell My Personal Information: siriusxm.com/ccparequest_DoNotSellMyInfo
Customer Agreement: siriusxm.com/customeragreement

*Features and content vary by plan and are subject to change.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7251325,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.sirius\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.sirius/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.sirius/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.sirius/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.sirius/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Rewarded Play: Earn Gift Cards\",\n \"appId\": \"com.affinity.rewarded_play\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.affinity.rewarded_play\",\n \"icon\": \"https://play-lh.googleusercontent.com/vNIkWp8Q5T7XKjcQhyselqR6VRLSdYeTdKfbKrYsLsFDOWo8fD5JXXEnfTT0lPUNQoX6\",\n \"developer\": {\n \"devId\": \"Influence Mobile, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Influence%20Mobile%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Earn ⭐FREE gift cards⭐ for your favorite stores by playing popular games you’ll love! 🎮💵🤑 Amazon gift cards, Walmart gift cards and more await!

Play free games from the comfort of home with Rewarded Play, the one-stop app for casual games you’ll love to play. Play games, choose your rewards and get your gift cards within 48 hours! Earning gift cards really is that easy. Redeem rewards from name brand places and enjoy.

Use our app daily and play to earn rewards. Amazon gift cards, Target gift cards and Best Buy gift cards can be yours! Rewards games are free to play and available any time, even while you’re staying at home.

Love Solitaire, Mahjong, Wheel of Fortune, Yahtzee and other similar games? Play these free rewards games and earn points when you start playing, reach certain levels, see rewarded videos and make in-app purchases. Then choose from Amazon gift cards, Best Buy gift cards, Target gift cards and more!

Download Rewarded Play and start earning rewards today!

REWARDED PLAY FEATURES:

🕹👾 PLAY GAMES 🧩🎲
- Play games you’ll love and earn points.
- Play games like Yahtzee, Solitaire, Wheel of Fortune and more!
- Play every hour to score more points!

💰 EARN GIFT CARDS 💰
- Earn gift cards when you redeem your rewards points.
- Gift cards will arrive within 48 hours!
- Amazon gift cards, Target gift cards, Best Buy gift cards and more!

Play games and earn points to get gift cards. This rewards app makes earning free gift cards more fun than ever! Download Rewarded Play and get rewarded for playing your favorite games!

Rewarded Play is not endorsed, licensed or sponsored by Amazon, Walmart, Target, Best Buy, or any other gift card provider.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.305491,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.affinity.rewarded_play\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.affinity.rewarded_play/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.affinity.rewarded_play/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.affinity.rewarded_play/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.affinity.rewarded_play/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Bigo Live - Live Streaming App\",\n \"appId\": \"sg.bigo.live\",\n \"url\": \"http://gplayapi.srik.me/api/apps/sg.bigo.live\",\n \"icon\": \"https://play-lh.googleusercontent.com/HG2RzzjeH8ceylgOYfV4-pI2ribI3KRvh3jNUTYpI_KPZ3Sa8VCKQQjAp6VjeIYetQ\",\n \"developer\": {\n \"devId\": \"Bigo Technology Pte. Ltd.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Bigo%20Technology%20Pte.%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"What is BIGO LIVE? A popular global free live stream app and platform!

Watch great live streams, enjoy live game streaming, live chat with people worldwide, or go live to become a social media influencer ... BIGO LIVE has over 400 million users around the world now. And we invite you to join our warm community!

Why is BIGO LIVE?

Watch Live Stream
Millions of talented broadcasters, dancers, singers, foodies, comedians live-stream in BIGO LIVE. Watch 24/7 great live streams, such as live gaming, live music, and live chatting, similar to Periscope.

Are you interested in live chat with people from all over the world? We support 150+ countries, such as Canada, Great Britain, Japan, and more.

Live Video Chat
You can invite a friend to start a 1:1 live video chat or create a live chat room with up to 9 people.

Don't want to show your face? Live voice chat would be your perfect choice. Speak out freely in live chat without any burden, similar to Periscope.

Live Voice Chat
The space for casual, drop-in audio conversations—with friends and other interesting people around the world.

Go online anytime to chat with the people, or hop in as a listener and hear what others are talking about.

Live Game Streaming
Watch gamers play Minecraft, Among Us, Fortnite, PUBG, FIFA 18, League of Legends, and much more.
Talk Fortnite strategy with fellow gamers or content yourself with live streaming in silence.

Want to live your own gaming content? Download and start your gaming channel now!

Go Live
No matter Just chatting or showing talent, you will get support, gain fans, receive gifts, and make friends here. How about going live and becoming a social media influencer right now? Tons of cool filters and stickers are waiting for your choice, similar to Periscope.

Other Features
- Live PK: It’s time to dare your friends!
- Cute Pet: Raise a cute pet online.
- Bar: Share updates and photos, engage with friends.

Do not hesitate! Download right now and get more fun!


GUIDE TO APP PERMISSIONS
- Required Permissions
None.

- Optional Permissions
Location: this is the permission to find broadcasters nearby.
Camera and Microphone: this is the permission to go live.
Phone: this is the permission to check device status.

- How to change permissions?
Permissions can be changed in Settings > BIGO LIVE.

* Even if you don't agree with the optional permissions, you can use our service except for functions related to those permissions.
* If you don't agree with the optional permissions, it may be difficult to use some of our functions properly.


SAY HELLO:

Instagram: https://www.instagram.com/bigoliveapp

Facebook: https://www.facebook.com/bigoliveapp

Twitter: https://twitter.com/BIGOLIVEapp

YouTube: https://www.youtube.com/bigoliveofficial

Any feedback? Please contact us at feedback@bigo.tv\",\n \"scoreText\": \"4.4\",\n \"score\": 4.358751,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=sg.bigo.live\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/sg.bigo.live/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/sg.bigo.live/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/sg.bigo.live/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/sg.bigo.live/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Fabulous Cleaner-Boost&Speedup\",\n \"appId\": \"com.fabulous.cleaner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.fabulous.cleaner\",\n \"icon\": \"https://play-lh.googleusercontent.com/K6oSZ04iO7fvlf9tJu9Umqe0QL8vdX4ZsSmLNyM2L8b_g_p3ChwEGF7ctRPq_Rv5nQ\",\n \"developer\": {\n \"devId\": \"Mobnet Team\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Mobnet%20Team\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Fabulous Cleaner is a lite, fast & extraordinary app for Android specifically. Fabulous Cleaner gathers phone cleaner, booster, CPU cooler & battery saver all in one.

ANY OTHER ATTRACTIVE FEATURES?

Fabulous Cleaner will totally understand you as a personal guard, as if you worried about your phone status, it will absolutely suggest your next step, for instance, clean cache, memory storage cleaner (no need to worry about your important files), and one tap phone cleaner.

And yeah...all you need to do is move your finger with one tap click, that's why you choose us.

Fabulous Cleaner also provides device performance visualization in the device panel feature including CPU performance, Battery Life, Phone Storage, Ram Usage.

If you want to makes your phone faster than ever, just download this one-tap smart phone clean master on Google Play Store.

Fabulous Cleaner Features:

「Battery Saver & Extend Battery Life」

Fabulous Cleaner is your specialist for all Android devices!

Many apps use up battery power even when they are not being used. Fabulous Cleaner can intelligently monitor and analyzed battery usage, close the apps which is high-consumption. Aims to save battery power and extend battery life.Extends standby time and also supports various power saving modes.

Battery saver just need ONE TAP!

Fabulous Cleaner have many powerful features, include of phone booster, battery saver. Only need One-tap to clear all the junk files to save more room of apps. When you use the Fabulous Cleaner, you will have a wonderful mobile phone experience.

Download Fabulous Cleaner Now!

If you like Fabulous Cleaner and have any feedbacks, please contact us via
Joysmartstudio@gmail.com, thus we can bring you the best user experience and upcoming renew versions.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0582523,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.fabulous.cleaner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.fabulous.cleaner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.fabulous.cleaner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.fabulous.cleaner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.fabulous.cleaner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Picsart Photo & Video Editor\",\n \"appId\": \"com.picsart.studio\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.picsart.studio\",\n \"icon\": \"https://play-lh.googleusercontent.com/1JMJ518jogwPeaD0pYn2mBu1cRLD0xRi45wNbtTIRvam1_xx-y3KJOjRAx-W9P4Lf0U\",\n \"developer\": {\n \"devId\": \"PicsArt, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/PicsArt%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Join the Picsart community of over 150 million creators around the world. With the easy to use Picsart photo editor and video editor, you can bring your creativity to life. Make professional-level collages, design and add stickers, quickly remove and swap background, try popular edits and add choose from hundreds of filters, like blur, retro VHS or Y2K filters. Picsart is your go-to, all-in-one editor & collage maker with all the tools you need to give your content a personal flair and make it stand out.

Picsart Features:

PHOTO EDITOR
• Try trending filters for pictures and popular photo effects
• Use the Background Eraser to erase and replace backgrounds
• Clean up pics and remove unwanted objects with the Remove Object tool
• Use millions of curated, free images or edit your own pictures
• Add text to photos with 200+ designer fonts
• Retouch selfies with hair color changer, makeup stickers & more
• Blur backgrounds with our AI-powered smart selection tool
• Quickly flip & crop photos
• Add stickers to pictures and create your own stickers

VIDEO EDITOR
• Create and edit videos with our easy-to-use video editor with music
• Take your IG Stories, TikToks & Reels to the next level
• Add music to your videos using our extensive video editor music library
• Crop video clips to the perfect dimensions and ratios
• Try Glitch video effects and other trendy filters in the video editor
• Trim videos or use smart video merger to blend videos
• Design using the slideshow maker with music
• Add your best moments to a video collage

COLLAGE MAKER
• Create on-trend photo collages with your favorite pictures
• Try photo grid collage, freestyle collage, scrapbook, and frames for pictures
• Go viral with our meme generator & share with friends
• Use the Story Maker and level up your Instagram game with Story templates

STICKER MAKER + FREE STICKERS
• Discover over 60+ million Picsart stickers
• Add stickers to pictures to turn up the fun level on your edits
• Download any sticker for free and use it instantly
• Make your own clipart and create unique custom stickers

PHOTO EFFECTS & FILTERS
• Outline selfies with the popular Sketch effects
• Turn portraits into artistic masterpieces with Canvas effects
• Make Drip Art with dripping effect stickers & customize the blend mode
• Cartoon yourself in a tap with cartoon effects

DRAWING TOOL
• Use Picsart Draw with customizable brushes, layers, & pro drawing tools
• Doodle on pictures and create a transparent clothes effect
• Start with a blank canvas to create art and illustrations from scratch

REPLAY
• Recreate trending edits in a couple of taps. Cut editing time in half with easy customizable steps
• Edit multiple pictures in the same style.
• Keep your IG feed on-trend and consistent by creating personal presets

ALL-IN-ONE PHOTO & VIDEO EDITOR
• Remove background in a tap and remove objects from photos
• Hundreds of stylized filters
• Add stickers to photos
• Retouch selfies, change hair color, and remove blemishes

PICSART GOLD
• The Picsart Gold subscription grants access to NEW EXCLUSIVE content all the time. Get all the top features with an ad-free editing experience.
---
Start your Picsart Gold membership with a free trial - limited to one per Google Play account. Once the trial is over, you’ll be charged a nominal subscription fee. Your Gold subscription will automatically renew unless auto-renew is turned off at least 24 hours before the end of the current period. If your subscription is subject to any promotional discount, the discount will expire upon the end of the current period & you’ll be charged the standard rate upon renewal. Go to your Google Play account to manage your membership & to turn auto-renew off. Your Google Play account will be charged when the purchase is confirmed.

Terms and conditions: https://picsart.com/terms-and-conditions
About Ads: https://picsart.com/privacy-policy#interest-base\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0808754,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.picsart.studio\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.picsart.studio/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.picsart.studio/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.picsart.studio/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.picsart.studio/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Secure VPN-Safer Internet\",\n \"appId\": \"com.fast.free.unblock.secure.vpn\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.fast.free.unblock.secure.vpn\",\n \"icon\": \"https://play-lh.googleusercontent.com/jGWTmzRGONph6Z8Df6JRuTVbBrL8-k-Tdx6CDzJblf5Rcxr914wZxrdCn6G2Jta0kks\",\n \"developer\": {\n \"devId\": \"Signal Lab\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Signal%20Lab\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Secure VPN is a lightning-fast app provide free VPN service. Not need any configuration, just simply click one button, you can access the Internet securely and anonymously.

Secure VPN encrypts your Internet connection so that third parties can’t track your online activity, making it more secure than a typical proxy, make your Internet's safety and security, especially when you using public free Wi-Fi.

We have built a global VPN network included America, Europe and Asia, and expand to more country soon. Most servers are free to use, you can click the flag and change server as any times as you want.

Why choose Secure VPN?
✅ Large number of servers, high-speed bandwidth
✅ Choose apps which using VPN (Android 5.0+ required)
✅ Works with Wi-Fi, 5G, LTE/4G, 3G and all mobile data carriers
✅ Strict no-logging policy
✅ Smart choose server
✅ Well-designed UI, a few ADs
✅ No usage and time limit
✅ No registration or configuration required
✅ No additional permissions required
✅ Tiny size, more safer

Download Secure VPN, the world's fastest secure virtual private network, and enjoy it all!

If Secure VPN connect failed, don't worry, you can follow these steps to fix it:
1) Click the flag icon
2) Click the refresh button to check servers
3) Choose the fastest and most stable server to reconnect

Hoping you suggestion and good rating to keep it growing and make it better :-)


VPN related introduction

A virtual private network (VPN) extends a private network across a public network, and enables users to send and receive data across shared or public networks as if their computing devices were directly connected to the private network. Applications running across the VPN may therefore benefit from the functionality, security, and management of the private network.

Individual Internet users may secure their transactions with a VPN, to circumvent geo-restrictions and censorship, or to connect to proxy servers for the purpose of protecting personal identity and location. However, some Internet sites block access to known VPN technology to prevent the circumvention of their geo-restrictions.

VPNs cannot make online connections completely anonymous, but they can usually increase privacy and security. To prevent disclosure of private information, VPNs typically allow only authenticated remote access using tunneling protocols and encryption techniques.

Mobile virtual private networks are used in settings where an endpoint of the VPN is not fixed to a single IP address, but instead roams across various networks such as data networks from cellular carriers or between multiple Wi-Fi access points. Mobile VPNs have been widely used in public safety, where they give law enforcement officers access to mission-critical applications, such as computer-assisted dispatch and criminal databases, while they travel between different subnets of a mobile network.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.741363,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.fast.free.unblock.secure.vpn\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.fast.free.unblock.secure.vpn/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.fast.free.unblock.secure.vpn/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.fast.free.unblock.secure.vpn/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.fast.free.unblock.secure.vpn/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Adobe Acrobat Reader: Edit PDF\",\n \"appId\": \"com.adobe.reader\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.adobe.reader\",\n \"icon\": \"https://play-lh.googleusercontent.com/BkRfMfIRPR9hUnmIYGDgHHKjow-g18-ouP6B2ko__VnyUHSi1spcc78UtZ4sVUtBH4g\",\n \"developer\": {\n \"devId\": \"Adobe\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Adobe\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Do you need to work with documents on the go? Get the Adobe Acrobat Reader mobile app, the world’s most trusted PDF viewer, with more than 635 million installs. Store your files online and read PDF files anywhere with this leading, free PDF reader and file manager. You can also view, share, annotate, and add e-signatures to PDF documents.

With a premium subscription you can use Acrobat Reader as a PDF editor to edit text and images, a PDF converter to export to and from PDF, or use other advanced features to create PDFs, combine PDF documents, organize PDFs, and more.

VIEW AND PRINT PDFs
• Open and view PDFs with the free Adobe PDF viewer app.
• Choose Single Page or Continuous scroll mode.
• Help save battery with dark mode.
• Print documents directly from your device.

READ PDFs MORE EASILY
• Get the best PDF reading experience with Liquid Mode.
• Content in your PDF document reflows to fit your screen.
• Use the Liquid Mode outline for quick navigation.
• Search to find text fast in your PDF documents.

SHARE PDFs AND COLLABORATE
• Share files for commenting or viewing.
• Collect comments from multiple people in one file online.
• Speed document reviews by responding to each other’s comments.
• Receive activity notifications for files you’ve shared.

ANNOTATE PDFs
• Add PDF notes and comments, including sticky notes and highlights.
• Write on PDF documents by adding text or drawings.
• Share a file with others to collect all comments in one place.

EDIT PDFs
• Subscribe to edit text and images directly in your PDF.
• Fix a typo or add a paragraph with the paid PDF editor feature.
• Add, delete, or rotate an image with your upgraded Acrobat PDF app.

FILL AND SIGN FORMS
• Easily fill in PDF forms with the form filler feature.
• E-sign documents using your finger or stylus.

STORE AND MANAGE FILES
• Sign in to your free account to store and access files across devices.
• Access all your files by linking online storage accounts, like Microsoft OneDrive, Dropbox, or Google Drive.
• Star files to quickly open your most important or favorite documents.

CONNECT TO GOOGLE DRIVE
• Connect your Google Drive account to access PDFs and other files with ease.
• View, share, and star Google Drive files directly in Acrobat Reader.
• Create, edit, combine, compress, and export Google Drive files with a subscription.

WORK WITH SCANNED DOCUMENTS
• Access scanned PDFs that you’ve captured using the free Adobe Scan app.
• Open your scans in Adobe Acrobat Reader to fill, sign, comment, and share.

IN-APP PURCHASE
Subscribe for even more PDF power. Subscriptions work across mobile and web.
• Edit text and images right in your PDF document (mobile only).
• Combine files into one PDF file and organize pages.
• Create PDF files from documents or images.
• Export PDFs to Microsoft Word, Excel, or PowerPoint.
• Compress PDF files to reduce file size.
• Protect PDF documents by adding passwords.

The Acrobat Reader mobile app is designed to work with customers who have Enterprise Mobility Management (EMM) enabled.

Terms & Conditions:
Your use of this application is governed by the Adobe General Terms of Use http://www.adobe.com/go/terms_en and the Adobe Privacy Policy http://www.adobe.com/go/privacy_policy_en

Do Not Sell My Personal Information: https://www.adobe.com/go/ca-rights

The Adobe Acrobat Reader PDF creator and document editor app puts your office in your pocket. View, annotate, fill, sign, and share PDF files with the free Adobe PDF reader. Convert JPG files to PDF format, create and sign fillable PDF forms, and add your e-signature to shared documents. Working with PDF documents has never been so easy.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5844045,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.adobe.reader\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.adobe.reader/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.adobe.reader/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.adobe.reader/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.adobe.reader/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Fabulous Booster-Phone Cleaner\",\n \"appId\": \"com.fabulous.booster\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.fabulous.booster\",\n \"icon\": \"https://play-lh.googleusercontent.com/Xk15rv3zlGFVPqUtHBsfQUSbFqlFLmBLFS88VqCe5OszJaQFgepq35R4LZ1oz-gq6A\",\n \"developer\": {\n \"devId\": \"Mobnet Team\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Mobnet%20Team\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Why Fabulous Booster is a MUST-HAVE app?
★ Fabulous Booster is a professional management software for phone😎,with functions such as cleaning up junk files and speed booster, helping you save your laggy android phone, clean the junk!

-----------------------------------------------

Fabulous Booster Features:
🚀JUNK CLEANER (JUNK FILES)
Fabulous Booster helps free up your storage space by removing junk, residual and cache files which slows down your phone.
With our professional cleaner, you can also free up much more space from cleaning cache data from social apps without worrying about deleting the wrong files.

🚀BOOST MOBILE
Is your Android phone running heavily? Fabulous Booster helps speed up the phone by freeing up RAM. After boosting your mobile, you can run a speed test to see how much faster it is.

🔋BATTERY SAVER
Fabulous Booster can usefully detect and shut down background apps to cool down the CPU temperature, drop your phone temperature, free up CPU usage and protect your phone from overheated. Cooler, comfortable and flash freezing phone experience start from free master app Fabulous Boosterr!

🚀CPU Cooler
CPU Cooler can cool down your android phone CPU temperature with one tap.

🔥Fast and Simple
Fabulous Booster's user interface is simple and intuitive, making it user-friendly and easy to clean cache and junk files to free up your phone's RAM.

Fabulous Booster can optimize and speed up your Android phone with just 1 tap. Fabulous Booster can also scan your phone for cache and junk files, and have them cleaned up to greatly improve your phone's processing speed.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1926603,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.fabulous.booster\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.fabulous.booster/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.fabulous.booster/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.fabulous.booster/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.fabulous.booster/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Wallet\",\n \"appId\": \"com.google.android.apps.walletnfcrel\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.walletnfcrel\",\n \"icon\": \"https://play-lh.googleusercontent.com/DHBlQKvUNbopIS-VjQb3fUKQ_QH0Em-Q66AwG6LwD1Sach3lUvEWDb6hh8xNvKGmctU\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Google Wallet gives you fast, secure access to your everyday essentials. Tap to pay everywhere Google Pay is accepted, board a flight, go to a movie, and more – all with just your phone. Keep everything protected in one place, no matter where you go.

CONVENIENT

Get what you need fast
+ Three quick ways for accessing your everyday essentials: use your phone’s quick settings for fast access, open the Wallet app from your homescreen or use Google Assistant when your hands are busy.

Carry cards, tickets, passes, and more
+ Catch a train, see a concert, or earn rewards at your favorite stores with a digital wallet that carries more
+ [US Only] Unlock the world around you with a digital wallet that carries your drivers license and digital car keys

What you need, right when you need it
+ Your Wallet can suggest what you need, right when you need it. Get a notification for your boarding pass on the day of travel, so you’ll never have to fumble in your bag again.

HELPFUL

Keep track of receipts
+ Easily find transaction details in Wallet, including smart details like location pulled from Google Maps

Seamless integration across Google
+ Sync your Wallet to keep your Calendar and Assistant up to date with the latest info like flight updates and event notifications
+ Shop smarter by seeing your point balances and loyalty benefits in Maps, Shopping, and more

Get started in a snap
+ Set up is seamless with the ability to import cards, transit passes, loyalty cards and more that you’ve saved on Gmail.

Stay in the know on the go
+ Make boarding flights a breeze with the latest information pulled from Google Search. Google Wallet can keep you posted on gate changes or unexpected flight delays.

SAFE & PRIVATE

A secure way to carry it all
+ Security and privacy are built into every part of Google Wallet to keep all your essentials protected.

Android security you can count on
+ Keep your data and essentials secure with advanced Android security features like 2-Step Verification, Find My Phone, and remotely erasing data.

Tap to pay keeps your card secure
ALT: + When you tap to pay with your Android phone, Google Pay doesn’t share your real credit card number with the business, so your payment info stays safe.

You’re in control of your data
+ Easy to use privacy controls allow you to opt-in to sharing information across Google products for a tailored experience.

Google Wallet is available on all Android phones and Wear OS devices (Lollipop 5.0+).
Still have questions? Head over to support.google.com/wallet.\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9639995,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.walletnfcrel\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.walletnfcrel/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.walletnfcrel/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.walletnfcrel/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.walletnfcrel/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Move to iOS\",\n \"appId\": \"com.apple.movetoios\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.apple.movetoios\",\n \"icon\": \"https://play-lh.googleusercontent.com/7oYf_DNF77eJr9bIoY_GuN1OmYbgQL2VkZLTUfVI4TAspf8qdSjeJpIYbNQe-Va3FJlk\",\n \"developer\": {\n \"devId\": \"Apple\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Apple\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Everything about iOS is designed to be easy. That includes switching to it. With just a few steps, you can migrate your content automatically and securely from your Android device with the Move to iOS app. No need to save your stuff elsewhere before switching from Android. The Move to iOS app securely transfers all kinds of content for you:

Contacts
Message history
Camera photos and videos
Web bookmarks
Mail accounts
Calendars

Make sure to keep your devices nearby and connected to power until the transfer is complete. When you choose to migrate your data, your new iPhone, iPad or iPod touch will create a private Wi-Fi network and find your nearby Android device running Move to iOS. After you enter a security code, it will begin transferring your content and put it in the right places. Just like that. Once your content has been transferred, you’re ready to get going. iOS will also set up your default mail account. That’s it — you can start using your new iPhone, iPad or iPod touch and experiencing its endless possibilities. Enjoy.

Move to iOS is supported on all phones and tablets running Android 4.0 and later.\",\n \"scoreText\": \"3.0\",\n \"score\": 3.037931,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.apple.movetoios\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.apple.movetoios/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.apple.movetoios/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.apple.movetoios/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.apple.movetoios/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Psiphon Pro\",\n \"appId\": \"com.psiphon3.subscription\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.psiphon3.subscription\",\n \"icon\": \"https://play-lh.googleusercontent.com/_iiNmMETMP9ofhZFa-PPqQk39cOP5yzXH6olnXc8ZwhQ9YH4KwDdstLEcTEODESUSg\",\n \"developer\": {\n \"devId\": \"Psiphon Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Psiphon%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Psiphon Pro gives you unprecedented access to your favourite news broadcast or social media platforms. By its nature, Psiphon Pro also protects you when accessing WiFi hotspots by creating a secure, private tunnel between you and the Internet. Psiphon Pro is the best VPN tool for accessing everything on the Internet.

Features:
• Global network featuring thousands of servers and diverse entry points, keeping you connected at all times
• No registration required, just download and connect for free
• Wider selection of protocols than a VPN, offering unparalleled access to everything on the Internet through our global Psiphon server network
• In-app usage stats
• Configuration options - make Psiphon your own VPN with customized proxy settings
• Choose which apps to exclude from the VPN tunnel
• Open-source, peer-reviewed and trustworthy. Find out more at https://github.com/Psiphon-Inc/psiphon, and read a full audit here - https://psiphon3.net/assets/Psiphon-3-iSEC-Partners-v1.1-08-2014.pdf

You can pay a subscription fee through Google Play to remove ads and enjoy a further optimized use of Psiphon Pro, the best VPN out there.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.411669,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.psiphon3.subscription\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.psiphon3.subscription/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.psiphon3.subscription/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.psiphon3.subscription/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.psiphon3.subscription/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Twitch: Live Game Streaming\",\n \"appId\": \"tv.twitch.android.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/tv.twitch.android.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/QLQzL-MXtxKEDlbhrQCDw-REiDsA9glUH4m16syfar_KVLRXlzOhN7tmAceiPerv4Jg\",\n \"developer\": {\n \"devId\": \"Twitch Interactive, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Twitch%20Interactive%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Watch livestream gaming videos, Esports and any IRL broadcast on your Android device! Stream your favorite MMO RPG, strategy and FPS games for PS4, PS5, PC, Xbox One and Nintendo Switch. Twitch gives you live streaming and gamer chat in the palm of your hand.

Sports are here. Tune into your favorites: basketball, baseball, soccer, football, swimming, wrestling, hockey, pool, and much more through talk shows, league channels, Fantasy, and ESports.

Live chat as you watch gamers play everything from Valorant to League of Legends. Watch Fortnite Battle Royale, Minecraft Sessions, 2k Blacktop, Overwatch killstreaks, and FIFA showdowns. Multiplayer games not your thing? Livestream any IRL content you can think of, from art demos to animal videos!

Twitch Game Live Streaming and Chat: TOP 3 FEATURES
1. Watch gamers play any single or multiplayer game; with Minecraft, Fortnite, CS:GO, PUBG, FIFA, League of Legends, Call of Duty, Valorant, Grand Theft Auto, Overwatch, World of Warcraft: The Burning Crusade, Apex, WildRift, Garena Free Fire and much more. You can really let your gaming flag fly! Stream content from the biggest MMO RPG, MOBA, strategy and FPS games out there, or settle in for nail-biting Esports tournaments.
2. Live chat during any gaming, Esports and IRL broadcast. Connect with your favorite streamers and fellow gamers to talk strategy and gameplan.
3. Broadcast your very own gaming content! Livestream GTA on Xbox One, build Minecraft monoliths on Nintendo Switch, take down your Fortnite enemies on PS5, dive into WildRift on your mobile device, or show off in Valorant on PC!

Looking for something other than gaming? Join live discussions around your favorite sports, listen to podcasts, check out music concerts, or just chat within the community.

+ Stream interactive live news videos with exclusive content for PS4, PS5, Xbox One, Nintendo Switch and PC.
+ Watch unique programming: livestream anything from art demos, to music festivals, to just chatting with others!
+ Discover new multiplayer games and IRL videos with ease thanks to simple and intuitive navigation.
+ Switch to Dark Mode for those late night viewing and gamer chat sessions.

Join the millions of hardcore and casual gamers who have found a place to connect over the MOBA or FPS games they love. Take your passion to the next level with Twitch!

------

For feedback and assistance, please visit our Support Center: https://help.twitch.tv

Please note: This app features Nielsen’s proprietary measurement software which contributes to market research, like Nielsen’s TV Ratings. Please see http://priv-policy.imrworldwide.com/priv/mobile/us/en/optout.html for more information\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4543138,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=tv.twitch.android.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/tv.twitch.android.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/tv.twitch.android.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/tv.twitch.android.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/tv.twitch.android.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"The Home Depot\",\n \"appId\": \"com.thehomedepot\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.thehomedepot\",\n \"icon\": \"https://play-lh.googleusercontent.com/n-vPcnP-kTyZ5eH6QJkIvAhylJuU__wOZyfcJR3D3u2N1aChqfXEroE4KVSfNlGd2Hs\",\n \"developer\": {\n \"devId\": \"The Home Depot, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/The%20Home%20Depot%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"It’s a good time to be a doer.

DIY IN THE PALM OF YOUR HAND
Save time with The Home Depot app. Shop over one million products and find the info you need most.

SNAP A PICTURE, FIND WHAT YOU NEED
Don’t know what something’s called? Just snap a picture and let our Image Search feature tell you.

A GPS FOR YOUR SHOPPING LIST
Use the Product Locator to find what you’re looking for and check store inventory. We'll take you to the exact aisle and bay.

MAKE INFORMED BUYING DECISIONS
Get Ratings & Reviews in a matter of seconds. Use the barcode reader to scan an item and read what other customers have to say.

DO MORE WITH AN ACCOUNT
Signing up is quick and free. Get access to real-time order tracking info, view purchase history, enable instant checkout and more.

SHOP SPECIAL BUYS & VIEW LOCAL AD
Look for a new Special Buy on the app home screen each day. Plus, check out your local ad for all the latest from your Home Depot.

Privacy Policy - https://www.homedepot.com/c/Privacy_Security
Do Not Sell My Personal Information - https://www.homedepot.com/c/exercise_my_privacy_rights

We want to hear from you – email us at apphelp@homedepot.com and let us know how we are doing.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3052793,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.thehomedepot\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.thehomedepot/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.thehomedepot/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.thehomedepot/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.thehomedepot/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Zillow: Homes For Sale & Rent\",\n \"appId\": \"com.zillow.android.zillowmap\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.zillow.android.zillowmap\",\n \"icon\": \"https://play-lh.googleusercontent.com/OB8xIkDrDEHWGwEow-daLIhyVHaAC4Pt3ZgsroGreUW8jqQb2QK2uvuogO1haZKAlu0\",\n \"developer\": {\n \"devId\": \"Zillow\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Zillow\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Find tools to buy, sell or rent a home and keep millions of listings right at your fingertips with the Zillow app. Change starts here.

BUY A HOME – Find your place with immersive photos, virtual tours, and the most listings, including things you won’t find anywhere else.

RENT A HOME – From shopping on the largest rental network to automating applications, we’ve created a seamless online experience for renters.

The Zillow app gives you resources and tools you won’t find anywhere else, so you can shop smarter for your next home:

• The most listings and constant updates so you never miss out¹
• 3D Home Tours so you can picture yourself in a home and narrow down which houses to visit in person
• Self Tour for Zillow-owned homes, with no appointment and no pressure. Stop by when it’s convenient and unlock the door with the app
• Zestimate®, the industry-leading independent home valuation tool, calculated daily
• Robust filters for school districts, views, pricing, pets, HOAs, and more
• Easier co-shopping: Tag your favorite home features and share your favorites to coordinate your search with a partner or roommate
• Push notifications to let you know when houses come to market, have a sale pending, or drop in price
• Neighborhood details including restaurants, grocery stores, parks, and coffee shops
• Easy access to Zillow Premier Agents, local real estate experts who meet Zillow’s bar for quality customer service
• All the pricing and details you need to compare homes & apartments for rent
• A personal renter profile so you can visit a house rental and engage directly with potential landlords and property managers who rent homes

1. Most listing based on direct site comparisons\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7165713,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.zillow.android.zillowmap\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.zillow.android.zillowmap/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.zillow.android.zillowmap/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.zillow.android.zillowmap/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.zillow.android.zillowmap/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Plex: Stream Movies & TV\",\n \"appId\": \"com.plexapp.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.plexapp.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/slZYN_wnlAZ4BmyTZZakwfwAGm8JE5btL7u7AifhqCtUuxhtVVxQ1mcgpGOYC7MsAaU\",\n \"developer\": {\n \"devId\": \"Plex, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Plex%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Stream movies and TV shows, plus 200+ live TV channels, instantly, without a subscription. Watch all of your favorites, whether it's the latest TV series, hottest movies or live channels. Plex lets you watch for free, anywhere, from any device.

Streaming TV and movies has never been easier. Stream movies free from A24, Crackle, Paramount, AMC, Magnolia, Relativity, Lionsgate, and more! Enjoy hundreds of free, full length movies from every genre: action movies, anime movies, horror movies, children’s movies, dramas, comedies, documentaries, and much more.

Watch TV shows you know and love or discover a brand new series with Plex’s free streaming services. Stream on demand TV series and live channels anywhere and on any device with Plex! There's something for the whole family from food to news, sports to kids, international content and more!

Stay up-to-date with Plex: 24 free news channels including Newsy, USA Today, Euronews, Reuters TV, and People TV. Plus watch top local news sources for most U.S. markets. Live TV streaming with over 200+ channels available for free, instantly.

Plex also offers a media server solution that organizes your personal media. Curate and stream your personal collection of movies, TV and music anywhere on all your devices. Free music streaming and podcast live streams let you listen to all your favorites.

Stream live TV, watch free movies and discover new shows and more with Plex!

PLEX FEATURES:

Free Streaming App:
- Stream TV and get access to over 200+ channels of free live TV
- Content and series for the whole family: watch kid shows, news, sports, and more
- Live stream news from CBS, Financial Times, Euronews, local news channels and more
- Upgrade to the ultimate TV experience to watch and record local shows, news and sports
- Watch free TV with free streaming movies and free tv shows

Watch Movies Anywhere:
- Watch movies online free, anytime
- Stream new movies, cult classics and other on demand movies for free
- Free movies from all categories: action movies, children movies, anime movies, dramas, comedies and more

TV Channels and Shows:
- Live TV streaming and on-demand TV shows anywhere, on any device
- Watch TV series favorites or find something new for the whole family
- Live TV channels available instantly, with free TV streaming
- Free Live TV streaming just got better with six new channels from AMC Networks

Free Music Media Server and Video Streaming:
- Plex scans and organizes your files, automatically sorting your media beautifully and intuitively in your Plex library
- Organize personal content, search your favorite podcasts, discover new ones, and stream free music
- Store all your personal media such as music, movies and shows, and stream them on any device

Download today and stream movies, live tv, music and more, with Plex.

Visit https://www.plex.tv/free for more information.

Note: If you’ve already purchased the app through Google Play Store or you have a Plex Pass, you do NOT need to purchase again! Your previous purchase will be automatically detected.

Note: Media playback from your Plex Media Server on mobile devices is limited (one minute for music and video, watermark on photos) until the app is unlocked. To remove playback restrictions, upgrade to Plex Pass -OR- make a small, one-time, in-app purchase. If you have a Plex Pass or you’ve already purchased the app through the Google Play Store, you do NOT need to purchase again! Your previous purchase will be automatically detected. Streaming personal media requires Plex Media Server version 1.18.3.0 and higher (available for free at https://plex.tv/downloads) installed and running to stream to other devices. DRM-protected content, ISO disc images, and video_ts folders not supported. Some features of this app are supported by interest-based advertising, to learn more about this and your choices regarding it visit the Plex Privacy Policy.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4345384,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.plexapp.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.plexapp.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.plexapp.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.plexapp.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.plexapp.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Earth\",\n \"appId\": \"com.google.earth\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.earth\",\n \"icon\": \"https://play-lh.googleusercontent.com/9ORDOmn8l9dh-j4Sg3_S7CLcy0RRAI_wWt5jZtJOPztwnEkQ4y7mmGgoSYqbFR5jTc3m\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Explore the whole world from above with satellite imagery and 3D terrain of the entire globe and 3D buildings in hundreds of cities around the world. Zoom to your house or anywhere else then dive in for a 360° perspective with Street View. See the world from a new point of view with Voyager, a collection of guided tours from BBC Earth, NASA, National Geographic, and more. And now, visualize the immersive maps and stories you've created with Google Earth on web on your mobile device.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2783775,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.earth\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.earth/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.earth/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.earth/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.earth/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Nox Security, Antivirus, Clean\",\n \"appId\": \"com.noxgroup.app.security\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.noxgroup.app.security\",\n \"icon\": \"https://play-lh.googleusercontent.com/wplZpri41S3lI2f3Why9O3hKFXPyCVUS7IUQzKJjRgTYTzmgR7_1ar_YLXl0Alqz2A\",\n \"developer\": {\n \"devId\": \"Nox Ltd.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Nox%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"⭐Nox Security is a security and antivirus app⭐providing Virus Cleaner, Junk Cleaner, Memory Booster, Applock, Notification Blocker, CPU Cooler, Message Security, Battery Saver, and WiFi Security for Android devices.

【Nox Security Highlights】
✨Virus Cleaner: Provide complete protection for your mobile phone
🚀Junk Clean Master: Release and get more storage space
🧹Memory Booster: For a faster and lighter smartphone
🔐App lock: Protect personal apps and guard privacy
🔕Notification Blocker: Block annoying and useless notifications
🌡️One Tap CPU Cooler: Protect your device from overheating
📲Message Security Master: Prevent others from peeping your privacy
🧐WiFi Security: Protect your device from any network attacks
🔋 Battery Saver Master: Stop power draining apps with only one tap

Nox Security, security master providing strong antivirus services
Nox Security can defend against mobile viruses, spyware, and online frauds. Virus cleaner can help you to scan and clean mobile viruses and also protect your private files by making your phone safer. Try Nox Security antivirus feature!

🚀Release more storage space with junk cleaner & max memory booster
With Nox Security max cleaner, you can clean the junk files including system cache, application cache, and residual files. You can also manage and uninstall the apps that are rarely used to make your phone storage usage maximum. Our strong memory booster can help with optimizing your phone speed and help you to get a lighter and faster phone.

🔐Protect apps and guard privacy with smart app lock
Nox Security can lock all android apps and give your phone privacy protection. You can only open the protected apps with a pattern lock, password, or fingerprint. You can use Nox Security applock to lock your private apps to keep away from being opened or viewed by others.

🔕Block unwanted notifications, stay away from annoying spam
Nox Security provides a powerful and efficient notification blocker. You can use the notification blocker to avoid junk notifications. Prevent spam from jamming and slowing down your phone by blacklisting the apps. It will keep your phone from being disturbed and make your notification bar clean.

Strong security master - Real-time protection ensures security
Nox Security not only provides the basic antivirus features, but it can also protect your device on a real-time basis. Get alert to avoid virus apps with real-time protection enabled.

🧐WiFi Security, defense attacks & check internet security
Nox Security can protect your device safe from any network attacks. WiFi security will help to check whether the WiFi you are connecting to is safe or not. It will also protect your personal information when you are surfing the internet.

📲Message security, protect privacy with Nex Security
Are you worried about your private message peeing by others? With the message security of Nox Security, you can prevent others from peeping your notification preview. Use Nox Security, clean mobile viruses, and protect your privacy.

🔋Stop power-draining apps with smart battery saver master
With max battery saver, Nox Security can help you close inactive applications that run in the background. It is the simplest way to keep your battery healthy by stopping power-consuming apps and monitoring battery status and usage.

📋【Nox Security Notes】
Nox Security will keep your information secure and not share it with anyone else by the Privacy and Cookies Policy.
Accessibility Service: We request Accessibility to provide a deep clean service and we promise that the permission will not be used in reading any of your privacy information or changing your settings.
If you like our application, please rate 5 stars!

Contact us:
https://www.facebook.com/NoxSecurity-1998700043513309/inbox/
noxsecurity@noxgroup.com\",\n \"scoreText\": \"4.3\",\n \"score\": 4.328173,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.noxgroup.app.security\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.noxgroup.app.security/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.noxgroup.app.security/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.noxgroup.app.security/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.noxgroup.app.security/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Classroom\",\n \"appId\": \"com.google.android.apps.classroom\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.classroom\",\n \"icon\": \"https://play-lh.googleusercontent.com/w0s3au7cWptVf648ChCUP7sW6uzdwGFTSTenE178Tz87K_w1P1sFwI6h1CLZUlC2Ug\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Classroom makes it easy for learners and instructors to connect—inside and outside of schools. Classroom saves time and paper, and makes it easy to create classes, distribute assignments, communicate, and stay organized.

There are many benefits to using Classroom:
• Easy to set up – Teachers can add students directly or share a code with their class to join. It takes just minutes to set up.
• Saves time – The simple, paperless assignment workflow allows teachers to create, review and mark assignments quickly, all in one place.
• Improves organization – Students can see all of their assignments on an assignments page, and all class materials (e.g., documents, photos, and videos) are automatically filed into folders in Google Drive.
• Enhances communication – Classroom allows teachers to send announcements and start class discussions instantly. Students can share resources with each other or provide answers to questions on the stream.
• Secure – Like the rest of Google Workspace for Education services, Classroom contains no ads, never uses your content or student data for advertising purposes.


Permissions Notice:
Camera: Needed to allow the user to take photos or videos and post them to Classroom.
Storage: Needed to allow the user to attach photos, videos, and local files to Classroom. It's also needed to enable offline support.
Accounts: Needed to allow the user to choose which account to use in Classroom.\",\n \"scoreText\": \"2.4\",\n \"score\": 2.3572798,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.classroom\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.classroom/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.classroom/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.classroom/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.classroom/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Domino's Pizza USA\",\n \"appId\": \"com.dominospizza\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.dominospizza\",\n \"icon\": \"https://play-lh.googleusercontent.com/1qMAenQQmSAlTGuAU12gb2L6Ka6aX7XP3f3crKg3Sduwed_Lo1wV5taMLih3C0i-mFOs\",\n \"developer\": {\n \"devId\": \"Domino's Pizza LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Domino's%20Pizza%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Conveniently order Domino’s from anywhere on your Android phone or tablet. Build your pizza just the way you like it or choose one of our specialty pizzas. Add items from the rest of our oven-baked menu including chicken, pasta, sandwiches, bread, drinks and desserts. And with the Domino’s Tracker ® you can follow your order from the moment you place it until it’s out for delivery or ready for pickup!

Use the Domino’s app to order from locations in the United States, not including Puerto Rico. To place an order in Puerto Rico, visit www.DominosPR.com.

¡Pide Domino’s en inglés o en español! Nuestro app se configura automáticamente con el idioma que has escogido para tu smartphone o tableta.

Utilice la aplicación de Domino a la orden de localidades en los Estados Unidos, sin incluir Puerto Rico. Para realizar un pedido en Puerto Rico, visite www.DominosPR.com.

FEATURES:

· Create a Pizza Profile to easily access to your saved info and recent orders (not required)

· Order faster than ever by creating an Easy Order!

· Sign up for Domino’s Piece of the Pie Rewards® and earn points toward free pizza!

· Pay with cash, credit card, debit card or Domino’s gift card

· Use our voice ordering assistant, Dom, to add items to your cart and to select a coupon

· Use Android Wear to track orders, or place an Easy Order or Recent Order right from your wrist

· Use Domino’s Tracker notifications to follow your order until it’s out for delivery or ready for pickup!


APP PERMISSIONS:

Location
· Precise location/GPS – identifies your closest stores for easier carryout ordering

Phone
· Directly call phone numbers – makes it possible for you to call your local store with a single tap within the app

Camera
· Take pictures and videos – used to quickly capture debit or credit card information at checkout

Photos/Media/Files
· USB Storage – required for upgraded Google Maps

Microphone
· Record audio – needed to enable Dom, our voice ordering assistant

Bluetooth connection information
· Needed for integration with Ford Sync, Android Wear and Pebble watch

Device ID & call information
· Read phone status and identity – required as part of the Ford Sync feature, this is used if you want to call your store through Sync while your phone screen is locked

Other
· Full network access – this allows us to communicate with the Domino’s systems to provide you with the latest store menus and coupons and it is needed to place orders from the app

· View network connections - required by Google Maps, which we use to show store locations

· Network communication - enables push notifications, giving you access to app exclusives, coupons and deals

· Control vibration – helps alert you to updates, like changes in order status as it progresses through the Tracker

· Prevent phone from sleeping – if you are using your voice to order, the app will prevent the phone from going to sleep (which would otherwise happen because you aren’t tapping the phone)\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6454773,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dominospizza\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.dominospizza/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.dominospizza/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.dominospizza/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.dominospizza/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Amazon Alexa\",\n \"appId\": \"com.amazon.dee.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.amazon.dee.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/X24ol80nJS3F_nUg3HlqWWzSxEnDHeAI34quN8rTjILQOoebd0Be3ZFBQrKAtMX2XyE\",\n \"developer\": {\n \"devId\": \"Amazon Mobile LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Amazon%20Mobile%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Use the Amazon Alexa App to set up your Alexa-enabled devices, listen to music, create shopping lists, get news updates, and much more. The more you use Alexa, the more she adapts to your voice, vocabulary, and personal preferences.

DISCOVER MORE
• Get more out of your Echo device through personalized feature recommendations from Alexa
• Discover and enable recommended Alexa skills
• Pick up where you left off directly from the home feed with lists, shopping, or recently played Music and Books

MANAGE YOUR DEVICES
• Set up your Alexa-enabled devices, control or check status of your compatible smart lights, locks and thermostats at home or on the go
• Create routines to automate your smart home devices

MUSIC & BOOKS
• Connect to music services like Amazon Music, Pandora, Spotify, TuneIn, and iHeartRadio. Choose a song or playlist and listen on your Alexa-enabled devices
• Create speaker groups to play music across your compatible Echo devices for multi-room music

ORGANIZE YOUR DAY
• View and edit shopping and to-do lists on the go, get weather and news updates, manage timers and alarms, and more

STAY CONNECTED
• Use Drop In from your app to connect instantly with your compatible Echo devices, like a two-way intercom
• Call or message supported Alexa-enabled devices, at no additional cost\",\n \"scoreText\": \"4.4\",\n \"score\": 4.393785,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.amazon.dee.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.amazon.dee.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.amazon.dee.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.amazon.dee.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.amazon.dee.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Microsoft Office: Edit & Share\",\n \"appId\": \"com.microsoft.office.officehubrow\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.officehubrow\",\n \"icon\": \"https://play-lh.googleusercontent.com/D6XDCje7pB0nNP1sOZkwD-tXkV0_As3ni21us5yZ71_sy0FTWv1s_MQBe1JUnHlgE94\",\n \"developer\": {\n \"devId\": \"Microsoft Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Microsoft%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Microsoft Office brings you Word, Excel, and PowerPoint all in one app. Take advantage of a seamless experience with Microsoft tools on the go with the Office app, the simple solution for productivity, document, spreadsheet, presentation, and file management. Microsoft Office can be used as a cover letter creator with the help of powerful, customizable templates.

Scan or sign PDF files, create spreadsheets, build your resume or draft up documents anytime and anywhere by accessing integrated Office features through your mobile device. Complete your workflows, no matter where you are, even if your network connection is temporarily interrupted. From Word documents, PowerPoint presentations or Excel files, the Office app provides you with one seamless experience.

With intelligent cloud services and trusted security, the Office app will help maximize your productivity in both work and life.

Word, Excel, and PowerPoint Combined:
• Widely used tools now accessible within a single application, the go-to docs app for productivity.
• Use Microsoft Office as a cover letter creator and resume editor with our professional templates.
• Store and access Word, Excel & PowerPoint files using the cloud-based storage.
• Word documents and excel sheets can be created and collaborated on with others in real-time.
• PowerPoint presentations can be shared and edited. Practice your presentation with Presenter Coach.
• Excel worksheets can be created using one of the many templates available in-app, or instantly edited.
• Document and file shared view makes it easy to access and collaborate via Outlook and Teams.
• Documents like resumes and cover letters can be edited by others for seamless collaboration.

Convert Pictures and Documents with Office Lens
• Create docs by snapping a picture or uploading a photo from your camera roll.
• Transform a photo of a table into a usable Excel spreadsheet to work with the data.
• Enhance digital images of whiteboards, sheets and documents.

PDF Scanning & Editing Capabilities:
• The PDF converter tool allows you to scan PDF files and convert them into Word documents and vice versa, instantaneously
• Edit PDF files on your device quickly and easily while on the go.
• PDF Reader allows you to access and sign PDFs.

Unique Office Mobile Functions:
• Quickly jot down thoughts and ideas, and then save or share them via Sticky Notes.
• QR Scanner enables your device to scan QR codes and open attached links.
• Spreadsheets and documents can be transferred between your phone and computer or shared instantly with nearby mobile devices.

Anyone can download the Office app for free and start using it right away. Access and save documents to the cloud by connecting with a Microsoft Account (for OneDrive or SharePoint) or by connecting to a third-party cloud storage provider. Logging in with a personal Microsoft account or a work or school account connected to a Microsoft 365 subscription will unlock premium features within the app.

Achieve more while on the go with the help of Microsoft Office.

Requirements:
OS version: Last 4 major versions of Android running an ARM-based or Intel x86 processor

1 GB RAM or above

This app is provided by either Microsoft or a third-party app publisher and is subject to a separate privacy statement and terms and conditions. Data provided through the use of this store and this app may be accessible to Microsoft or the third-party app publisher, as applicable, and transferred to, stored and processed in the United States or any other country where Microsoft or the app publisher and their affiliates or service providers maintain facilities.

Please refer to Microsoft's EULA for Terms of Service for Office on Android. By installing the app, you agree to these terms and conditions: https://go.microsoft.com/fwlink/?linkid=519111\",\n \"scoreText\": \"4.5\",\n \"score\": 4.481486,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.microsoft.office.officehubrow\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.officehubrow/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.officehubrow/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.officehubrow/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.officehubrow/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Chase Mobile\",\n \"appId\": \"com.chase.sig.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.chase.sig.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/nSkpJQa6V2cjC0JEgerrwner4IelIQzg06DZY8dtGwRsq6iXcrxCX2Iop_VI9pohvnI\",\n \"developer\": {\n \"devId\": \"JPMorgan Chase\",\n \"url\": \"http://gplayapi.srik.me/api/developers/JPMorgan%20Chase\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Bank securely with the Chase Mobile® app. Manage your investments with J.P. Morgan and your Chase accounts: monitor your credit score, budget and track monthly spending, send and receive money with Zelle® and deposit checks.

Manage your accounts
•\\tReview activity in all of your accounts: checking, savings, credit card, home, auto, business and commercial banking
•\\tDeposit a check

Manage your investments with J.P. Morgan
•\\tGet commission-free trades for stocks, options, ETFs, mutual funds and more
•\\tUse portfolios designed by us and matched to your goals

Payments: Convenient ways to pay
•\\tSend and receive money with Zelle
•\\tSchedule, edit or cancel payments for your Chase credit card and other bills
•\\tTransfer money between your accounts

Credit Journey: Check your credit score
•\\tGet your credit score for free
•\\tHelp shield yourself from identity fraud with credit monitoring

Budget: Get a clearer picture of your finances
•\\tSee daily spending insights at a glance
•\\tSet up your budget and track debit/credit card transactions
•\\tGrow your savings consistently with Autosave

Security: Keep your money safe & secure
•\\t24/7 fraud monitoring for unusual account activity
•\\tLock and unlock your account if you misplace your card

Rewards, offers & deals
•\\tTrack and redeem your Chase rewards
•\\tEarn statement credit by using Chase Offers with eligible credit/debit cards

Connect with Chase
•\\tFind the nearest Chase branches and ATMs
•\\tSpeak with a representative 24/7
•\\tSchedule a meeting with a banker

Disclosure
• Some features are available for eligible customers and accounts only. Any time you review your balance, keep in mind it may not reflect all transactions including recent debit card transactions or checks you have written. A qualifying Chase transfer account is required to transfer funds via text.
• There is no charge from Chase, but message and data rates may apply. Such charges include those from your communications service provider. Delivery of alerts may be delayed for various reasons, including service outages affecting your phone, wireless or internet provider; technology failures; and system capacity limitations.
• For illustrative purposes only—not intended as an endorsement or recommendation. The projections or other information generated regarding the likelihood of various investment outcomes are hypothetical in nature, do not reflect actual investment results and are not guarantees of future results
• Commission-free online trades apply to trading in U.S. listed stocks, Exchange-Traded Funds (ETFs), and options. Option trades are subject to a $0.65 per-contract fee. Sales are subject to a regulatory transaction fee of between $0.01 and $0.03 per $1,000 of principal. There are costs associated with owning certain investments, including mutual funds and ETFs. Offer terms and pricing are subject to change and/or termination. Other fees and restrictions (including account types) apply. See chase.com/online-investing-pricing for terms and conditions.
• Options contract and other fees may apply.
• J.P. Morgan Wealth Management is a business of JPMorgan Chase & Co., which offers investment products and services through J.P. Morgan Securities LLC (JPMS), a registered broker-dealer and investment advisor, member of FINRA and SIPC. Annuities are made available through Chase Insurance Agency, Inc. (CIA), a licensed insurance agency, doing business as Chase Insurance Agency Services, Inc. in Florida. Certain custody and other services are provided by JPMorgan Chase Bank, N.A. (JPMCB). JPMS, CIA and JPMCB are affiliated companies under the common control of JPMorgan Chase & Co. Products not available in all states.
INVESTMENT PRODUCTS:
•\\tNOT A DEPOSIT
•\\tNOT FDIC INSURED
•\\tNO BANK GUARANTEE
•\\tMAY LOSE VALUE
• Android is a registered trademark of Google Inc.
• Deposit products provided by JPMorgan Chase Bank, N.A. Member FDIC
• Equal Opportunity Lender\",\n \"scoreText\": \"4.4\",\n \"score\": 4.390256,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.chase.sig.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.chase.sig.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.chase.sig.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.chase.sig.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.chase.sig.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Bumble - Dating. Friends. Bizz\",\n \"appId\": \"com.bumble.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.bumble.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/tH2ui3MqYnTyt7EG9S3DVNDO7SV7eRtts2phjaE-vZNBvf4meAx5_a5LZc_IbZGAFw\",\n \"developer\": {\n \"devId\": \"Bumble Holding Limited\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Bumble%20Holding%20Limited\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Millions of people have signed up to Bumble to find dates, make new friends, and meet new people.

Bumble is a free dating app and social network for singles where you can find friends and meet new people. Whether you want to meet friends, make genuine matches and meaningful connections, chat with strangers and new friends or look to expand your professional and social network.

Changing the rules of dating

Bumble is a free dating app founded on respect, equality, and inclusion. You can find dates, make friends, and meet new people the way you've always done — but on Bumble, women always make the first move.

- With Heterosexual matches, women have 24h to start a chat, and men have 24h to respond
- Other matches have 24h to start a chat or reply before the match expires
- Bumble comes in 3 modes to suit what you're looking for: Date, BFF, and Bizz

Discover our amazing free features

Meet new people, make a video call and find a great date or chat with your new best friend using our free dating app:
- Unlimited Swipe: Meet new people by swiping left and right as much as you like.
- Unlimited chat so you can find the right matches.
- Link your Spotify and Instagram account to share your interests with potential dates and friends
- Use Video Chat to get to know your matches better

Match with the right people

We're the first app to combine dating for singles, meeting new people, and making professional connections all in one app. We make it easy for you to connect.
- Use Video Chat to get to know your matches better
- Send your videos and favorite pictures while you are chatting with new friends
- With Snooze Mode, hide your profile whenever you want (you'll still keep all your matches!)
- Link your Spotify and Instagram account to share your interests with potential dates and friends

Boost your dating life with bumble premium
Bumble is a free dating app and always will be! Our premium features help you enhance your Bumble experience.
- See everyone who swiped you right (your Beeline)
- Rematch with expired connections for a second chance at a date
- Extend your matches by 24 hours
The buzz is real
Bumble is much more than just a dating app for singles. Join our genuinely inclusive dating community, meet new people, make friends or find your ideal partner or date.

Here are our core values:
- We believe healthy relationships are fundamental to living a productive and positive life.
- In the fight against old-fashioned hetero-norms, women always take the first step.
- We've changed the rules of the game to switch up the dynamics of dating.
---
Bumble is free to download and use. We also offer optional subscription packages (Bumble Boost and Bumble Premium) and non-subscription, single, and multi-use paid features (Bumble Spotlight and Bumble SuperSwipe).

https://bumble.com/en/privacy
https://bumble.com/en/terms\",\n \"scoreText\": \"3.9\",\n \"score\": 3.8756113,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bumble.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.bumble.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.bumble.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.bumble.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.bumble.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"QR Scanner - Barcode Scanner\",\n \"appId\": \"com.appswing.qr.barcodescanner.barcodereader\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.appswing.qr.barcodescanner.barcodereader\",\n \"icon\": \"https://play-lh.googleusercontent.com/-YfYNufnQnEI3nG8ano4pdp6pjvf_01rYw6865kcU0HnNwiFM4SRT7xn9LJQ54TL_kex\",\n \"developer\": {\n \"devId\": \"Apps Wing\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Apps%20Wing\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Looking for a QR code scanner app? Try this Free QR Scanner - QR Code Reader, Barcode Scanner that supports all QR & barcode formats! It’s the must-have barcode reader for all Android devices. QR code reader app is the most powerful tool that helps you easily scan QR codes and share them with your friends. It’s very easy to use, no need to press any button or adjust the zoom, just open it and point to the QR code, it will automatically recognize, scan, and decode the QR code and barcode.

Simple QR scanner app for android also provides the functionality of the QR code generator which creates QR without any cost. QR code scanner for Wifi password that reads QR code, scan barcode and creates QR code including text, URL, WIFI, ISBN, phone number, SMS, contact, calendar, email, location, etc. QR & barcode generator for products are very useful in all businesses, creating QR codes for your products will help products reach users in the fastest way.

Scan any QR code or barcode to get additional information including results from popular online services; Amazon, eBay, and Google - 100 % FREE!

Why Choose Simple QR Scanner and QR Reader 2021?
✔️ Easily scan and create QR & barcodes.
✔️ Support all QR & barcode formats.
✔️ Superfast QR code and barcode decoding speed.
✔️ Scan QR & barcodes from the gallery.
✔️ Price scanner.
✔️ Auto-zoom.
✔️ Flashlight supported.
✔️ Privacy safe, only camera permission required.
✔️ Scan history saved, easily search scan history.
✔️ No internet connection required.

Features:


QR Code Scanner for Android:
Need a scanner app to scan QR Code? This Free QR Scanner - QR Code Reader, Barcode Scanner is your best choice. Scan QR code fast and safely. QR & barcode scanner is an easy-to-use application. A fast QR code scanner for android will automatically recognize any QR code information.

QR Reader and Scanner:
This is the new QR code reader and scanner that you can find. Try to use this free QR code scanner for android to scan all kinds of QR codes and barcodes. This QR code scanning app scan all barcodes.

Free Barcode Scanner:
Free QR Scanner - QR Code Reader, Barcode Scanner app quickly scans codes and saves all coded information on your android mobile. Install this app and turn your mobile into a portable QR code & barcode scanner.

Barcode Reader:
QR code scanner & barcode reader scan barcode for detailed data of the barcode on the product. This barcode reader app free for android read all barcodes and it’s very easy to use.

QR & Barocde Generator:
QR code generator and scanner allow users to freely create QR codes or barcodes. The option to generate QR codes or barcodes serves a variety of purposes, such as generating codes for your own social accounts, contact information, or business products. You can generate a QR code and allow you to save, share the code you just created.

Price Scanner:
Scan promotion and coupon codes to get discounts. Scan product barcodes and compare prices online. This one-in-all barcode reader and scanner allows you to scan all types of barcode, QR code, and coupon code. It's the best barcode reader and scanner.

How to use:
1. Point camera to the QR code/barcode
2. Auto recognize, scan, and decode
3. Get results and relevant options

Permissions:
The best QR code scanner for android free is designed with the permission of the camera, storage (and other permissions if you want to use the QR code generator: SMS, contact, location....). Free QR Scanner - QR Code Reader, Barcode Scanner is the application that scans the code you need. It is safe and fully compatible with your devices.
\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3828425,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.appswing.qr.barcodescanner.barcodereader\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.appswing.qr.barcodescanner.barcodereader/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.appswing.qr.barcodescanner.barcodereader/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.appswing.qr.barcodescanner.barcodereader/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.appswing.qr.barcodescanner.barcodereader/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Providers: EBT, debit, & more\",\n \"appId\": \"com.propel.ebenefits\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.propel.ebenefits\",\n \"icon\": \"https://play-lh.googleusercontent.com/KZZXWqhPRrC90BMBPYDErwovMvxHgmp9Oq3kWOBPgMl0ySoQktr9sQ1ItEKWtGr_VcJE\",\n \"developer\": {\n \"devId\": \"Propel Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Propel%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Providers (formerly Fresh EBT) is the #1 rated EBT app for checking your food stamp balance. Plus, you can now manage other benefits and income with Providers Card, our free debit account.

Please note: the process of transitioning from Fresh EBT to Providers is ongoing. You may still see Fresh EBT for the next few weeks.

Join the 5 million people who use Providers to manage their EBT, WIC, SSI, unemployment, other benefits, and debit. Providers is available in all 50 states.

MANAGE YOUR BENEFITS AND DEBIT SIDE-BY-SIDE
Providers (formerly Fresh EBT) lets you manage all your income in one easy app:
• EBT
• WIC
• Child Tax Credit
• Paychecks
• Tax refunds
• Disability/SSI
• Savings
• Unemployment

INSTANTLY SEE YOUR EBT BALANCES AND SPENDING HISTORY
Skip the call — get your EBT and WIC balances instantly on your phone so you always know how much you have to spend.

STAY ON TOP OF UPDATES TO YOUR BENEFITS
EBT and other benefits can change quickly, but our dedicated team has you covered. Providers (formerly Fresh EBT) shares regular updates about benefit changes in all states.

WORKS IN EVERY STATE
Providers (formerly Fresh EBT) works with every food assistance program and EBT card in the US. Get your balance instantly for your Quest, ebtEDGE, ConnectEBT, California CalFresh, Texas Lone Star, Florida & Pennsylvania ACCESS cards, Illinois Link, MI Bridge, Oregon Trail, and all other states’ EBT cards.

FIND STORES THAT ACCEPT EBT AND WIC
EBT (also called SNAP benefits and food stamps) and WIC are accepted at many stores, plus farmer's markets and food pantries. Find all of the places in your area that accept EBT and WIC with our easy-to-use map.

BROWSE MONEY-SAVING AND MONEY-MAKING OFFERS
Save money with local discounts and coupons, and find out about full and part-time jobs in your area.

PROVIDERS CARD IS PERFECT FOR EVERYDAY SPENDING
Providers (formerly Fresh EBT) comes with a free debit account that’s a perfect pair to your EBT card.

PROVIDERS CARD HAS NO HIDDEN FEES
Providers Card has no monthly, overdraft, minimum balance, open, close, or inactivity fees.

GET YOUR PAYCHECKS UP TO 2 DAYS EARLY AND ELIGIBLE BENEFITS UP TO 5
Set up direct deposit on your Providers Card and get your paychecks up to 2 days early. You can get eligible benefits, like disability/SSI, up to 5 days early!

SAFE AND SECURE
Your personal information is protected by best-in-class encryption and security features. Your Providers Card debit funds are FDIC-insured up to $250K. Instant transaction notifications and 1-tap card locking keep you in control of your spending.

Providers was formerly called Fresh EBT — same great EBT app, now with more features, like a free debit account.

Providers is not part of the government. We access your EBT account information with your permission via state EBT systems. We aggregate other information about government benefits from public websites.

Providers Card is issued by Sutton Bank, Member FDIC, pursuant to license by Mastercard International.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7225447,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.propel.ebenefits\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.propel.ebenefits/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.propel.ebenefits/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.propel.ebenefits/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.propel.ebenefits/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"DoorDash - Dasher\",\n \"appId\": \"com.doordash.driverapp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.doordash.driverapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/trfOy_Wg9gQTwGcoYJNushqXIV3xFhWBReAVWM5IPqspN5N811YhTKQCG48anNS13HE\",\n \"developer\": {\n \"devId\": \"DoorDash\",\n \"url\": \"http://gplayapi.srik.me/api/developers/DoorDash\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Enjoy the freedom to be your own boss and earn money on your schedule. Plus, get 100% of your tips, always.

* CASH AFTER EVERY DASH *
Get paid right after every dash, automatically, with no deposit fees — ever.

* EARN WITH NUMBER ONE *
Make money delivering with the #1 Food & Drink Delivery app, available in 7,000+ cities in the US.

* START RIGHT NOW *
Sign up to deliver in minutes. You only need your smartphone and transportation (bike, car, scooter, or motorcycle) to start.

* BE SUPPORTED *
Your app will show you where you’re going and when to get there. Plus 24/7 help is available if you need it.

* SET YOUR OWN SCHEDULE *
Choose your own hours and enjoy flexibility over hourly, seasonal, or full-time work. Start and stop whenever you want.

* FIND WORK NEAR YOU *
Work wherever you want. DoorDash is available in 7,000+ cities across the U.S., Australia, Canada, Japan and Germany. In select markets, you’ll be able to accept orders from Caviar, too!

* RESTAURANTS AND MORE *
Make money by completing deliveries from restaurants, convenience stores, grocery stores, and pet stores, too.


DoorDash is available in over 7,000 cities in all 50 U.S. states, including Washington, D.C. and Puerto Rico; over 80 cities in Canada; and Melbourne, Australia, with more coming soon.

Find out if we’re in your area and learn more here: doordash.com/dasher/signup

Caviar Couriers can sign up using the DoorDash - Driver app\",\n \"scoreText\": \"2.8\",\n \"score\": 2.8057377,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.doordash.driverapp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.doordash.driverapp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.doordash.driverapp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.doordash.driverapp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.doordash.driverapp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"StarMaker: Sing and Play\",\n \"appId\": \"com.starmakerinteractive.starmaker\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.starmakerinteractive.starmaker\",\n \"icon\": \"https://play-lh.googleusercontent.com/93H1tf40Tq_4rn9waqWa6Wm2wx_YBMfPuOsxbzovvrahm3ndyk6hdUzBzetmWTulsw7e\",\n \"developer\": {\n \"devId\": \"STAR SHINE ENTERTAINMENT PTE. LTD.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/STAR%20SHINE%20ENTERTAINMENT%20PTE.%20LTD.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Want more friends and music lovers? Bring out the singer in you and also try to look for your new friends in StarMaker——The popular Karaoke & Entertainment App featured by Google Play and Apple Store🏆

StarMaker is a popular singing app and recreation community with 50M+users globally, sing karaoke songs and make new friends in multiplayer through various rooms now!

🎤Sing Karaoke Songs
No matter you like Pop or Hip hop, R&B or folk, just pick your favorite songs from millions of songs, sing along with the high-quality backing music and rolling lyrics, edit your recordings with a selection of voice effects and video filters, and share to social platforms like Whatsapp, Facebook, Instagram, Twitter, Snapchat and more.
You can also duet with top artists and sing together with a group of friends, just like a superstar, and start your own music concerts!

🎧Interaction
We support different ways of interacting. You can create various rooms, sing or play with anyone at any time. You can also share your interests with people who have the same taste. Or you can join others' rooms and meet new friends from all over the world. Just see who is the best player or king of singing in the room.

🎮Games
The new feature ‘GAMES’ offers an open stage where you can play in various game rooms with different users. We offer online games including 'Ludo' and 'Draw & Guess'.
'Ludo' is a classic board game. Multiplayers are able to play of chance and strategy together.
'Draw & Guess' is the world’s most popular drawing game. Join the game to show your creativity with colors!

We have added a bunch of new features for a better experience! Such as:
🎤 Pick your favorite songs and latest hits from millions of local and international songs.
🎤 Play various games and meet new friends in game rooms.
🎤 Record your karaoke recordings with various voice effects like Distant, Warm, Vinyl, Party, Fascinating, etc.
🎤 Edit your selfie music videos with beautiful filters like Vintage, Paris, Sunset, Urban, Spring, etc.
🎤 Use Pitch correction to make you sound like a pro singer.
🎤 ‘Hook’ allows you to sing the best part of your favorite songs! Duet with top artists or friends, and make a recording together!
🎤 Join a ‘Family’ community to play with other music lovers who share the same tastes with you, Like, Comment, and Gift to find kindred spirits through music!
🎤 Share your music performances on TikTok, Instagram, Facebook, Snapchat, Twitter, WhatsApp & more

Pick from all the hit songs now Including:
+Heat Waves - Glass Animals
+Stay - The Kid LAROI & Justin Bieber
+Easy On Me - Adele
+Ghost - Justin Bieber
+Shivers - Ed Sheeran
+Bad Habits - Ed Sheeran
+Cold Heart (PNAU Remix) - Elton John & Dua Lipa
+Thats What I Want - Lil Nas X
+Need To Know - Doja Cat
+Enemy - Imagine Dragons X JID
+Pushin P - Gunna & Future Featuring Young Thug
+Levitating - Dua Lipa
+Industry Baby - Lil Nas X & Jack Harlow
+Save Your Tears - The Weeknd & Ariana Grande
+Woman - Doja Cat
+One Right Now - Post Malone & The Weeknd
+Good 4 U - Olivia Rodrigo
+Meet Me At Our Spot - THE ANXIETY: WILLOW & Tyler Cole

STAY CONNECTED!
Having trouble downloading or singing? Contact our customer service at appsupport@starmakerinteractive.com, we’ll be happy to help and answer all your questions!
Sing Songs - StarMaker Karaoke Official Website:
https://www.starmakerstudios.com/
Like us on Facebook
https://www.facebook.com/starmaker
Follow us on Instagram
https://www.instagram.com/starmaker_app
Subscribe to our YouTube Channel
https://www.youtube.com/user/StarMakerNetwork
Play with the StarMaker App! To sing, to play, to connect!\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5497856,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.starmakerinteractive.starmaker\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.starmakerinteractive.starmaker/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.starmakerinteractive.starmaker/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.starmakerinteractive.starmaker/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.starmakerinteractive.starmaker/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Ring - Always Home\",\n \"appId\": \"com.ringapp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.ringapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/fbIl2IKPAG4_3lNnwsi0qMBTJEgOsIwBUYzrs5_GIRYRBHov_a5eJ0bMxEUNMu67G4Ws\",\n \"developer\": {\n \"devId\": \"Ring.com\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Ring.com\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Watch over your property from anywhere with Ring Video Doorbells, Security Cameras, Alarm systems, and Smart Lights.

Ring Doorbells and Cameras can send you instant alerts when someone’s at your door or motion is detected. Keep an eye on what matters with live HD video and greet visitors with Two-Way Talk. With a compatible Ring Protect Plan subscription (or free trial), you can review, save, and share Ring videos.

Ring Smart Lights let you control and schedule lighting easily. Some models can even notify you about motion nearby, and trigger other compatible Ring devices to record.

Ring Alarm systems let you monitor entrances and indoor spaces, and detect certain safety hazards. Enroll in Ring Alarm professional monitoring (compatible Ring Protect Plan subscription required) to request dispatch of emergency responders when your Ring Alarm is triggered.

Whether you’re halfway around the world or just busy with the kids upstairs, with Ring, you’re always home.\",\n \"scoreText\": \"3.8\",\n \"score\": 3.8109207,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ringapp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.ringapp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.ringapp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.ringapp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.ringapp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Yahoo Mail – Organized Email\",\n \"appId\": \"com.yahoo.mobile.client.android.mail\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.yahoo.mobile.client.android.mail\",\n \"icon\": \"https://play-lh.googleusercontent.com/YtGn2T9ADy5Hs4cKVoDgGb7fPuMkdXVcszVE1oiozfE4AxhDNq0RkwajYs1FxcrMDpw\",\n \"developer\": {\n \"devId\": \"Yahoo\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Yahoo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Thanks for checking out the Yahoo Mail app—the best email app to organize your Gmail, Microsoft Outlook, AOL, AT&T and Yahoo mailboxes. Whether you need a clutter-free mailbox, added customization, different views for deals, and attachments, or even more storage, we’ve got you covered.

Favorite features:

Use any email address
Don’t make your other inboxes jelly. Add your Gmail, Outlook or AOL account and keep everything in one place. Custom settings, colors and notifications make it a breeze to keep your accounts separate.

Unsubscribe
Go forth and unsubscribe from the spam and junk mail you don’t want to see in your inbox. Yahoo Mail shows all the mailing lists you're subscribed to on one screen and makes it easy to opt-out in one tap.

Today view
Rain or shine, you’re one tap away from what’s happening. Find weather and news highlights right from your email app.

Attachments view\\t
Looking for that one doc from that one person? Or, a photo from brunch three Sundays ago? Don’t panic, It’s right here. See all of your photos and files attachments in one easy view.

Customization
Your inbox, your vibe. Customize the bottom nav bar with the folders and views you care about most. Then, pick custom sounds, themes, swipes to add your own flavor and unboring your inbox.

Travel view
Travel stress-free. This view keeps all of your flight information in one organized spot. Smart Updates, from gate changes to delays and cancellations, will instantly appear in the app, so once you check in—you can check waaaaaay out.

Shopping view
No more searching through countless promotional emails to find those savings. This view organizes your inbox around your favorite stores and the categories you shop. Now you get all of the fun of shopping—without the clutter.

People view
Only see emails from your favorite people. Ignore the robots.

Sounds + notifications
Choose from several categories of notifications, custom sound alerts and visual settings—so, you get the reminders you need. And none you don’t.

Accessibility
Features high contrast themes, dynamic text resizing, and optimized for use with VoiceOver screen readers. Plus, folders at the bottom of the Inbox allow assistive technology users to navigate with less effort.

1000 GB storage
You can’t see your whole world without room to roam. Download the app and you’ll never have to delete memories to get your mail again.

Yahoo Mail Plus
Get ad-free mail, extra organization and privacy features, and 24/7 tech support across your Android mobile devices.

+\\tAvailable as an in-app purchase at $1.99/month
+\\tSubscription will auto-renew each month or year within 24 hours of your renewal date
+\\tManage or cancel your subscription via Account Settings

Terms of service: https://policies.yahoo.com/us/en/yahoo/terms/product-atos/comms-mailadfree/index.htm

Privacy policy: https://policies.yahoo.com/us/en/yahoo/privacy/products/mail/index.htm

Please note: This app features Nielsen’s proprietary measurement software which will allow you to contribute to market research, like Nielsen’s TV Ratings. Please see www.nielsen.com/digitalprivacy for more information. You may also visit Settings in the app to opt-out of Nielsen measurement.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5299864,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.yahoo.mobile.client.android.mail\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.yahoo.mobile.client.android.mail/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.yahoo.mobile.client.android.mail/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.yahoo.mobile.client.android.mail/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.yahoo.mobile.client.android.mail/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Sam's Club\",\n \"appId\": \"com.rfi.sams.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.rfi.sams.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/kgFlgsbsq27nkh3FEL4Q3L8vr0r_NN1LiJmuFywLrFiWe_5dlPwOVew03jKa8mGryTM\",\n \"developer\": {\n \"devId\": \"Sam's Club\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Sam's%20Club\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Sam’s Club
Enjoy all your membership perks with the Sam’s Club app.

Save time and shop easier every day with the Sam’s Club app. Make the most of your membership with these best-loved exclusives, including free Pickup, Scan & Go, Pharmacy and Free Shipping for Plus members. Save even more with Instant Savings and track your Plus Cash Rewards. Use the tabs at the bottom to find Home, Scan & Go, Account and more.

Scan & Go™ Checkout
Now you can pay for gas with the Scan & Go™ feature to save time at the pump. In the club, shop contact free and skip the checkout line. Just shop, scan and pay, all in the app.

Pickup
Shop in the app, then schedule a free Pickup time that works best for you. We’ll have your order ready when you arrive.

Your Lists
Start your cart and easily reorder your favorite products, directly in the app.

Pharmacy
Transfer prescriptions, request refills and manage prescriptions for the whole family for maximum convenience.

Membership Card
Quickly find your membership card in your account and access other membership details.

Shipping
Shop and ship directly to your home or workplace – Plus members get free shipping.

Download the app and get the most from the club today.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.732609,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.rfi.sams.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.rfi.sams.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.rfi.sams.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.rfi.sams.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.rfi.sams.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"WhatsApp Business\",\n \"appId\": \"com.whatsapp.w4b\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.whatsapp.w4b\",\n \"icon\": \"https://play-lh.googleusercontent.com/ebs6ftYUkOKlDY0M174OpvargwbDyHUVAnO_G5aE0dL5GBQKCtfh3adN5H3ZMThXogDi\",\n \"developer\": {\n \"devId\": \"WhatsApp LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/WhatsApp%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"WhatsApp Business from Facebook

WhatsApp Business enables you to have a business presence on WhatsApp, communicate more efficiently with your customers, and help you grow your business.

If you have separate business and personal phone numbers, you can have both WhatsApp Business and WhatsApp Messenger installed on the same phone, and register them with different numbers.

In addition to the features available in WhatsApp Messenger, WhatsApp Business includes:

• BUSINESS PROFILE: Create a profile for your business to help your customers find valuable information — like your website, location, or contact information.

• BUSINESS MESSAGING TOOLS: Be more responsive to your customers by using Away messages to indicate when you're away or Greeting message to send your customers an introductory message when they first message you.

• LANDLINE/FIXED NUMBER SUPPORT: You can use WhatsApp Business with a landline (or fixed) phone number and your customers can message you on that number. During verification, select the “Call me” option to receive the code over a phone call.

• RUN BOTH WHATSAPP MESSENGER AND WHATSAPP BUSINESS: You can use both WhatsApp Business and WhatsApp Messenger on the same phone, but each app must have its own unique phone number.

• WHATSAPP WEB: You can more efficiently respond to your customers right from your computer's browser.

WhatsApp Business is built on top of WhatsApp Messenger and includes all the features that you rely on, such as the ability to send multimedia, free calls*, free international messaging*, group chat, offline messages, and much more.

*Data charges may apply. Contact your provider for details.

Note: once you restore chat backup from WhatsApp Messenger to WhatsApp Business, you will no longer be able to restore it back to WhatsApp Messenger. If you would like to go back, we recommend that you copy the WhatsApp Messenger backup on your phone to your computer before you start using WhatsApp Business.

---------------------------------------------------------
We're always excited to hear from you! If you have any feedback, questions, or concerns, please email us at:


smb@support.whatsapp.com


or follow us on twitter:


http://twitter.com/WhatsApp
@WhatsApp
---------------------------------------------------------\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3135033,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.whatsapp.w4b\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.whatsapp.w4b/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.whatsapp.w4b/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.whatsapp.w4b/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.whatsapp.w4b/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Poshmark - Buy & Sell Fashion\",\n \"appId\": \"com.poshmark.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.poshmark.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/iprCmLX18vS5S6DPzIxdmcDj5iqytt14LScR74slH8oUPtVsBU3j1sKW9Ac7TbG8rLBc\",\n \"developer\": {\n \"devId\": \"Poshmark, Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Poshmark%2C%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Poshmark is the leading social marketplace for new and secondhand style for women, men, kids, home, and more.



Shop. Sell. Style. Party.

SHOP
Whatever you're shopping for, Poshmark's got it—at amazing prices. With 200M+ new and gently used items for sale, you will find amazing deals and discounts on fashion, home decor, beauty, and more from the hottest brands like Louis Vuitton, Michael Kors, MAC Cosmetics, Nike, Brandy Melville, Anthropologie, and more!

SELL: CONSIGN YOUR CLOSET FROM HOME
Do you have items in your closet that didn't work out? Maybe a luxury handbag, statement shoes, or even your old wedding dress you wore once and won't ever wear again? Poshmark is a simple and fun consignment solution for anyone to sell their used clothes and make money for the new things they're coveting, providing an alternative to Goodwill and other consignment stores like Buffalo exchange. Over 70 million people across the United States and Canada are on Poshmark—join them today!

STYLE
Need ideas for what to wear to your next date or that upcoming wedding? Do you hate getting dressed in the morning? Poshmark has millions of outfit ideas for you. Shop the personal style and closets of other Poshers today, or request to be styled by your favorite Stylist!

PARTY
Party on the go, no matter where you're at! Join the thousands of people who come together three times a day, seven days a week to participate in our themed virtual Posh Parties, featuring everything from loungewear to luxury. Create new listings, share and shop together! Have Tory Burch, Forever 21, or Zara on the brain? There's a party for you.

WHAT PEOPLE ARE SAYING
"Poshmark is a great online resale platform." —Vogue
"The social marketplace is great for hunting down a cult-loved item that's otherwise sold out everywhere as well as finding deals on popular brands like Lululemon, Free People, and Anthropologie." —Popsugar
"Poshmark is a brilliant way to sell and buy clothing. This side hustle app (or for some people, their full-time job!) allows you to take a photo of something in your closet and upload it to your account in less than 60 seconds, all from your phone." —Parade
"The marketplace that's so posh that celebrities use it—especially to raise money for good causes, like DJ Khaled, Serena Williams, Katherine Heigl and Rachael Ray." —Buzzfeed\",\n \"scoreText\": \"4.7\",\n \"score\": 4.663119,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.poshmark.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.poshmark.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.poshmark.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.poshmark.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.poshmark.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Instacart Market Food Delivery\",\n \"appId\": \"com.instacart.client\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.instacart.client\",\n \"icon\": \"https://play-lh.googleusercontent.com/g_irOkVgCmmyGOxAoB5-N6CuHYjL7FMiHUkO7FJFNBVKE3W-yoFoKJBiq4Sy8sSI9woQ\",\n \"developer\": {\n \"devId\": \"Instacart\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Instacart\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Shop online & get your groceries delivered directly to your door in as fast as 1 hour. Plus, your first grocery delivery is free! And it's safe—contactless delivery is available.

Instacart is the fast and easy way to order healthy food, snacks, and other essentials online from local supermarkets. Save money and time by avoiding multiple trips to the grocery store.

With Instacart, you can get your shopping delivered. Order food from fresh markets, alcohol, and other household items online and get same-day delivery across the US. Download the app to see what supermarkets are available in your zip code.

Just imagine what you can do with on-demand grocery delivery!

Instantly turn your outdoor hangout into a bbq cookout with fast grocery delivery. Or, impress your veggie-loving pals with healthy food and snacks on the go. Anything is possible when you shop online with Instacart.

Prefer to pick up? Order your groceries online, pick up at your local store, and skip the delivery fees.

Shopping online and ordering fresh groceries and other essentials from fresh and local markets has never been easier! Here’s how to get started:

1. Enter your zip code

2. Shop online for fresh groceries, household items, electronics, and more

3. Get exclusive discounts from local grocery store sales

4. Add your items to your cart and place your order

5. Chat with your shopper in real time to make any changes to your order

6. Get your shopping delivered straight to your door or skip the delivery fees and pick up at the store

Contactless delivery

Order your groceries online safely from your home and get fresh food delivered the same day. Our 100% contactless delivery helps to ensure you and your shopper stay safe.

Find your favorite products from fresh and local markets near you!

Get healthy food, fresh produce, late-night snacks, and even alcohol delivered to your door. Don’t forget essentials like toilet paper, prescriptions, and other household items too.

And your shopper will ensure that fragile items like eggs and glass bottles are always handled with care.

Plus, you’ll save money by shopping local grocery sales with the help of your shopper.

With Instacart, you can easily order food and other essentials online. You’ll also be able to:

• Save money by getting exclusive deals & coupons

• Create shopping lists and get fresh food delivered straight to your door

• Reorder food and other products from your favorite stores

• View nutritional information & filter by diet

Food shopping has never been easier with on-demand grocery orders and delivery through Instacart!

Where to shop via Instacart

Shop from your favorite supermarkets and stores—Aldi, Publix, Costco, Safeway, Wegmans—and nearly 85,000 other retail locations across North America.


Download to see what stores are available in your zip code and get your shopping delivered in as fast as 1 hour.

Terms and conditions apply. See details: https://www.instacart.com/help/section/360007996832\",\n \"scoreText\": \"4.1\",\n \"score\": 4.101375,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.instacart.client\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.instacart.client/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.instacart.client/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.instacart.client/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.instacart.client/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"GroupMe\",\n \"appId\": \"com.groupme.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.groupme.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/hRKdXnkUR7t5efz9sY_69Y9UwZ2Wa-YlbaKv73jKLKpIIFmQM_MK01gksRLdlOnSBYU\",\n \"developer\": {\n \"devId\": \"GroupMe\",\n \"url\": \"http://gplayapi.srik.me/api/developers/GroupMe\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"GroupMe - the free, simple way to stay in touch with the people who matter most.

Family. Roommates. Friends. Coworkers. Teams. Greek Life. Bands. Faith Groups. Events. Vacations.


“Lifechanger.... utterly indispensable”
-Gizmodo


- START CHATTING
Add anyone to a group via their phone number or email address. If they are new to GroupMe, they can start chatting over SMS immediately.

- CONTROL NOTIFICATIONS
You’re in charge! Choose when and what type of notifications you receive. Mute specific chats, or the entire app – you can even leave or end group chats.

- SAY MORE THAN WORDS
Go ahead – fall in love with our exclusive emoji.

- THE WHOLE INTERNET IN YOUR GROUP
Meme images, search and send GIFs, and see content shared from URLs displayed in the chat.

- SHARE NOW, RELIVE LATER
The gallery saves your memories. Easily explore the photos and videos shared in your group now, or later.

- LEAVE TEXTING BEHIND
With direct messages, you can use all the features you love for group chat, but one-on-one. It’s like texting, but better.

- CHAT WHEREVER YOU ARE
Including from your computer at groupme.com


Whether separated by a hallway or a hemisphere, GroupMe allows you to stay in touch with the connections that count. Get your group together.


We want to hear your feedback!
Web: https://aka.ms/groupmesupport
Twitter: @GroupMe
Facebook: facebook.com/groupme
Instagram: @GroupMe

Love,
Team GroupMe



NOTE: SMS chat currently available in US only. Standard text messaging rates may apply.
Privacy Policy: https://groupme.com/privacy
A member of the Skype family\",\n \"scoreText\": \"4.5\",\n \"score\": 4.515288,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.groupme.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.groupme.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.groupme.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.groupme.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.groupme.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Crunchyroll\",\n \"appId\": \"com.crunchyroll.crunchyroid\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.crunchyroll.crunchyroid\",\n \"icon\": \"https://play-lh.googleusercontent.com/CjzbMcLbmTswzCGauGQExkFsSHvwjKEeWLbVVJx0B-J9G6OQ-UCl2eOuGBfaIozFqow\",\n \"developer\": {\n \"devId\": \"Ellation, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Ellation%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Stream the world’s largest anime library. Watch over 1,000 titles - from past seasons to new episodes fresh from Japan, including critically acclaimed Crunchyroll Originals.

Get full access to new shows like Demon Slayer: Kimetsu no Yaiba, Platinum End, The World's Finest Assassin, takt op.Destiny, 86 EIGHTY-SIX, plus classics like BORUTO: NARUTO NEXT GENERATIONS, One Piece, JUJUTSU KAISEN, Attack on Titan, Black Clover, Naruto Shippuden, JoJo's Bizarre Adventure, and more! Whether you’re new to anime, or have been a fan for decades, Crunchyroll has something you’ll love.

Want to upgrade your experience? Try Crunchyroll Premium FREE for 14 days!

Premium upgrades are available for additional features like:
- No ads
- New episodes one hour after they air in Japan
- Streaming on up to 6 screens at once
- Offline viewing\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6547203,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.crunchyroll.crunchyroid\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.crunchyroll.crunchyroid/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.crunchyroll.crunchyroid/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.crunchyroll.crunchyroid/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.crunchyroll.crunchyroid/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Messenger Lite\",\n \"appId\": \"com.facebook.mlite\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.facebook.mlite\",\n \"icon\": \"https://play-lh.googleusercontent.com/I6iR-zi371fJJsGnqwnY8uUmeYqv-_erzVbVBhyASixDReX2JUuIhgXjtV9OrA-_nQI\",\n \"developer\": {\n \"devId\": \"Meta Platforms, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Meta%20Platforms%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"A fast and data-efficient messaging app to reach the people in your life.

Messenger Lite:
- Installs quickly. It's less than 10MB to download!
- Saves data. It loads fast, runs efficiently and uses less mobile data.
- Works everywhere. Reach people when you're in an area with a slow or unstable internet connection.

With Messenger Lite, you can:
- Contact anyone on Messenger, Facebook or Facebook Lite.
- See when people are active and available to chat.
- Message people one-on-one or in groups to catch up or make plans.
- Send photos, links, or express yourself with stickers.
- Make one-on-one voice and video calls for free over Wi-Fi (otherwise standard data charges apply). Talk as long as you want, even with people in other countries!\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2282043,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.mlite\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.facebook.mlite/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.facebook.mlite/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.facebook.mlite/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.facebook.mlite/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Text Free: Call & Texting App\",\n \"appId\": \"com.pinger.textfree\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.pinger.textfree\",\n \"icon\": \"https://play-lh.googleusercontent.com/M0srkoCNqpU1LsVI55ik8Q11JP-CeQgZq5IzT0yXmM_cyc-AhxdcOGkvpgH8hsLfe-Q\",\n \"developer\": {\n \"devId\": \"Pinger, Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Pinger%2C%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Private texting, WiFi calling, group chat and high-quality messaging is just a few taps away with Text Free. Our messaging app offers you free SMS messaging and a real phone number. Text and chat with anyone, even if they don’t have the Text Free app. Create a different phone number for all of your calling and messaging needs.

Call and text now with features like group messaging, free MMS picture messaging, business calls & voicemail – all from your cell phone, tablet or laptop.

Get unlimited text messaging, group chat, SMS, and MMS picture messages for free. Other messenger apps can be expensive or complicated to use – we make messaging easy.

Call and text for free, send group chat messages and stay connected with your contacts. From group text to phone calls, our WiFi calling and texting features make it easy and affordable to connect with your phone contacts. It’s a cellular phone service app, without the high costs.

Set up a 2nd phone number and get access to free WiFi calling and texting. Unlike other messaging apps, our free text and call app lets you create a different phone number, right down to the area code. Create a different number that is easy to remember and share with friends and family.

Create a business phone number or a personal calling line. A second phone number allows you to have private texting and phone call conversations. Get text messaging and call privacy – whether you need a private 2nd phone for business or family.. Send private messages, set up closed chat rooms and hide text messages from unwanted numbers on Text Free.

Messaging and calling – all from one easy-to-use, free messaging app. Since 2009, our phone app has helped millions of people around the world stay connected.

We aren’t like most messaging apps, we are the original Text Free – the free texting and WiFi calling app that can do it all. Start calling and messaging with Text Free today!

TEXT FREE FEATURES

💬 GROUP CHAT & FREE MESSAGING


- Easy Messaging: Use our free texting app for free WiFi and SMS messaging
- Talk, send MMS or SMS messages from anywhere you have a WiFi connection
- Group chat: hang out with people from your contact list right on your device
- Group text: Send GIFs, emojis, stickers, and photos to your contact list

☎️ CUSTOM NUMBER


- 2nd line: pick your real phone number
- Set up a different phone number as a business line
- Phone privacy: Use your second phone number for secure messaging and calling
- 2nd phone number: Use it for online forms, undesirable callers, or spam risks

🔒 PRIVATE CALLING & MESSAGING


- Anonymous texting, safe WiFi calling and texting you can trust
- Private texting: hide text messages from unwanted callers and contacts
- Private 2nd phone number for business, school, family, or other personal contacts

📞 UNLIMITED CALLING MINUTES WITH TEXT FREE PLUS


- Unlimited WiFi calling and SMS messaging
- Ad-free calling and texting experience
- Your second number can be reserved without having to re-select
- Just $9 a month

Group chat, messaging and WiFi calling – TextFree is the original free texting app and 2nd phone number app available. Download Text Free today!

⚖️ LEGAL




© 2020 Pinger, Inc. All rights reserved. The TextFree name, associated trademarks, and logos are trademarks of Pinger, Inc. or related entities.

Terms of Service: https://www.pinger.com/privacy-policy/terms-and-conditions/
Privacy Policy: https://www.pinger.com/privacy-policy/\",\n \"scoreText\": \"4.4\",\n \"score\": 4.438158,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.pinger.textfree\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.pinger.textfree/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.pinger.textfree/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.pinger.textfree/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.pinger.textfree/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"SoundCloud: Play Music & Songs\",\n \"appId\": \"com.soundcloud.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.soundcloud.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/lvYCdrPNFU0Ar_lXln3JShoE-NaYF_V-DNlp4eLRZhUVkj00wAseSIm-60OoCKznpw\",\n \"developer\": {\n \"devId\": \"SoundCloud\",\n \"url\": \"http://gplayapi.srik.me/api/developers/SoundCloud\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"What’s next in music is first on SoundCloud.

Be the first to find new music. Discover trending artists, play songs and share your favorite playlists.

Access the world’s largest music discovery platform
- That’s 300M+ tracks from 30M+ artists in 193 countries

Discover new and trending music, picked just for you
- Play curated mixes and playlists based on the songs you love

Find exclusive music on SoundCloud
- Play songs, DJ sets and remixes you can’t find on any other streaming platform

Grow your music collection
- Find and save trending hits, underground remixes, deep cuts and more.
- Build playlists with your favorite songs.

Find and connect with your music community
- Follow your favorite artists and connect with music fans directly and discover their playlists.
- Like, Repost and comment on any track, directly in the music player.
- Share songs and trending playlists on the app and social media.

Upload your own tracks
- Upload your own music directly on the app to tap into a global fanbase of millions and start trending.

Help independent artists get paid
- Your fan-powered streams puts money in the pockets of the artists YOU want to support.

Enjoy free music streaming with SoundCloud FREE, or level up with SoundCloud Go or SoundCloud Go+ to remove ads, play songs offline and more premium features.

SOUNDCLOUD FREE:
- Play music from independent and established artists (with ads).
- Listen to albums and playlists with unlimited skips.

SOUNDCLOUD Go:
- Listen without ads
- Save tracks to listen offline — Play your favorite songs and playlists anytime, anywhere
- Support your favorite independent artists through Fan-Powered Royalties

SOUNDCLOUD Go+:
- Unlock premium Go+ tracks
- Access high-quality audio streaming
- Upgrade your DJ sets with exclusive app integrations
- Listen without ads
- Save tracks to listen offline — hear your favorite songs and playlists anytime, anywhere
- Support your favorite independent artists through Fan-Powered Royalties

SoundCloud Go+ gives you offline and ad-free listening to everything from mainstream songs to trending DJ sets and remixes.

Need help? Get in touch:

https://soundcloudcommunity.com
https://help.soundcloud.com
https://twitter.com/SCsupport

SoundCloud is available in English, Brazilian Portuguese, Dutch, French, German, Italian and Spanish.


Privacy Policy: https://soundcloud.com/pages/privacy
Terms of Use: https://soundcloud.com/terms-of-use\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6744924,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.soundcloud.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.soundcloud.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.soundcloud.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.soundcloud.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.soundcloud.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Upside-Cash back on gas & food\",\n \"appId\": \"com.upside.consumer.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.upside.consumer.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/BHjRTUqclWdmtsDvlJZPU8vY3ONUZPmFHvgzX0IQEhI5jSaQJvHrXjKPBWr7yMy_RQ\",\n \"developer\": {\n \"devId\": \"Upside Services Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Upside%20Services%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Make every day more rewarding.

Download Upside to earn cashback on what you need, so you spend on what you love.

>>>WHAT
Upside is a platform that lets you shop as usual and earn cash back, but in a way that makes sure businesses earn too. Claim an offer and get the most value on gas, groceries, and restaurants. There’s no limit to how much you can earn, and you can even use it with other coupons, discounts, and loyalty programs.

We’re not your average cash back app. This is a win-win for you AND the store you’re buying from. So buy what you need and feel good about it. When we’re all better off, communities thrive.

>>>WHERE
- Gas stations: Up to 25¢/gal cash back on gas at 25,000+ gas stations across the U.S. (including all the big brands like Shell, Valero, BP, Phillips 66, Circle K, Speedway, 76, Racetrac, Conoco, Mobil, and Exxon).
- Restaurants: Up to 45% cash back at 17,000+ restaurants, cafes, fast food joints, and more.
- Grocery stores: Up to 30% cash back on groceries in select cities like Minneapolis, St. Louis, Los Angeles, Chicago, Phoenix, and Raleigh.

Download the app to see locations near you.

>>>HOW
(1) Claim your offer through the app
(2) Pay as usual with any credit or debit card
(3) Either Check In, or snap and submit a photo of your receipt
(4) Cash out whenever you want!

It’s really that easy. Buy anything you need and earn real cash every time you shop. You can cash out whenever you want via PayPal, e-gift card, or bank transfer.

We partner with local businesses (gas stations, grocery stores, and restaurants nearby) who want to win your business.

>>>WHY
With Upside, you earn cash back on what you need so you can spend on what you love. Upside users earn 2 to 3 times more cash back compared to any other app out there, and merchants are earning more profit than ever before. When shoppers get more value and businesses earn more profit, communities grow stronger.

Too good to be true? Download and see for yourself.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.610131,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.upside.consumer.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.upside.consumer.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.upside.consumer.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.upside.consumer.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.upside.consumer.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"HP Smart\",\n \"appId\": \"com.hp.printercontrol\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.hp.printercontrol\",\n \"icon\": \"https://play-lh.googleusercontent.com/pWcADQz_SoLoCVCqznMANpCXLYnRwcVB-2zQjQDRB24h9EZec4DahXJ0cw7JJuwsAUw\",\n \"developer\": {\n \"devId\": \"HP Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/HP%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Print, scan, and share files by using HP Smart with your HP Printer. HP Smart makes it easy to get started and keeps you going with features like Print Anywhere or Mobile Fax!


· Start with a hassle-free set up, then print, scan, copy, and share files directly from your mobile device to your friends, co-workers, or a linked cloud account
· Manage or print to your printer using any network connection
· Order supplies, get support, and manage your HP account straight from the app
· Create high-quality scans with your mobile device’s camera or import existing files, then preview, edit, and save them as PDFs and JPEGs or send them in your favorite cloud storage account
· Edit and enhance your photos by adding filters and text, cropping, and adjusting the saturation, contrast, or brightness
· It’s easy to send secure faxes from the app with Mobile Fax
· Be more productive with Smart Tasks—customizable one-touch shortcuts
· Access hundreds of printable crafts, cards, and learning activities for free with Printables! Get involved and get your family creating together!

Some HP Smart features require a network connection and an HP account for full functionality. Certain features/software are available in English language only. For a full list of supported printers, visit: http://support.hp.com/us-en/document/c03722645?openCLC=true\",\n \"scoreText\": \"4.1\",\n \"score\": 4.105212,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hp.printercontrol\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.hp.printercontrol/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.hp.printercontrol/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.hp.printercontrol/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.hp.printercontrol/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"HelloFresh: Meal Kit Delivery\",\n \"appId\": \"com.hellofresh.androidapp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.hellofresh.androidapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/FCm6Y99r1v7NePwvj0Yu8qzPkXysU4j_BnPc4fpWsdOkQ21HyF33GiZEOHVm80EfzkU\",\n \"developer\": {\n \"devId\": \"HelloFresh SE\",\n \"url\": \"http://gplayapi.srik.me/api/developers/HelloFresh%20SE\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"HelloFresh delivers weekly meal kits with delicious, prepped ingredients and easy-to-cook recipes directly to your door. Take the guesswork out of meal planning and cook delicious food for you or your whole family.

Perfect for busy lifestyles, our meal delivery services include everything you need to prepare your favorite meals, with many of our recipes ready in about 30 minutes. We also combine thousands of delicious, carefully curated recipes in our collection, so mealtime is never boring!

HelloFresh is as flexible as you are. Skip a week or cancel your weekly food subscription at any time. The only thing you need to decide is what to make tonight—giving you a fresh and fun cooking experience that puts you in control in the kitchen.

What to Expect from HelloFresh’s Meal Kit Delivery Service
✓ Thousands of delicious and easy recipes that you can save to your favorites, rank, and share with your friends and family.
✓ Fresh ingredients, along with step-by-step recipe instructions with cooking tips & tricks.
✓ A flexible online account that functions as a meal planner so you can easily choose your meals or change your subscription at any time.

Delicious Meal Subscriptions Delivered to Your Door
Whether you’re an unfussy omnivore or a strict veggie eater, HelloFresh makes choosing the perfect food subscription box simple. Our easy-to-manage meal plans are fully customizable to your preferences, and they can be tailored for between 2 to 4 people with up to 6 recipes per week.

What’s more, with a little bit of creativity, you can easily make a HelloFresh meal kit work when you’re eating alone—just split up the ingredients to make a single meal or save your leftovers for lunch the next day!

Check out our easy meal kits for every diet type:
🥩Meat & Veggies: A meal plan designed for unfussy omnivores that includes the widest range of meat, fish, and seasonal produce. Enjoy all our recipes with this preference.
🥦 Veggie: A meal kit with a huge range of seasonal veggies, legumes, seeds, and nuts. Everything you need to create vegetarian meals.
🐟 Pescatarian: A meal plan that perfectly balances seafood and veggies to make the most delicious fish-based recipes.
👪 Family Friendly: The perfect meal plan for people of all ages, combining kid-tested meals and family favorites with easy recipes that everyone will love.
Calories Smart: Keep tabs on your calorie intake with delicious, dietician approved meal kits that are at or under 650 calories each.
Quick & Easy: Fast, simple, and fresh meal plans that cut down on the prep, cooking, and cleanup every night!

Easy Meal Management with the HelloFresh Android App
The HelloFresh app makes managing your weekly meal subscription simple. Just access your account on your Android device to manage your delivery day, swap out ingredients and recipes, or change the number of meals or the number of people you are feeding. Perfect whether you’re eating alone or cooking for the whole family!

About HelloFresh
HelloFresh is committed to sustainable eating, and each of our meal delivery kits helps you reduce food waste, lower your carbon footprint, and minimize packaging waste. In fact, we’ve been able to offset 100% of our carbon emissions.

Each of our meal boxes come with perfectly portioned ingredients, with less prep and more great food without the hassle. We source all our ingredients responsibly, and we’re constantly innovating to create smarter packaging to reduce plastic and improve our sustainability goals.

If you need more information about our subscriptions, HelloFresh meal kits, or you need help using the HelloFresh app, contact us today! Follow us on Facebook (fb.com/hellofreshUS) and Twitter (@hellofreshUS). If you like the service, please take a few minutes to review our app.

Find more information at:
https://www.hellofresh.com/

Learn more about our plans here:
https://www.hellofresh.com/plans\",\n \"scoreText\": \"3.4\",\n \"score\": 3.4391851,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hellofresh.androidapp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.hellofresh.androidapp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.hellofresh.androidapp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.hellofresh.androidapp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.hellofresh.androidapp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Audible: audiobooks & podcasts\",\n \"appId\": \"com.audible.application\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.audible.application\",\n \"icon\": \"https://play-lh.googleusercontent.com/pwzZK-7oQexraeU0mOrQgFIck-QSS89rH0eWjehctp8XskRSpixPNVlA0YYlRXHbA2Iz\",\n \"developer\": {\n \"devId\": \"Audible, Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Audible%2C%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get entertainment that moves with you this summer. Wherever your travels take you, indulge in a binge-worthy library of audiobooks, tune into exclusive podcasts and discover genre-bending Audible Originals. Listen to carplay on the road, plug into a podcast on the commute; enjoy bestsellers at your leisure and download and listen to content offline. The Audible library is endless, so listen to an extensive range of content and series and enjoy Audible as part of your daily listening routine.

Start listening now - no membership required! Download and listen to Choice by Jodi Picoult. Also check out Beck Dear Life, part of our Words + Music series.

THE PLUS CATALOG
Listen all you want to thousands of select originals, audiobooks, and podcasts including exclusive shows and series. All Audible plans include unlimited access to streaming or downloading anything in the Plus Catalog. With new titles added every week, there’s always something new to listen to for every mood and moment.

UNPLUG BY TUNING IN
Listen to storytelling that enriches you. Check out the latest sci-fi fantasy books , unwind with meditation titles or tap into your detective skills with a new mystery series or true crime podcast. You can download, stream and listen to audio books offline too.

Hear captivating audio books, listen to podcasts and relax with mindful meditation. Make your Audible Library the listening routine you can’t live without.

LISTEN TO AUDIO STORIES ANYTIME
Our Library of audio entertainment is always open. Listen to bite-sized audio content like the latest fantasy series, true crime podcasts, romance books and sci-fi audiobooks. Whatever your mood - your listening routine starts here.

Download and listen to books, series, and podcasts offline. Dive into an engrossing true crime thriller, mysteries, sci-fi series & fantasy, kids stories, meditation titles, memoirs, documentaries, and genre-bending Audible Originals.

With monthly credits, you can find the audio content you want, including bestsellers and new releases. Discover a variety of books and audio entertainment with Audible.

AUDIBLE PREMIUM PLUS
- Build your own library and listen to the largest selection of audio titles from the entire Premium selection - titles purchased with credits are yours to keep, even if you cancel.
- Sci-fi fantasy books, mystery & thriller, true crime stories, comedy podcasts, romance novels, meditation and more - you get 1 monthly credit to pick any title that you want to keep.
- And, access the entire Audible Plus catalog - thousands of binge-worthy audiobooks, exclusive podcasts and audio entertainment, with fresh audio content added every single week.
- Plus, you can listen offline to any title. You can download, stream or listen to books and other audio entertainment titles from the Audible Plus Catalog.

Listen how you want. And never lose your place with seamless cross-device listening with Whispersync, available with all audio book titles, podcasts, series and selections across your library.

SELECTED AUDIO STORIES, SERIES AND TITLES
- Explore the Audible Plus Catalog anytime you want, no credits necessary.
- Thousands of binge-worthy audio books, podcasts and Audible Originals.
- Fantasy series, mysteries, sci-fi audiobooks, kids books and thriller. Listen to books and podcasts from thousands of titles.
- Fresh audio content and new listens added to the Catalog every single week.
- Listen offline. You can stream and download all you want.

The most compelling stories & podcasts. Told by inspiring voices. Listen to storytelling that speaks to you, anytime, anywhere. Fall in love with books all over again with Audible, an Amazon company.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.580547,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.audible.application\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.audible.application/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.audible.application/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.audible.application/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.audible.application/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Docs\",\n \"appId\": \"com.google.android.apps.docs.editors.docs\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.docs\",\n \"icon\": \"https://play-lh.googleusercontent.com/emmbClh_hm0WpWZqJ0X59B8Pz1mKoB9HVLkYMktxhGE6_-30SdGoa-BmYW73RJ8MGZQ\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Create, edit, and collaborate with others on documents from your Android phone or tablet with the Google Docs app. With Docs you can:

- Create new documents or edit existing files
- Share documents and collaborate in the same document at the same time.
- Work anywhere, anytime - even offline
- Add and respond to comments.
- Never worry about losing your work – everything is saved automatically as you type.
- Search the web and your files in Drive, right from Docs
- Open, edit, and save Word documents and PDFs.

Google Docs is part of Google Workspace: where teams of any size can chat, create, and collaborate.

Google Workspace subscribers have access to additional Google Docs features, including:
- Working in a single document with teammates or people outside your company. See edits as others type, communicate through built-in chat, and leave feedback through comments and suggestions
- Importing your documents to make them instantly editable, including Microsoft® Word and PDF files. Export your work in .docx, .pdf, .odt, .rtf, .txt or .html format
- Unlimited version history. Track changes made to your documents and undo anything you choose.
- Working across devices, with or without Internet

Learn more about Google Workspace: https://workspace.google.com/products/docs/

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/

Permissions Notice
Contacts: This is used to give suggestions of people to add to files and share with.
Storage: This is used to save and open files on USB or SD storage.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1678195,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.docs.editors.docs\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.docs/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.docs/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.docs/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.docs/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Weather Home - Live Radar\",\n \"appId\": \"com.home.weather.radar\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.home.weather.radar\",\n \"icon\": \"https://play-lh.googleusercontent.com/pPUAzFCHPyv18fZXwRkX7nnLoNwcyJg0CsAXx5PH0fdDxVaJK854i-gNYu8oDVFXLQ\",\n \"developer\": {\n \"devId\": \"My Home Apps\",\n \"url\": \"http://gplayapi.srik.me/api/developers/My%20Home%20Apps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"

WEATHER APP WITH STORM TRACKER!



Get live local weather forecasts and storm alerts directly on your home screen with the Weather Home – Live Radar Alerts & Widgets launcher application.

Our weather app is a launcher application, offering local daily forecasts, live radar, severe weather alerts, custom real time alert settings, daily local weather snapshots, accurate hyper local weather forecasts, severe live weather warnings, and storm tracker. Get immediate local and worldwide weather updates. Today’s temperature in detail provides important information on heat index, UV index, and tips to stay safe. Get everything you need to know outside of the weather channel for free in real time! We use the most accurate radar readings offered in order to alert you in advance of any extreme driving or storm situation to keep you safe.
•\\tWeather Feature Highlights:
•\\tCurrent weather conditions
•\\tHour-by-hour and day-by-day forecast
•\\tSmart Notifications
•\\tHyper-Local Forecast
•\\tWeather Visualization
•\\tStorm Tracker
•\\tMulti-level radar
•\\tWeather map layers
•\\tTemperatures
•\\tAnd many more!

Always be one step ahead with our weather app’s accuracy and details, be prepared for any storm, especially if they are severe and weather forecast changes so you know when it's safe to drive through a storm or snow conditions.

This launcher also includes customizable themes, news, popular videos, and other awesome utilities in order to provide the most feature-rich launcher experience possible!

Download our Weather Home today to get quick access -1 screen with detailed local weather!

* Weather Home uses device Accessibility permissions to lock the screen when an in-app gesture is performed. This is optional and disabled by default.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.574282,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.home.weather.radar\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.home.weather.radar/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.home.weather.radar/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.home.weather.radar/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.home.weather.radar/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Credit Karma\",\n \"appId\": \"com.creditkarma.mobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.creditkarma.mobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/awnVMi-BtmYLp6lgF19Qv0McVObf53HW7HQX7XY_cE7P6F9C6D7boWEtWqsmpaUTI68\",\n \"developer\": {\n \"devId\": \"Credit Karma, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Credit%20Karma%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"• Check your free credit scores – Learn what affects your credit scores and how you can take control.

Credit Karma Money™ Spend – A checking experience* with Early Payday and a daily chance to win Instant Karma™ cash reimbursements for debit card purchases.**

Credit Karma Money™ Save – Now saving is easy with no fees, an interest-bearing savings rate and a monthly chance to win $20,000.***

Karma Confidence – See personalized offers and know your chances of approval for a personal loan or credit card before you apply.

Credit card choices – Browse great credit card offers based on your unique credit profile. And thanks to Karma Confidence technology, our members get approved 66% more often.****

Auto savings and more – Tune up your auto loan, see about saving on insurance, see open recalls and find vehicle records.

Karma Drive – Track your safe driving score to see if you can unlock lower car insurance rates.*****

Home sweet home – Calculate how much home you can afford, see personalized home loan offers and get a mortgage pre-qualification letter.

Personal loan shopping – Whether you want to refinance credit card debt or borrow for an emergency, you can compare personal loan offers on Credit Karma (members who compare offers on Credit Karma save an average of 32% on interest rates!).******

Explore the Relief Roadmap – Connect to government stimulus programs, unemployment benefits, debt relief opportunities, loan options and more.

Free ID monitoring – Check your free reports to spot potential identity theft and get tips for keeping your personal information safer.

Free credit monitoring – Get credit alerts when we see important changes happen to your Equifax or TransUnion credit reports.

Join more than 120 million members and get all these features, and more, for free. Download the Credit Karma app and create your own karma today.

DISCLOSURES
Banking services provided by MVB Bank, Inc., Member FDIC.
*Third-party fees may apply.



**NO PURCHASE NECESSARY. For Rules visit https://www.creditkarma.com/lp/sweepstakesrules-checking#instant

***NO PURCHASE NECESSARY. For Rules visit https://www.creditkarma.com/lp/sweepstakesrules-checking#savings-instant


****Based on a comparison of Credit Karma member approval rates in 2021 vs national approval rates for general purpose credit cards from 2020 according to the Consumer Financial Protection Bureau’s 2021 Consumer Credit Card Market Report (36%)

*****Karma Drive is not available in all states. Sign in the app for availability.

******Based on aggregate member personal loan origination data from July 2020 to December 2020. Estimated average interest rates for members who found personal loans through Credit Karma were compared with estimated average interest rates for members who found personal loans elsewhere. Those members who found personal loans through Credit Karma had estimated interest rates that were 32% lower on average than those who found personal loans outside Credit Karma.

Mortgage products and services offered through Credit Karma Mortgage, Inc. NMLS ID# 1588622 | Read licenses at https://www.creditkarma.com/about/mortgage-licenses.
Loan services offered through Credit Karma Offers, Inc., NMLS ID# 1628077 | Read licenses at https://www.creditkarma.com/about/loan-licenses | California loans arranged pursuant to a California Financing Law license.

Insurance services offered through Credit Karma Insurance Services, LLC (dba Karma Insurance Services, LLC; CA resident license #0172748).\",\n \"scoreText\": \"4.7\",\n \"score\": 4.672899,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.creditkarma.mobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.creditkarma.mobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.creditkarma.mobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.creditkarma.mobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.creditkarma.mobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Fabulous Security-Virus&Clean\",\n \"appId\": \"com.fabulous.security\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.fabulous.security\",\n \"icon\": \"https://play-lh.googleusercontent.com/dPB6H0qfLO3_kq-BMGl1svRw6r59DaQBsynfoy688cWu1KgLzK-SBdK03jZXcb5HPHsh\",\n \"developer\": {\n \"devId\": \"Mobnet Team\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Mobnet%20Team\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Fabulous Security - Antivirus, Booster, Phone Clean
- Antivirus, Keep Phone Safe
- A professional antivirus & security phone app
- Junk Cleaner& Virus Cleaner & Memory Cleaner all in one APP

Why Choose this APP?
Fabulous Security is an antivirus app that can keep your phone safe.Get Fabulous Security for Android to help protect the phone away from viruses & malware attacks. It has completed antivirus mechanisms that includes virus scan, virus removal and virus protection.

Professional Antivirus
Antivirus for Android - automatically blocking malware and more on your phones.
Virus Scan - Fully scan virus files to protect mobile phone security.
Virus removal - Provide the malicious file scan and removal with the professional Antivirus engine.
Virus clean - automatically blocking malware and more on your phones.
Virus protection- Real-time protection against virus intrusion.

Key features:
🛡️Antivirus - Authoritative anti-drug agency-Trustlook certification, always provide you with professional and real-time protection.

🗑️Junk Cleaner - Find & remove junk, residual, cache, and temp files. Free up more space and improve the performance of your device.

🧹Phone Booster - One tap to boost your phone speed, free up RAM and kill background tasks. It will make your phone run faster.
When the screen is on, you can boost your phone without entering the app by simply shaking it.

🌡️CPU Cooler - Detect and close apps that cause overheating. Monitor phone temperature and high resource-consuming apps constantly, effectively reduce the temperature of your device.

🔔Notification cleaner - Manage and organize notifications effectively, significantly reduce disturbance to users, creating a smooth and fast mobile experience.

You can quickly delete all marked duplicate photos to release storage space on your device.

More cool features are coming, please stay tuned!

If you have any issues, feedback, suggestion, or just want to say hi, please feel free to let us hear from you at 'mobnet.feedback@outlook.com' so we can continue to bring you the best experiences and updates.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.172727,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.fabulous.security\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.fabulous.security/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.fabulous.security/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.fabulous.security/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.fabulous.security/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"My Spectrum\",\n \"appId\": \"com.brighthouse.mybhn\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.brighthouse.mybhn\",\n \"icon\": \"https://play-lh.googleusercontent.com/MBi51mXYtb0tu3mssXuqMTxF1CmvgXuNOY5oAFKKQG6qkrdz08xGk185EN6G_MiTQA\",\n \"developer\": {\n \"devId\": \"Charter/Spectrum\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Charter%2FSpectrum\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Download the My Spectrum App to manage your Spectrum account and services: personalize your WiFi network, pay your bill, troubleshoot your equipment, view package details and channel lineups, and more. Wherever and whenever you want.

Personalize Your Network
• Personalize your WiFi network name and password.
• Manage the settings for everyone on your account.
• Install a WiFi profile to use more than half a million Spectrum WiFi access points nationwide.

Pay Your Bill
• Check your amount due and make one-time payments.
• View and download billing statements.
• Enroll in Auto Pay – save time and never miss a payment.
• Enroll in paperless billing – get less clutter and less mail.
• Find your nearest Spectrum Store.

Troubleshoot Your Service
• Call or chat with us directly in the app.
• Troubleshoot your equipment and fix service-related issues.
• View package details and channel lineups.
• Get answers to the most frequently asked support questions.

We Want Your Feedback
• Share feedback about your app experience – we read and review all feedback.
• If you have suggestions to make the app better, please share them – chances are we're already working on it.
• We're always working to improve your experience, so keep the app updated to enjoy all of the newest features.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5311527,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.brighthouse.mybhn\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.brighthouse.mybhn/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.brighthouse.mybhn/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.brighthouse.mybhn/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.brighthouse.mybhn/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"iHeart: Music, Radio, Podcasts\",\n \"appId\": \"com.clearchannel.iheartradio.controller\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.clearchannel.iheartradio.controller\",\n \"icon\": \"https://play-lh.googleusercontent.com/UTfBaYUzml-7QPLpKI45GbuVjCjddn5Byi6yjzb87jPWHnrBSuAbaJDCsPMn3m6NjLBC\",\n \"developer\": {\n \"devId\": \"iHeartMedia, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/iHeartMedia%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"

Your Music, Your Stations, And #1 For Podcasts. All Free.



Discover music, radio and podcasts you’ll love, all free. Stream thousands of live radio stations, podcasts and playlists all in one app. Listen on any device - including smart phones, tablet, Wear OS, Chromecast and more. Download the iHeartRadio Android app today and start listening to your favorite live radio stations, podcasts and music playlists!




The Best Live & Local Radio Stations
• Discover thousands of local AM and FM radio stations live near you and from cities across the globe.
• Our Radio App allows you to tune in to top radio stations, music, breaking news, sports, talk and comedy radio shows.
• Hear sports radio stations like ESPN Radio, Fox Sports Radio, FNTSY Sports Radio, and more.
• Listen to top sports personalities discuss the latest news around the NFL, MLB, NBA, NHL, NCAA, Soccer, Golf, and Tennis.



The iHeartRadio Podcast App - now #1 for Podcasts
• Our Podcast App features the most popular podcasts from NPR, Gimlet, How Stuff Works, ESPN Podcasts, Big Money Players Network, TED, Wondery, and from popular personalities like The Ron Burgundy Podcast, Anna Faris Is Unqualified Podcast, The Herd with Colin Cowherd Podcast, The Joe Rogan Podcast, Ben Shapiro Podcast, Bobby Bones Podcast, Armchair Expert with Dax Shepard, Chelsea Handler Podcast, and more.
• Follow your favorite podcasts and download podcast episodes to your Android device to listen offline, without the need for WiFi.
• Explore popular and trending shows with our iHeartRadio Podcast App charts. The Top 100 Chart refreshes every Monday.
• Our podcast app and podcast player allow you to experience podcast playback at your desired speed of 0.5x, 1x, 1.25x, 1.5x, and 2x.




Free Music Playlists - perfect for any moment


• Listen to thousands of hand curated song playlists on the free iHeartRadio Playlist App. Organized by mood, activity, decade and genre to make it easy to find something that’s the perfect soundtrack for any moment.
• Enjoy the sound of 'Your Weekly Mixtape' - music discovery made easy. A weekly playlist of songs we’ve curated based on the music you love and the music you’re listening to right now. We’ll refresh your mixtape every Monday with a new batch of tracks we know you’ll vibe to throughout your week.
• Explore our Cloud based audio options directly from your phone.

Play Free Artist Radio Stations
• Use our library of millions of songs to create personalized music stations based on your favorite artists and genres like Country, Top 40, Pop, Hip Hop, R&B, EDM, Rock, Alternative, Classical, Indie, Folk, Gospel, Christian, Dance, and more.




The Ultimate Station Made Just for You
• 'My Favorites Radio' collects all of the songs you love in one free personalized station.



Premium Features
Listen absolutely free with ads, or take control of your listening experience with iHeartRadio Plus™ and iHeartRadio All Access™.
• Search and play any song, album and playlist with our library of millions of songs on demand
• Save and replay any song with our music app from the radio
• Enjoy unlimited skips
• Download music to your Android Phone or Tablet to listen offline from Google Play
• Create unlimited music hits playlists

Join our community!
• Facebook: http://on.fb.me/1F1TcFX
• Instagram: http://bit.ly/1e1AOUS
• Twitter: http://bit.ly/1HZk5KQ
• Blog: http://bit.ly/1GiT59D



For Feedback and Help
Tell us how we can improve by sharing your thoughts at https://help.iheart.com




iheart.com/terms


iheart.com/privacy



© 2019 iHeartMedia, Inc.

\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5895705,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.clearchannel.iheartradio.controller\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.clearchannel.iheartradio.controller/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.clearchannel.iheartradio.controller/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.clearchannel.iheartradio.controller/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.clearchannel.iheartradio.controller/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Airbnb\",\n \"appId\": \"com.airbnb.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.airbnb.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/1zfN_BL13q20v0wvBzMWiZ_sL_t4KcCJBeAMRpOZeT3p34quM-4-pO-VcLj8PJNXPA0\",\n \"developer\": {\n \"devId\": \"Airbnb\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Airbnb\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"DISCOVER MILLIONS OF POSSIBILITIES
Choose from unique homes—near or far—in many countries around the world. Find everything from getaways near national parks to apartments in the heart of big cities and book right in the app.

FIND ONE-OF-A-KIND HOMES
Easily explore the world of Airbnb—and discover homes that you wouldn’t have known to look for—with a new way to search designed around Airbnb Categories. These curated collections of homes are chosen for their style, location, or nearby activities, whether you want a design marvel, a stay somewhere tropical, or a place near incredible surfing.

STAY LONGER AND EXPERIENCE MORE
Split Stays is an innovative new feature that intelligently splits one trip across two homes. Split Stays automatically appear in search results of trips a week or longer—so guests can find more available homes and experience more on their trip.

GET AN UNMATCHED LEVEL OF PROTECTION
AirCover is the most comprehensive free protection in travel, giving guests the confidence of knowing that if something goes wrong, we have their backs.

CHAT WITH YOUR HOST AND CHECK IN EASILY
Feel at home, no matter where you are. The Airbnb app lets you chat with your Host, receive up-to-the-minute information about your booking, and make the most of your trip by getting the best info on everything local that only expert Hosts would know. A redesigned Trips tab puts all your must-have travel details in one place. Here you’ll also find check-in details that make it easy to get there, get inside, and get connected to wifi.

CHOOSE STAYS THAT MEET YOUR NEEDS
Know that every accessibility feature a home has goes through an accessibility review process confirmed by our team of specialists. Easily sort by 13 accessibility search filters, including step-free bedroom access and accessible parking spot.

FIND FUN THINGS TO DO
Get out and explore with a local expert as your guide—or immerse yourself in a new place right from your couch. Go solo, book a private group event, or join a group and meet someone new. Check out Experiences for any age or interest and book, save, or share your favorite ones—all with the Airbnb app.

TRY HOSTING IN 10 EASY STEPS
Turn your space into extra income on Airbnb. List it directly from the Airbnb app, then receive the support and guidance you need to get started with hosting. It’s a great way to fund your dreams and inspire someone else’s next big adventure.

KNOW YOUR SPACE IS PROTECTED
AirCover for Hosts is top-to-bottom protection for every Airbnb Host. It includes $1 million in liability insurance, $1 million in damage protection, and more. It's always included and always free. Only on Airbnb.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5349307,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.airbnb.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.airbnb.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.airbnb.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.airbnb.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.airbnb.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Snap VPN: Super Fast VPN Proxy\",\n \"appId\": \"free.vpn.unblock.proxy.vpnpro\",\n \"url\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.vpnpro\",\n \"icon\": \"https://play-lh.googleusercontent.com/q6RF3TaIVNC8rz3f9sqcbBXaVAd-LWvguIH45XoquhIvqJkeRuUxx7QT83SqfxI8L-S8\",\n \"developer\": {\n \"devId\": \"AUTUMN BREEZE PTE. LIMITED\",\n \"url\": \"http://gplayapi.srik.me/api/developers/AUTUMN%20BREEZE%20PTE.%20LIMITED\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Snap VPN - Unlimited free VPN proxy with no-time-limit servers! Unlimited bandwidth! Offer super unlimited proxy to unblock and access all your favorite websites and apps! Stay secure using public WiFi hotspot, encrypt your online activities, browse all sites privately and anonymously! Enjoy the unlimited free VPN service and internet freedom with Snap VPN now!

🛡️ VPN Free Forever
Need a super vpn proxy with free and time-unlimited servers? Snap VPN offers you the best free vpn service, you can use Snap VPN anytime and anywhere without extra fee. If you need a super premium vpn experience without ads, we also provide premium service for you.

🛡️ Super Secure VPN for Online Privacy
Snap VPN changea your IP address to another country, escape school firewall or government censorship. Let you surf the web anonymously without worrying about being tracked. Encrypt network traffic and connection under mobile data and Wifi hotspot. Your password, personal data, payment information are fully protected from cyber attacks.

🛡️ Bypass Geo-restrictions
Snap VPN can bypass geographic restrictions by encrypting all traffic and changing your ip address. Snap VPN is a super VPN for cross-regional gaming and streaming.

- Supports your gaming needs with your friends anywhere! The way is:
1. Download the latest version of Snap VPN and choose the location you want.
2. Connect to the free vpn server or premium server, then open the game, your game ip address will change to where you want.
3. We now support all games to change ip address, such as Roblox, Free Fire, PUBG mobile, Mobile Legends and Call of Duty.

- Support you to enjoy streaming! Connect to the streaming vpn server of Snap VPN:
1.You can easily watch movies, tv shows, series, live sports matches and listen to your favorite songs of different countries.
2.We support the vast majority of streaming websites and apps in the world, such as Netflix, HBO, Disney+, TikTok, Spotify, etc.

- Besides, Snap vpn supports access to online shopping and banking services cross-regionally and encrypts your payment information.

🛡️ Unblock all Websites and Apps
Using Snap VPN can help you unblock all apps and websites. We offer outstanding technology to make sure you can access all blocked global media, mobile games, videos, social applications and blocked websites safely and freely without limitation.

🛡️ Fast & Stable Speed
Snap VPN is a super fast VPN! It will automatically connect to the fastest vpn server. Snap VPN has over 100,000 IP addresses for more than 2000 free vpn servers and streaming server. One click to connect to US, UK, Korea, Singapore, India, German, France, etc.

All the amazing experiences in Snap VPN - Unlimited Vpn Proxy! Key Features🛡️:
✓Unlimited and free VPN servers
✓Online anonymous, protect privacy
✓Secure the WiFi hotspot network
✓Bypass geo-restriction, firewall & censorship
✓Unlimited access to blocked content
✓Unlimited bandwidth & super fast speed
✓Strict no-log policy


User Terms:
By downloading and/or using this product, you acknowledge and agree to the end user license agreement and Privacy Statement at
https://static.snapillustrates.com/snap/privacy_policy_snapvpn.html\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5252037,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=free.vpn.unblock.proxy.vpnpro\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.vpnpro/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.vpnpro/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.vpnpro/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.vpnpro/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Firefox Fast & Private Browser\",\n \"appId\": \"org.mozilla.firefox\",\n \"url\": \"http://gplayapi.srik.me/api/apps/org.mozilla.firefox\",\n \"icon\": \"https://play-lh.googleusercontent.com/zqsuwFUBwKRcGOSBinKQCL3JgfvOW49vJphq0ZF32aDgfqmuDyl-fEpx4Lxm4pRr7A\",\n \"developer\": {\n \"devId\": \"Mozilla\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Mozilla\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get the people-first browser that’s backed by a non-profit.

Choose Firefox to be your go-to browser and help shape a better internet for you, your family and community. Download Firefox now.

When you use Firefox, you’re helping support Mozilla, which is backed by a non-profit foundation whose mission is to ensure the internet remains a global public resource, open and accessible to everyone. We know there are a lot of choices out there, some of them produced by huge tech companies, but in choosing Firefox you’re joining a unique community that’s actively helping to diversify the way people experience the internet.

Firefox is extremely private for a reason — and the reason is you.
Recently, a lot of internet browsers started talking about their new and improved privacy features, and we think that’s great. But for us, privacy isn’t the latest buzzword in the browser business. Since version 1 in 2004, we’ve taken privacy seriously, because we’ve always been in the business of valuing people first, over everything. When you care more about people than you do about profits, privacy naturally becomes a top priority.

STREAMLINED HOME SCREEN
Pick up right where you left off. See all your open tabs intuitively grouped and displayed along with your recent bookmarks, top sites and popular articles recommended by Pocket.

FAST. PRIVATE. SAFE.
Keep what’s personal private without sacrificing speed. With Firefox, you can have more control to decide what to share online and when. We designed Firefox with smart browsing features that let you take your privacy, password and bookmarks with you wherever you go.

MAKE FIREFOX YOUR OWN
Make Firefox your go-to, get-it-done, default browser. And with Firefox widgets, you can jump right to searching the web or using private-browsing mode straight from your phone’s home screen.

PRIVACY CONTROL IN ALL THE RIGHT PLACES
Firefox gives you greater privacy protection while you’re on the web. By default, Firefox blocks trackers and scripts such as social media trackers, cross-site cookie trackers, crypto-miners and fingerprinters. In addition to Apple’s Intelligent Tracking Prevention, setting Firefox’s Enhanced Tracking Protection to “strict” blocks tracking content in all windows. Also, you can easily choose to search in private browsing mode. And when you close private browsing mode, your browsing history and any cookies are automatically erased from your device.

SEAMLESS BROWSING ACROSS DEVICES
Add Firefox across your devices for secure, seamless browsing. Sync your devices and send open tabs between mobile and desktop. Firefox makes password management easy by remembering your passwords across devices.

FIND IT FAST WITH FIREFOX’S SEARCH BAR
Get search suggestions in the search bar and quickly access the sites you visit most. Type in your search question and get suggested and previously searched results across your favorite search engines.

GET ADD-ONS
Full support for the most popular add-ons, including ways to turbo-charge powerful default privacy settings and customize your experience.

ORGANIZE YOUR TABS THE WAY YOU LIKE
Create as many tabs as you like without losing track. Firefox displays your open tabs as thumbnails and numbered tabs, making it easy to find what you want quickly.

SHARE ANYTHING IN A FEW TAPS
Firefox makes it easy to share links to web pages or specific items on a page with easy, quick access to your most recently used apps.

LEARN MORE ABOUT FIREFOX WEB BROWSER:
- Read about Firefox permissions: http://mzl.la/Permissions
- Stay in the know: https://blog.mozilla.org

ABOUT MOZILLA
Mozilla exists to build the Internet as a public resource accessible to all because we believe open and free is better than closed and controlled. We build products like Firefox to promote choice and transparency and give people more control over their lives online. Learn more at https://www.mozilla.org.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.542797,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.mozilla.firefox\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/org.mozilla.firefox/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/org.mozilla.firefox/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/org.mozilla.firefox/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/org.mozilla.firefox/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Canva: Design, Photo & Video\",\n \"appId\": \"com.canva.editor\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.canva.editor\",\n \"icon\": \"https://play-lh.googleusercontent.com/3aWGqSf3T_p3F6wc8FFvcZcnjWlxpZdNaqFVEvPwQ1gTOPkVoZwq6cYvfK9eCkwCXbRY\",\n \"developer\": {\n \"devId\": \"Canva\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Canva\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Canva is your free photo editor and video editor in one graphic design app! Create stunning social media posts, videos, cards, flyers, photo collages & more. Stand out with one-tap animations and fun music for Insta stories and video collages.

No design experience or expertise? No problem! From photo editor to collage maker, to logo maker – we made Canva really simple & easy for anyone in the world to design.

THOUSANDS OF TEMPLATES – endless creative possibilities
• Start inspired with thousands of customizable templates
• Playful Facebook posts, Insta layouts, Instagram post maker, IG Story, & mood boards
• Professionally-designed invitations, flyers, gift certificates, etc. to boost your business or event
• Showcase your product with our logo maker
• Visualize data with sleek presentation templates and slideshow maker

PHOTO EDITOR – free to use, no ads, no watermarks
• Effortless picture apps to crop, flip, & edit photos
• Adjust brightness, contrast, saturation, tint, blur, etc.
• Auto Focus for background blur & sharpen photo subject
• Apply your style with aesthetic filters & effects (Retro, Pixelate, Liquify, etc.)
• Top it off with text on photos and loads of stickers
• Fun photo grid & photo collage maker
• Design easily on a small screen without disruption from ads

VIDEO EDITOR – make amazing videos in just a few taps
• Produce professional videos right on your phone
• Trim, cut, & split video layout and audio tracks
• Crop, resize, and flip videos & images to any dimensions
• Make static images move with one-tap animations & page transitions
• Overlay multiple audio tracks of music, sound effects, & voiceovers
• Use the video editor as a video collage maker & slideshow maker too!

SOCIAL MEDIA – hit it big with on-trend content
• Discover thousands of templates for Instagram, TikTok, Facebook, Twitter, YouTube, Snapchat, LinkedIn etc.
• Queue your planned posts on Instagram with Scheduler [Canva Pro]
• Play with our photo editor for thumb-stopping Instagram layouts
• Use as a banner maker for eye-catching thumbnails & ads
• Easy collage maker & video editor to create photo grids, collages

HUGE STOCK LIBRARY – over 2M+ assets for you
• Complete package: all the elements you need are here
• 2M+ royalty-free images
• Thousands of watermark-free stock videos
• 25K+ pre-licensed audio & music tracks
• Add text on photos with 500+ fonts & effects (curved, neon, and more)
• Graphic design elements - illustrations, stickers, photo frames, etc.
• Beautifully animated charts, graphs, & tables from any data

SMART MOCKUPS – see your designs on a shirt or poster
• Look professional by visualizing your designs on products
• High-res mockups for phones, laptops, posters & other displays
• Order printed flyers, mugs, and apparel for gifts or business

REAL-TIME COLLABORATION – with anyone across any device
• Edit team projects & presentations anytime, anywhere
• Start a design on mobile & finish on your desktop seamlessly
• Work with your team in real-time, leave comments & apply changes

CANVA PRO – get more for a low monthly cost
• Access premium templates, images, videos, audio & graphic design elements
• One-click Background Remover
• Magic Resize - Instantly resize your project to any photo & video layout
• Brand Kit - Stay on brand with consistent logos, fonts, & colors
• Scheduled publishing to Instagram, Facebook & more

DESIGN FOR EVERYONE
• Personal - Layout designs for creative & professional pursuits like Instagram templates, resume, photo collages, etc.
• Entrepreneurs - Grow your business with our logo creator, video editor, poster maker, etc.
• Students & Teachers - Engage with beautiful presentations and worksheets
• Social Media Managers & Content Creators - Use the photo editor and collage maker for consistent visuals & mood boards for your brand\",\n \"scoreText\": \"4.8\",\n \"score\": 4.772822,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.canva.editor\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.canva.editor/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.canva.editor/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.canva.editor/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.canva.editor/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Themepack - App Icons, Widgets\",\n \"appId\": \"com.iconchanger.widget.theme.shortcut\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.iconchanger.widget.theme.shortcut\",\n \"icon\": \"https://play-lh.googleusercontent.com/U2MfyACDMUrVHpRUSJbLNm8Zo4ALywxlI6ZkEnlAbPknkNhg6xgM1EMlWl3xqopPbA\",\n \"developer\": {\n \"devId\": \"YoloTech\",\n \"url\": \"http://gplayapi.srik.me/api/developers/YoloTech\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Themepack - App Icons, Widgets is your first choice as a wonderful icon pack changer app, a multifunctional and super practical app that can satisfy your custom home screen!

New online widget function! Themepack - App Icons, Widgets have countless advantages! One-click addition saves your time and energy! Multiple styles bring you a variety of aesthetic experiences! From theme to icon to widget, exquisite integrated service is here! Come to Themepack - App Icons, Widgets! Discover the beauty you love!

Are these not enough? More reasons for you!

Why choose Themepack - App Icons, Widgets?
🔥Exquisite icon packs!
🔥Super fast update speed!
🔥Multiple Aesthetic widgets and themes!
🔥Personalization tailored for you!
🔥Easy one-click replacement!
🔥Awesome designed wallpapers!

Not familiar with how to use it? Step by step guide!

Steps to Use Themepack - App Icons, Widgets

1. Search for Themepack - App Icons, Widgets and download it
2. Open Themepack - App Icons, Widgets
3. Choose the icon packs, themes, widgets and wallpapers you like
4.Replace your choice with one click!

More advantages! Carefully unique design!

All app icons, themes, widgets and wallpapers of Themepack - App Icons, Widgets are created by top designers! Each widget has a unique meaning, maybe a circle, maybe a rectangle, enough for you to customize!

What should I do if there is a problem?

Contact us
Themepack - App Icons, Widgets to help and guide you! If there is any operation problem, you can send it to us, we will follow up and solve it in time.
Email address:xmind0303@gmail.com\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5515466,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.iconchanger.widget.theme.shortcut\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.iconchanger.widget.theme.shortcut/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.iconchanger.widget.theme.shortcut/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.iconchanger.widget.theme.shortcut/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.iconchanger.widget.theme.shortcut/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Xfinity\",\n \"appId\": \"com.xfinity.digitalhome\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.xfinity.digitalhome\",\n \"icon\": \"https://play-lh.googleusercontent.com/zIjprEdU_0F4wqsGb_uD9bnbBiCTw_5Sld92VIHhKZApm2I6ICv0x1MqhetxbGIteg\",\n \"developer\": {\n \"devId\": \"Comcast\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Comcast\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Xfinity app is the easiest way to to manage your Xfinity experience, now all in one place. Get online in minutes with seamless service activation and 24/7 real-time support anytime you need it.

Xfinity customers get all this, free:

• Everything you need to manage your account — pay your bill, view your plan details, change or upgrade your service, and more
• Xfinity Rewards. Join for free so you can enjoy special perks, unique experiences, and product benefits right in the app, just for being a customer.
• Tools to help you view and troubleshoot your Internet connection, get outage updates, and even restart your equipment
• An extra layer of security and help keep your personal information safe with sign-in alerts

Plus, customers who choose the xFi Gateway also unlock the powerful tools of xFi within the app:
• Access personalized tools and tips to help improve your WiFi performance
• Test the Internet speed reaching every connected device in your home
• Protect your devices and help keep loved ones safe and secure, with Advanced Security included
• Get peace of mind with parental controls included. Pause WiFi to any connected device, set family-safe browsing, device limits, and more.
• Enjoy ultimate control. Set up and personalize your WiFi, assign user profiles, and get help improving the performance of every connected device.

Getting started is simple. All you need is your Xfinity ID and the password you set up when you signed up for Xfinity Internet.

Need help signing in?
- If you don't have an Xfinity ID yet, create one here: xfinity.com/getstarted
- Look up your existing Xfinity ID: xfinity.com/id
- Or reset your Xfinity password: xfinity.com/password

Learn more about your options related to ‘California Civil Code §1798.135: Do Not Sell My Info’ at www.xfinity.com/privacy/manage-preference\",\n \"scoreText\": \"3.9\",\n \"score\": 3.859848,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.xfinity.digitalhome\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.xfinity.digitalhome/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.xfinity.digitalhome/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.xfinity.digitalhome/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.xfinity.digitalhome/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Authenticator\",\n \"appId\": \"com.google.android.apps.authenticator2\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.authenticator2\",\n \"icon\": \"https://play-lh.googleusercontent.com/oMv9o-L-mNKdyL3Hp6fvNwrhAyIYB1iP3p644hxN03oFU0R2oevnmxmCLF6FewjzZXU\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Google Authenticator generates 2-Step Verification codes on your phone.

2-Step Verification provides stronger security for your Google Account by requiring a second step of verification when you sign in. In addition to your password, you’ll also need a code generated by the Google Authenticator app on your phone.

Learn more about 2-Step Verification: https://g.co/2step

Features:
* Generate verification codes without a data connection
* Google Authenticator works with many providers & accounts
* Dark theme available
* Automatic setup via QR code
* Transfer accounts between devices via QR code

Permission notice:
Camera: Needed to add accounts using QR codes\",\n \"scoreText\": \"3.7\",\n \"score\": 3.679195,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.authenticator2/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.authenticator2/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.authenticator2/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.authenticator2/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Microsoft Outlook\",\n \"appId\": \"com.microsoft.office.outlook\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.outlook\",\n \"icon\": \"https://play-lh.googleusercontent.com/Zk9elS0eGXDr0L4W6-Ey7YwHbRNjkyezHC8iCc8rWp64lNIjlByS8TDF9qDSZbiEWY4\",\n \"developer\": {\n \"devId\": \"Microsoft Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Microsoft%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Access your email, files and calendar with Microsoft Outlook, the secure email app that keeps you connected and protected. Organize your email intelligently, with filters for everything and spam email protection. Organize your day with a task organizer and calendar reminders. Keep in touch with anyone you need with the intelligent inbox that can do it all.

Outlook works with Microsoft Exchange, Microsoft 365, Outlook.com, Gmail and Yahoo Mail, giving you flexibility to stay connected on the go. Manage your email and send documents from your Files list or photos from your Gallery.

Stay protected from phishing and spam with Outlook’s secure and seamless inbox management. Whether your Gmail inbox needs extra security or your Yahoo Mail needs more organization, Microsoft Outlook has you covered. Connect with Teams, Zoom, BlueJeans, WebEx and other video calling providers for any meeting on the go.

Organize your email with tags, folders and more. Listen to what’s new in your inbox, organize schedules and more. Find what you need with Search with a tap or your voice.

OUTLOOK FEATURES:
Secure Email, Calendar, Contacts & Files – All In One Place
• Inbox access to everything you need in one app including other email providers. Manage your Gmail inbox and others with Outlook.
• Calendar organizer to help you schedule your day
• Access files right from your inbox, with connected experiences with Office, Word, Excel, PowerPoint & OneNote.Access locally in Outlook, or on OneDrive or other cloud storage.
• Create and join your online video calls from Teams, Zoom, BlueJeans & Webex.

Email Management & Spam Email Protection – Safe & Secure
• Microsoft Outlook protects your files, emails and information with security you can trust.
• Secure Email App: Built-in protection against viruses, phishing & spam email.
• Spam email detection sends all potential threats to a separate folder.• Microsoft security & privacy keeps your email, calendar, contacts & files safe.

Email Organizer & Calendar Management
• Check messages from email clients like Gmail and Yahoo Mail online from your phone
• Organize your email with tags, folders & more. Easily filter out unwanted spam email.
• RSVP to invites from your inbox & send personalized comments.
• Keep your weekly calendar and daily tasks organized with Outlook

Task Organizer & Productivity Solutions - Intelligence Everywhere
• Email organizer groups same subject emails & conversations for easier tracking.
• Use your voice to find people, contacts, emails, events & attachments with Search.
• Use suggested replies to respond quickly.
• Listen to emails with Play My Emails & catch up hands-free.
• Calendar automatically updates with travel & delivery information.

Microsoft Outlook is compatible with:
• Microsoft Exchange
• Microsoft 365
• Outlook.com
• Gmail
• Yahoo Mail
• AOL Mail

Management for contacts, email, work schedule, files & more with Microsoft Outlook.

See your emails and events at a glance with the Outlook companion app for Wear OS\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5325966,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.microsoft.office.outlook\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.outlook/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.outlook/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.outlook/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.outlook/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Booking.com: Hotels and more\",\n \"appId\": \"com.booking\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.booking\",\n \"icon\": \"https://play-lh.googleusercontent.com/eJuvWSnbPwEWAQCYwl8i9nPJXRzTv94JSYGGrKIu0qeuG_5wgYtb982-2F_jOGtIytY\",\n \"developer\": {\n \"devId\": \"Booking.com Hotels & Vacation Rentals\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Booking.com%20Hotels%20%26%20Vacation%20Rentals\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Save on your next trip with the Booking.com app! Find great hotel or apartment deals and book in just a few minutes. You can also book flights, rental cars, and more through the app.

- Book your whole trip in one app (accommodations, flights, car rentals, taxis and more)
- Stay flexible with free cancellation (available at most properties)
- 24/7 customer service in more than 40 languages
- No booking or credit card fees
- Chat directly with your property in the app
- Enjoy mobile-only discounts
- Use filters to easily find the perfect place out of millions of available accommodations (hotels, apartments, homes, villas, ryokai and more)
- Get paperless confirmation of your reservation — no printing required
- Manage your bookings on the go, making changes whenever and wherever you want
- Discover local attractions and make the most of your trip
- Share your experience and get local advice on our Travel Communities forums

Access millions of accommodations
From cozy country homes to funky city apartments, find the perfect place out of millions of available accommodations. Our app offers hotels, apartments, hostels, vacation rentals, resorts, motels, guest houses, and bed and breakfasts

Quickly find the perfect place to stay
Filter hotels by price, review score, WiFi quality, and other things important to you. Search cheap hotels by city, attraction, landmark, or hotel name. Special requests? Pet-friendly hotels? We have filters for everything. You can also compare your favorite accommodation options side by side to ensure you get the best price and quality.

Deals for any budget
Discover daily accommodation deals and save on your next hotel, apartment, or villa booking.
Get exclusive mobile-only discounts of 10% or more on select properties when you book in the app. Savings available on motels and hostels, B&Bs and resorts, and luxury hotels, inns, homes, houses, apartments and vacation rentals. Find your ideal accommodation at an ideal price.

Stay flexible with free cancellation
Change of plans? Not a problem. You can cancel for free at most hotels, apartments and other properties on Booking.com. And the app makes things even easier — it only takes a few taps to cancel, and you’re free to find a place that better suits your needs.

Last-minute travel
Heading somewhere in a hurry? With the app, you can quickly book hotels at the last minute (as well as far in advance). Finding a place in short order has never been easier. Our app allows you to search for properties nearby, fill in a few details, and secure your reservation. You can also change, cancel, or make additional reservations on the go.

Jet off with the perfect flight
Book domestic or international flights on the go with ease. The app allows you to search thousands of airfare deals per day. Plane tickets available for all major airlines and destinations.

Hit the road with car rentals
Car hire has recently been added to the app. Whether you just need a ride to explore your destination, or you’re going on an epic road trip, the Booking.com app can help. Rent a car from all the major companies and hit the road!

Reserve taxis with ease
Book in advance for a seamless connection from the airport to your destination. You can also book taxis to and from other pick-up points, such as hotels and local attractions.

Find and book a great experience
Whether you’re looking for attraction or museum tickets, culinary tours, or helicopter rides, you can book experiences online in minutes, with free cancellation on many options.

Get and share tips with other travelers
Connect with fellow travelers, share your experiences, and get local advice on the best accommodations, attractions, and more. Discover new experiences with our app, the perfect trip planner.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.559669,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.booking\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.booking/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.booking/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.booking/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.booking/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Sweatcoin\",\n \"appId\": \"in.sweatco.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/in.sweatco.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/ilCzgxgHDfjc89NiP2znisFCIOWi9TsDlBzzKGZNP_zynsveO1YsjDTphhdIbKWd5c5Z\",\n \"developer\": {\n \"devId\": \"Sweatco Ltd\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Sweatco%20Ltd\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Sweatcoin is a new breed of step counter and activity tracker that converts your steps into a currency you can spend on gadgets, sports and fitness kit, services and experiences.

Sweatcoin is an achievement tracker for a new generation. Spend sweatcoins earned on goods, services and experiences with our partner brands in the marketplace. Or, if you're feeling generous, you can exchange them with your friends and family and even donate to amazing causes through Sweatcoin for good.

The fitter and healthier you become, the wealthier you get. Movement has value!

You’ll earn sweatcoins whether you exercise at home or outside. Sweatcoin’s activity tracker will let you keep track of your progress: counting steps and monitoring your exercising activity.

Download Sweatcoin so you can redeem offers for free thanks to our marketplace, filled with exclusive discounts and products.

Whether you want to get in shape, lose weight or keep track of your fitness level, Sweatcoin is the perfect app to stay healthy.

You can use Sweatcoin on your smartphone (Android or iPhone) and in your smartwatch (currently on Apple Watch, stay tuned for Android Wear compatibility). You just need to take one step to begin!

FEATURES:

Pedometer:
Sweatcoin will run in the background, wasting no battery, to count your steps as a distance tracker and pacer.

Marketplace:
Get exclusive offers for free, prizes and discounts that you will not find anywhere else.

Crowdfunding:
Donate to help causes that matter all by simply walking. Use your sweatcoins to help different charity projects. We will give these organizations fiat currency (dollars, pounds, euros) once you’ve donated your sweatcoins to the cause.

Security:
Sweatcoin uses its own algorithm to count your steps. That means that, unlike other apps, we don’t track your location and we don’t have to share any information with a third party. Your data is only yours (and will always be!).\",\n \"scoreText\": \"4.4\",\n \"score\": 4.424589,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=in.sweatco.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/in.sweatco.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/in.sweatco.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/in.sweatco.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/in.sweatco.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"The Weather Channel - Radar\",\n \"appId\": \"com.weather.Weather\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.weather.Weather\",\n \"icon\": \"https://play-lh.googleusercontent.com/RV3DftXlA7WUV7w-BpE8zM0X7Y4RQd2vBvZVv6A01DEGb_eXFRjLmUhSqdbqrEl9klI\",\n \"developer\": {\n \"devId\": \"The Weather Channel\",\n \"url\": \"http://gplayapi.srik.me/api/developers/The%20Weather%20Channel\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Weather Channel is the World's Most Accurate Forecaster**. Prepare for severe weather ahead with our local storm radar. Rain radar, storm tracker and severe weather warnings help you prepare for hurricane season, storms and heavy rain. Monitor live radar updates, an hourly rain tracker, storm radar news, and local weather forecast on the go.

Live doppler radar maps, hurricane tracker, severe weather widgets, and accurate weather alerts warn you ahead of time of heavy rain, floods, and other severe weather. Extreme weather is increasing across the nation; our live radar, severe weather alerts, and storm tracker have you covered with hourly forecast updates. Local weather alerts prepare you for the hurricane season ahead: heavy rain, strong winds freezing rain, and more.

Our daily forecast tracking page keeps you informed with severe weather and precipitation updates by the hour. Travel safely this season and plan up to 15 days in advance with forecasts from the world’s most accurate weather forecaster – plan ahead with confidence**. Our storm radar widget provides local rain tracker updates and alerts you to upcoming storms right on your home screen. Weather maps enabled with GPS, live radar, storm radar alerts, and severe weather warnings help you face whatever the weather may bring.

The Weather Channel Features:

Local Weather Radar: Hurricane, Storm & Rain Tracker
- Hourly rain and hurricane tracker
- 24-hour Future Radar and storm tracker
- Rain Intensity: Track rain intensity up to 7 hours in the future
- Rain Accumulation: See how much rain has fallen over the last 24 hours & into the next 48 hours.
- ‘Feels Like’ feature helps you dress right for the weather

Weather Widget:
- Prepare for severe storms & hurricane season
- Storm tracker & live rain radar lets you follow spring weather patterns
- Storm radar makes live rain tracking easy throughout spring storms
- Local radar updates, severe weather alerts in your area, & forecast readings for the next three hours - all on your home screen

Additional Features:
- Widget & features are compatible with dark mode: set your Android device to dark mode for a great viewing experience
- Forecasts include information on sunset times, allergies, flu & pollen forecasts
- Seasonal weather news keeps you updated year-round
- Severe weather events: Live alerts & coverage on severe weather events

---

Upgrade to The Weather Channel Premium for our most comprehensive, dynamic, and precise weather experience. Get exclusive access to:
- Ad-free weather app
- 15-minute forecast details
- Advanced 72-Hour Future Radar
- & more!

Privacy & Feedback
- Our Privacy Policy can be viewed here: https://weather.com/en-US/twc/privacy-policy
- Our Terms of Use can be viewed here: http://www.weather.com/common/home/legal.html
- If you have any questions or suggestions, please get in touch at android.support@weather.com

**The Weather Channel is the World's Most Accurate Forecaster. ForecastWatch, Global and Regional Weather Forecast Accuracy Overview, 2017-2020, https://www.forecastwatch.com/AccuracyOverview2017-2020, commissioned by IBM.

**The World's Leading Weather Provider: According to Comscore, The Weather Company, parent of The Weather Channel, is the largest provider of weather forecasts worldwide based on total monthly unique visitors in 2020. Comscore Media Metrix®, Worldwide Rollup Media Trend, News/Information – Weather category incl. [P] Weather Company, The and [M] Weather Channel, The, Jan-Dec. 2020 avg.

The Weather Channel app has over 2.4 million 5-star ratings out of over 3.0 million total reviews since January 2018 according to Apple’s App Store Connect and over 1.6 million 5-star ratings out of over 2.4 million total reviews since October 2008 according to Google Play Developer Console worldwide.

The Weather Channel® is a registered trademark of TWC Product and Technology, LLC, an IBM Company\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5867996,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.weather.Weather\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.weather.Weather/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.weather.Weather/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.weather.Weather/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.weather.Weather/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Weather Home: Local Forecast\",\n \"appId\": \"com.myhomescreen.weather\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.weather\",\n \"icon\": \"https://play-lh.googleusercontent.com/FdzcOKQ1IdHOknSr9jfaHqc3CW27XUTcgQz1uPXGv5tErec6LzC1tfA5X9SQUluHzxK6\",\n \"developer\": {\n \"devId\": \"Yobi Mobi\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Yobi%20Mobi\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Unlock a new phone experience with our launcher and weather widget 🌌

Benefits of Daily Weather Home:

📲 Customizable weather focused home screen/launcher with a variety of available icon packs and wallpapers

📅 Full screen weather widget with daily and weekly weather outlooks

🌡️ Detailed, clean daily weather planner and temperatures

🔓 Unlock powerful voice enabled search that supports all major search engines


Daily Weather Home is the fastest, most accurate weather tool available for Android. With rich, interactive maps, minute by minute updates, and over 43,000 available zip codes, Daily Weather Home offers the hyper-local precision forecast you need to be ready to take on any weather condition, from a high UV index sunny day, to a sudden arctic blast.

Offering fast, one-swipe access, Daily Weather Home raises the bar for extreme and severe weather preparedness, giving you a superior, hi-resolution view of the conditions most likely to affect you. And with optimized one-touch voice search, you’ll never be far away from the information you need.


Key Features:

🧹 Uncluttered, efficient user experience: Get to your local weather, fast. Receive timely weather alerts, <15 min updates, and enhanced forecast precision.

⛈️ HiDef Radar shows you severe local weather before it hits

🌐 Instant Weather Search: Whether by voice or text, DWH was built to optimize your search experience. Enjoy fast, intuitive, and accurate search.

🏃 Fast, Hyper-Local Radar: Access HD radar images and daily weather forecasts with minimal load times. DWH’s lightweight architecture ensures you won’t spend time waiting for important images to load.

⚡ Daily Weather Home takes all the best weather information and combines it with easy access to your favorite apps and lightning fast search.

ABOUT THIS VERSION:

Daily Weather Home delivers an intelligent Android experience that will make your daily life better. It's 100% FREE and loaded with potential for more features in coming updates! Let us know what you think. We hope you love Daily Weather Home.

Daily Weather Home: The Fastest, Most Accurate Weather App Available.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2442927,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.myhomescreen.weather\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.weather/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.weather/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.weather/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.myhomescreen.weather/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Photomath\",\n \"appId\": \"com.microblink.photomath\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.microblink.photomath\",\n \"icon\": \"https://play-lh.googleusercontent.com/E_kpq1HGn5WU2P4S2yu0BwrPEHqiA-VBh2R7qoIjPFXdNvKA0A-8zi0RzRslUtEOnUvA\",\n \"developer\": {\n \"devId\": \"Photomath, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Photomath%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get the math app that gets you! Photomath is the world’s most useful math learning platform, with millions of learners of all levels checking homework, studying for tests, and making new math discoveries every month.

Basic solution steps and explanations are totally FREE, but if you’re ready for a brand new world of learning, Photomath Plus gives you access to:

EXPERT UNDERSTANDING
With access to a full library of explanations for selected textbooks, including word and geometry problems! Learn at your own pace with content that’s been approved by some of the world’s best math teachers.

MULTIMEDIA LEARNING
With detailed AI animations and verbal explanations to help you visualize and understand math in a way that’s suited to your learning style.

MATH INSIGHTS
Level up your learning by understanding “how” and “why” math problems are solved, or get reminders for forgotten terms and concepts with our embedded glossary.

So whether you’re learning basic arithmetic, or tackling advanced geometry, we’ll get you there together. One step at a time.

KEY FEATURES
• Free step-by-step explanations
• Word problem instructions
• Interactive graphs
• Video learning
• Multiple solution methods
• Advanced scientific calculator

MATH TOPICS COVERED

NUMBERS & QUANTITY
- Operations with Real and Complex Numbers
- Comparing Real Numbers
- Identifying Numbers
FUNCTIONS
- Graphs of Functions (Linear, Quadratic, Exponential, etc)
- Properties of Functions (Domain, Asymptotes, etc)
ALGEBRA
- Simplifying, Factoring, and Evaluating Algebraic expressions
- Simplifying Algebraic fractions and Partial-fraction decomposition
- Solving equations and inequalities (Linear, Quadratic, Exponential, etc)
- Systems of equations
- Polynomial Division
- Binomial theorem, Factorials
- Combinations, Permutations, and Variations
- Matrices and Matrix equations
- Determinants
- Mathematical Induction
TRIGONOMETRY & ANGLES
- Converting angles between degrees and radians
- Converting angles between decimal and DMS form
- Period of trigonometric functions
- Verifying trigonometric identities
SEQUENCES
- Identifying sequences
- Series
- Recursive and Explicit form
- Tests for Convergence
CALCULUS
- Limits
- Derivatives
- Integrals
- Area below a curve
- Identifying Conics
- Rotations of Conics
- Parametrization of Curves
- Identifying quadratic surfaces
- Differential equations
- Tangent lines
- Converting between coordinates


“An answer isn’t all you’ll get from this free app. Photomath also provides a step-by-step guide of how each problem is solved.” — Huffington Post

“The step-by-step guide is beneficial to students that do not have access to a tutor and struggle with solving math problems.” — Forbes

“A viral video about a new app looks like a dream come true for anyone who struggles with math.” — Time
___________________________________________


• Payment will be charged to your Google Play account at the confirmation of purchase.
• A subscription automatically renews unless it’s canceled at least 24 hours before the end of the current billing period.
• Your account will be charged for renewal within 24 hours prior to the end of the current period.
• Manage or cancel your subscription in your account settings on Google Play after purchase.
• Offers and pricing are subject to change without notice.

Suggestions or questions? Email us at support@photomath.com

Website: www.photomath.com
TikTok: @photomath
Instagram: @photomath
Facebook: @Photomathapp
Twitter: @Photomath

Terms of Use: https://photomath.com/en/termsofuse
Privacy Policy: https://photomath.com/en/privacypolicy\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6256504,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.microblink.photomath\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.microblink.photomath/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.microblink.photomath/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.microblink.photomath/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.microblink.photomath/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Bank of America Mobile Banking\",\n \"appId\": \"com.infonow.bofa\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.infonow.bofa\",\n \"icon\": \"https://play-lh.googleusercontent.com/GdICLxnKd-e-lmV46N_SjihWHzAUX1nj8e--dF2KrQjvomN4zxOR-iEWwsTG_Tqr_oc\",\n \"developer\": {\n \"devId\": \"Bank of America\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Bank%20of%20America\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Bank conveniently and security with the Bank of America® Mobile Banking app for U.S.-based accounts.

Manage Accounts
• View account balances and review activity
• Activate or replace credit/debit cards
• Set alerts for important account info

Transfer Money and Pay Bills
• Securely send and receive money with Zelle® using a U.S. mobile number or email address¹
• Transfer funds between your Bank of America and linked Merrill accounts
• Pay bills

Check Deposit
• Take photos of checks to deposit them
• Get immediate confirmation that your check is processing²

Erica, Your Virtual Financial Assistant³
• Ask Erica to find transactions, pay bills and more
• Get valuable alerts, and helpful insights

Security
• Set up Touch ID® / Face ID®
• If fraudulent activity is suspected on your card, we’ll notify you
• View security center
• With our Mobile Banking Security Guarantee, you’re not liable for fraudulent transactions when reported promptly⁴

Manage Investments with Merrill
• Trade stocks, ETFs, mutual funds
• View up-to-date Market data, news, and quotes
• Send messages and documents securely to your advisor


See the Online Banking Service Agreement at bankofamerica.com/serviceagreement for more information. Mobile carrier message and data rates may apply.

¹ Zelle transfers require enrollment and must be made from a Bank of America consumer checking or savings account to a domestic bank account or debit card. Recipients have 14 days to register to receive money or the transfer will be canceled. Dollar and frequency limits apply.
² Deposits are subject to verification and not available for immediate withdrawal. Other restrictions apply.
³ Erica only listens or speaks when you tap the microphone and retains interactions to optimize your experience. Erica speaks aloud and hears and responds to all voices. Erica is only available in English.
⁴ You’re not liable for fraudulent Mobile Banking transactions when you notify the bank within 60 days of the transaction first appearing on your statement and comply with security responsibilities.

Investing involves risk. There is always the potential of losing money when you invest in securities.

Merrill Lynch, Pierce, Fenner & Smith Incorporated (also referred to as "MLPF&S" or "Merrill") makes available certain investment products sponsored, managed, distributed or provided by complanies that are affiliates of Bank of America Corporation ("BofA Corp"). MLPF&S is a registered broker-dealer, registered investment adviser, Member SIPC and a wholly owned subsidiary of BofA Corp. Insurance and annuity products are offered through Merrill Lynch Life Agency Inc. ("MLLA"), a licensed insurance agency and wholly owned subsidiary of BofA Corp.

Banking products are provided by Bank of America, N.A., and affiliated banks, Members FDIC and wholly-owned subsidiaries of Bank of America Corporation.

Investment products:
• Are Not FDIC Insurance
• Are Not Bank Guaranteed
• May Lose Value

Zelle® and the Zelle® related marks are wholly owned by Early Warning Services, LLC and are used herein under license.

Features may only be available for certain account types.

Android is a trademark of Google Inc.

Google emojis are used herein under license.

Bank of America and related trademarks are trademarks of Bank of America Corporation
Bank of America, N.A. Member FDIC
© 2022 Bank of America Corporation\",\n \"scoreText\": \"4.6\",\n \"score\": 4.619956,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.infonow.bofa\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.infonow.bofa/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.infonow.bofa/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.infonow.bofa/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.infonow.bofa/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Revive: Face Photo Animator\",\n \"appId\": \"revive.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/revive.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/AUhJc8Xqz3rAzu7bbNxpu8-uWwDs1dlBWxu0jN0SN9Z8_WPPruFB-B_JVN9raXPVpu-e\",\n \"developer\": {\n \"devId\": \"ReviveLtd\",\n \"url\": \"http://gplayapi.srik.me/api/developers/ReviveLtd\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Revive is the cool photo animator app
Revive is a super easy AI Photo Animator that lets you create an animation from any photo. You don’t need editing skills. Just take a selfie, add lip sync effect and make your face dance!.

Revive makes any boring pictures weird and fun with the lip sync.
Start a conversation in a messenger, get comments on social media with your animated photos, or illustrate an opinion with a Revive video.

Create live portraits with a face in it for an instant animation effect.
Edit pictures, selfies, a meme with the animation creator. Make your photos sing.

How does Revive work?
- Upload your photo
- pick your favorite song
- Tap Revive and make your face dance or sing.
- Share it with your friends on social media

Here's what you can do with Revive:
Use the face animator to make your photos sign or dance and share them with the world.
Add a live picture instead of a regular one to your profile.
Revive is the perfect animation maker for classic avatar portraits with dancing faces on it.

Types of sounds:
- Hit songs
Make your own mimic picture, your baby’s, or your best friend’s selfie sing rock hits, pop music classics, or karaoke favorites that fit their personality the best.
- Meme sounds
Animate your old photos with a motion or mimic to viral video hits and post the hilarious results to jump on a trend. There’s no need to take a video, just add your pic and dance!
- Quotes from movies and TV shows
Now your baby can sound like Don Corleone, your lazy cat can say "Love me, feed me, never leave me" as Garfield, and your ex can promise you “I’ll be back” as Terminator. Pick a phrase that suits the image and creates a funny combo with singing and dancing heads.

New songs, sounds, and lines are added daily.

----

In case of any questions, issues, or collaboration requests, contact us at hi@reviveapp.net

Terms and Conditions: https://reviveapp.net/terms/
Privacy Policy: https://reviveapp.net/privacy-policy/\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6296296,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=revive.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/revive.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/revive.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/revive.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/revive.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Starbucks\",\n \"appId\": \"com.starbucks.mobilecard\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.starbucks.mobilecard\",\n \"icon\": \"https://play-lh.googleusercontent.com/qrmolFrTzWjD7o_vVZ8bcQj0WM8-AI4fhJzg-L3ecLCLUJc9vNWOQ1MmkKQA2RN69C0u\",\n \"developer\": {\n \"devId\": \"Starbucks Coffee Company\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Starbucks%20Coffee%20Company\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Starbucks® app is a convenient way to order ahead for pickup, scan and pay in-store and customize your favorites. Rewards are built right in, so you'll earn Stars towards free drinks and food on your purchases.

Mobile Order & Pay
Customize and place your order, then pick up from a nearby participating store without waiting in line.

Pay in Store
Save time and earn Rewards when you pay with the Starbucks® app at many stores in the U.S.

Earn Stars & Redeem Rewards
Join Starbucks® Rewards and unlock exclusive benefits while earning Stars with almost every purchase. Redeem Stars for free drinks, food and more. Starbucks® Rewards members can look forward to a birthday treat plus complimentary coffee and tea refills.*

Earn Stars even quicker with Double Star Days, Bonus Star challenges and Member exclusive games. No matter how you pay, you can earn Stars on your order. Up to 3 Stars/$1 with Starbucks Rewards Visa Card, 2 Stars/$1 with a Starbucks Card, and 1 Star/$1 with cash, credit/debit and PayPal. Some restrictions apply.

Send a Gift
Say thanks with a digital Starbucks Card. It's easy to redeem a digital card from email or in the Starbucks® app.

Manage Starbucks Cards
Check your Starbucks Card balance, add money, view past purchases and transfer balances between cards.

Find a Store
See stores near you, get directions, hours and view store amenities before you make the trip.

Tip Your Barista
Leave a tip on purchases made with the app at many stores in the U.S.

*At participating stores. Restrictions apply. See starbucks.com/rewards for details.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.57251,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.starbucks.mobilecard\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.starbucks.mobilecard/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.starbucks.mobilecard/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.starbucks.mobilecard/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.starbucks.mobilecard/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Beat Maker Pro - DJ Drum Pad\",\n \"appId\": \"com.mwm.sampler\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.mwm.sampler\",\n \"icon\": \"https://play-lh.googleusercontent.com/3dMP7UQc78h_28pwlVMRcQzVtNGhgWCNWka40YXwWXtp_GmPS2DQfjjzqepemlAC2SEe\",\n \"developer\": {\n \"devId\": \"MWM - Music and creative apps for Android\",\n \"url\": \"http://gplayapi.srik.me/api/developers/MWM%20-%20Music%20and%20creative%20apps%20for%20Android\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Beat Maker Pro is the easiest way to become a DJ beat maker in no time!

🎶 You create music beats?🎶

Meet your new favorite drum pad to make music and create beats like a real DJ. Mix loops, record all your melodies with our intuitive pads and feel the rhythm ! This groovepad app will help you to create songs from all genres (dubstep, trap, EDM, hip-hop...), and to become a beatbox maker. If you do EDM & Dubstep melodies, you will love the rhythm groovepad, the drums and beatmaking lessons.

What you can do with Beat Maker Pro:
🎶 Create melodies and rhythms
🎹 Play famous songs of all genres
🎧 Learn beatbox and become a true music maker
🎛️ Make drums groove like a DJ with the drumpad
🎵 Impress with the drumpad for star beats and groove

With Beat Maker Pro, get the best music lessons, be closer to the rhythm and melodies you like: you might become the DJ king who masters the art of drums. You will have a studio in your pocket to remix and make music anywhere, anytime.

Have any suggestion regarding the app? Our support team is ready to help at support-drumpad@mwmapps.com.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2701316,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.mwm.sampler\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.mwm.sampler/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.mwm.sampler/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.mwm.sampler/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.mwm.sampler/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Voice\",\n \"appId\": \"com.google.android.apps.googlevoice\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googlevoice\",\n \"icon\": \"https://play-lh.googleusercontent.com/Gf8ufuFbtfXO5Y6JuZjnG0iIpZh21zNTqZ5aiAXO8mA38mvXzY-1s27FWbGlp51paQ\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Google Voice gives you a phone number for calling, text messaging, and voicemail. It works on smartphones and computers, and syncs across your devices so you can use the app in the office, at home, or on the go.

NOTE: Google Voice only works for personal Google Accounts in the US and Google Workspace accounts in select markets. Text messaging is not supported in all markets.

You're in control
Get spam filtered automatically and block numbers you don’t want to hear from. Manage your time with personalized settings for forwarding calls, text messages, and voicemail.

Backed up and searchable
Calls, text messages, and voicemails are stored and backed up to make it easy for you to search your history.

Manage messages across devices
Send and receive individual and group SMS messages from all your devices.

Your voicemail, transcribed
Google Voice provides advanced voicemail transcriptions that you can read in the app and/or have sent to your email.

Save on international calling
Make international calls at competitive rates without paying extra for international minutes with your mobile carrier.

Keep in mind:
• Google Voice is currently only available in the US. Google Voice for Google Workspace users is available in select countries. Check with your administrator for access.
• Calls made using Google Voice for Android can be placed through a Google Voice access number. All access number based calls use the standard minutes from your cell phone plan and may incur costs (e.g. when traveling internationally).\",\n \"scoreText\": \"4.4\",\n \"score\": 4.424,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.googlevoice\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googlevoice/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googlevoice/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googlevoice/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googlevoice/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ZEDGE™ Wallpapers & Ringtones\",\n \"appId\": \"net.zedge.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/net.zedge.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/_Zb6lOOfZFnDmMYKF238t86GkDpVa-5N8d4_PJb4UzOWvzU5GSA2eXuvbtRsl4A8t5k\",\n \"developer\": {\n \"devId\": \"Zedge\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Zedge\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"ZEDGE™ gives you the best background wallpapers and cool ringtones for free!
Personalize your phone with a HD wallpaper, live wallpaper, alarm sound or ringtone with ease. ZEDGE™ offers an extensive catalog with millions of free backgrounds, live wallpapers, stickers, ringtones, alarm sounds & notification sounds for your Android phone. Search for Anything - It’s on ZEDGE™

Join the over 350 million people who already installed this highly popular personalization app.

Wallpapers
• No need to look for more wallpaper apps. An endless selection of free backgrounds supporting the most common screen sizes.
• Supports full HD wallpaper and 4K wallpaper to use as backgrounds.
• Fancy a black phone wallpaper, or maybe a girly wallpaper? You’ve got it!
• Option to apply lock screen wallpapers, home screen wallpapers, or both at the same time.
• Option to auto select a new background that rotates at selected intervals.
• Customize your background with cool filters and stickers.

Live Wallpapers
• Imagine having cool video effects as background on your home screen. You’ve got it!
• Our live wallpapers don’t drain your battery - only plays once when turning on your home screen.
• No need to install additional new live wallpapers - it’s embedded in the app.
• Extensive catalog of quality live wallpapers for all tastes.

Ringtones
No need to look for more ringtone apps. An endless selection of free ringtones including music, effects and funny tones. Probably the largest selection of free ringtones in the world.
• Option to set individual contact ringtones, alarm sounds and default ringtone. Apply a cool ringtone for your mum or sister.

Alarm & Notification sounds
• Massive selection of notification sounds, alert tones and funny tones.
• Option to set an alert and alarm sound.

Favorite and Save
• Add a sound or wallpaper to favorites without downloading.
• Access your ringtones and backgrounds across all your devices with one simple login.
• Receive notifications on limited edition holiday wallpapers and ringtones for occasions and holidays like Valentines Day, Fathers day, Mothers Day, New Years, Halloween and Christmas plus cool customizations for birthdays, anniversaries, graduations, and more.

App permission notice
Contacts: Optional if you want to set individual ringtones to contacts in your address book.
Photos/Media/Files: Needed to allow you to save and use a custom wallpaper, ringtone or notification sound.
Storage: Needed to display or use the currently set background, ringtone or notification sound.
System settings: Optional if you want to apply a ringtone as the default phone ringtone.
Location: Optional if you want personalized recommendations based on your location.

Our promise
We do not import or use any personal information or files in your media library, storage or contact list.

We love ringtones, we love wallpapers - and we love diversity!

TATTOO YOUR PHONE\",\n \"scoreText\": \"4.6\",\n \"score\": 4.614078,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=net.zedge.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/net.zedge.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/net.zedge.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/net.zedge.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/net.zedge.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ADP Mobile Solutions\",\n \"appId\": \"com.adpmobile.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.adpmobile.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/85xxdCjRGt9lcQA8KlFjneXds2rwRpIiNMwbthsQLnSYgST6JOhRlLEh2Pk-e3XakQ\",\n \"developer\": {\n \"devId\": \"ADP, INC.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/ADP%2C%20INC.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"ADP Mobile Solutions provides you with an easy and convenient way to access payroll, time & attendance, benefits, and other vital HR information for you and your team.

- All the features listed below may not be available to you. If you have question, review the FAQs in the Settings menu in the app.

- This app is available to the employees and managers of companies that use the following ADP products: Workforce Now, Vantage, Portal Self Service, Run, TotalSource, ALINE Card by ADP, Spending Account, and select products outside the US (ask your employer).

Key Employee Features:

• View pay & W2 statements
• View & request time off
• Track time & attendance
o Punch in/out
o Create timesheets
o Update, edit, & approve time cards
• View pay card accounts
• View benefit plan information
• Contact colleagues

Key Manager Features:
• Approve time cards
• Approve time off
• View team calendars
• View executive dashboards

Security:
• All application requests and transactions are routed through ADP's secure servers
• All network traffic between the mobile device and the server is encrypted
• All employee information cached on the mobile device is encrypted
• Username and password protected
• Login sessions time out from inactivity
• Accounts locked out with excessive login failures
• Fast and easy login with Biometric Authentication
• Recover or reset forgotten user IDs and passwords

Supported Operating Systems
• Android 6.0 or higher

Investment options are available through the applicable entities for each retirement product. Investment options in the “ADP Direct Products” are available through ADP Broker-Dealer, Inc. (“ADP BD”), Member FINRA, an affiliate of ADP, INC, One ADP Blvd, Roseland, NJ 07068 (“ADP”) or (in the case of certain investments), ADP directly.
Certain advisory services may be provided by Financial Engines™ Professional Management, a service of Financial Engines Advisors, LLC (“FE”). FE’s service are made available through connectivity by ADP, however, FE is neither affiliated with ADP nor any of ADP’s affiliates, parents, or subsidiaries, and is neither endorsed nor recommended by any ADP entity.”\",\n \"scoreText\": \"4.5\",\n \"score\": 4.52756,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.adpmobile.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.adpmobile.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.adpmobile.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.adpmobile.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.adpmobile.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"MyChart\",\n \"appId\": \"epic.mychart.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/epic.mychart.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/YPtBGr6THchfNi4KIo9P4A5TePEia_daTtMtsqwsURjYqngsLCRV1-NUah09z0kcBXs\",\n \"developer\": {\n \"devId\": \"Epic Systems Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Epic%20Systems%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"MyChart puts your health information in the palm of your hand and helps you conveniently manage care for yourself and your family members. With MyChart you can:

•\\tCommunicate with your care team.
•\\tReview test results, medications, immunization history, and other health information.
•\\tConnect your account to Google Fit to pull health-related data from your personal devices right into MyChart.
•\\tView your After Visit Summary® for past visits and hospital stays, along with any clinical notes your provider has recorded and shared with you.
•\\tSchedule and manage appointments, including in-person visits and video visits.
•\\tGet price estimates for the cost of care.
•\\tView and pay your medical bills.
•\\tSecurely share your medical record from anywhere with anyone who has Internet access.
•\\tConnect your accounts from other healthcare organizations so you can see all your health information in one place, even if you've been seen at multiple healthcare organizations.
•\\tReceive push notifications when new information is available in MyChart. You can check whether push notifications are enabled under the Account Settings within the app.

Note that what you can see and do within the MyChart app depends on which features your healthcare organization has enabled and whether they’re using the latest version of Epic software. If you have questions about what’s available, contact your healthcare organization.

To access MyChart, you must create an account with your healthcare organization. To sign up for an account, download the app and search for your healthcare organization or go to your healthcare organization’s MyChart website. After you’ve signed up, turn on fingerprint authentication or set up a four-digit passcode to quickly log in without needing to use your MyChart username and password each time.

For more information about MyChart’s features or to find a healthcare organization that offers MyChart, visit www.mychart.com.

Have feedback about the app? Email us at mychartsupport@epic.com.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5822473,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=epic.mychart.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/epic.mychart.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/epic.mychart.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/epic.mychart.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/epic.mychart.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Affirm: Buy now, pay over time\",\n \"appId\": \"com.affirm.central\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.affirm.central\",\n \"icon\": \"https://play-lh.googleusercontent.com/PKjUYM6dvs8MBevibaaTlvrdBu3zFGS2eKx0ggGi7aXvrhiq_Ee-CxZyJVO0FRiCwm8G\",\n \"developer\": {\n \"devId\": \"Affirm, Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Affirm%2C%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With the Affirm app, you can shop stress-free at your favorite stores and pay over time with flexible payment plans—there are no late fees, hidden fees, or surprises—ever.

Why you’ll love shopping on the Affirm app:

• Shop and pay with flexible buy now, pay later plans at almost any store
• Check your eligibility with no impact to your credit score
• Unlock access to exclusive deals and special rates as low as 0% APR
• Manage your account and make payments easily
• Open a high-yield savings account with no minimums and no fees.

How does Affirm work? Here's how to start shopping with the flexibility of buy now, pay over time plans.

• Find your favorite store, shop, and fill your cart.
• Choose from flexible payment options that fit your budget—we'll never charge more than you see upfront.
• We’ll check your eligibility and then you’re good to go (the credit check takes only a moment and won’t affect your credit score).
• Complete your purchase online or at a physical store with Google Pay or Apple Pay.

With Affirm's buy now, pay later flexibility, you can shop at the stores you love without paying all at once. We'll show you exactly what you're paying from the get-go, and we’ll never charge you with late fees, penalties or hidden costs of any kind. Now is the time to responsibly treat yourself with buy now, pay over time shopping and the flexibility of split payments.

Buy now, pay later at almost any store
• Get access to buy now, pay later shopping across hundreds of stores
• A split payment plan should be flexible—that's why we offer plans ranging from 3, 6, 9 months, along with other options
• Buy now and pay over time for almost everything, including apparel, auto, beauty, electronics, and more

Get exclusive deals as low as 0% APR
• Some customers qualify for as low as 0% APR, so you won’t pay interest while making payments over time
• Shop exclusive deals on apparel, electronics, appliances, auto, and more

Manage your account and make payments
• We're all about making financing simple—so you select your payment plan, and know exactly what you're paying from the start.
• Make payments within the Affirm app—we'll even send you email and text reminders to keep you on track with your payment plan.

Open a high-yield savings account with no minimums or fees
• Grow savings with the Affirm Savings account—designed to help you save smarter.
• It's totally free—there's no minimum deposit, and you'll get a high annual percentage yield for every penny you add.

Choose a smarter way to pay at your favorite stores—all while staying true to your financially responsible self. Buy now and pay later with a flexible payment plan. It’s that simple—download Affirm and make payments at your own pace today.

Rates from 0-30% APR. For example, a $800 purchase might cost $73/mo over 12 months at 15% APR. Payment options through Affirm are subject to an eligibility check, may not be available in all states, and are provided by these lending partners: affirm.com/lenders . Affirm savings accounts are held with Cross River Bank, Member FDIC. Options depend on your purchase amount, and a down payment may be required. CA residents: Loans by Affirm Loan Services, LLC are made or arranged pursuant to a California Finance Lenders Law license.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7432156,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.affirm.central\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.affirm.central/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.affirm.central/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.affirm.central/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.affirm.central/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"PowerSchool Mobile\",\n \"appId\": \"com.powerschool.portal\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.powerschool.portal\",\n \"icon\": \"https://play-lh.googleusercontent.com/FfHxiXf0AEElwpDtQA-xZ0oViPXFvb9bMvDiLfwicGxDB9DHjwRGXfTPfub-vamgQik\",\n \"developer\": {\n \"devId\": \"PowerSchool Group LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/PowerSchool%20Group%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"PowerSchool is the fastest growing, most widely used student information system, serving tens of millions of students across the globe. PowerSchool Mobile improves parent engagement and student accountability with easy, instant access to real-time attendance, assignments, scores, grades, and more!

Parents or guardians with multiple students can align all students to a single account, eliminating the need to remember different login accounts and passwords to view student details!

Use PowerSchool Mobile to:

• Customize the dashboard view to gather your important information in one location
• Monitor changes to grades and attendance with push notifications
• Register to receive email alerts for grades, attendance, or assignments
• See real-time updates of grades and attendance
• View assignment details
• Review teacher comments
• Check the school’s daily bulletin board
• View a full course schedule
• Monitor meal and fee balances
• View a calendar showing all assignment due dates

IMPORTANT!

To use the PowerSchool Mobile app, your district must be running the PowerSchool Student Information System. If your district uses a different SIS, suggest they switch to PowerSchool!

POWERSCHOOL MOBILE REQUIREMENTS

• The school district running the latest supported PowerSchool SIS version
• The school district has enabled mobile access
• A wireless connection or mobile data plan
• Users must consent to receive push notifications when connecting to servers outside of the United States\",\n \"scoreText\": \"2.6\",\n \"score\": 2.5559986,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.powerschool.portal\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.powerschool.portal/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.powerschool.portal/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.powerschool.portal/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.powerschool.portal/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"American Airlines\",\n \"appId\": \"com.aa.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.aa.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/Fv8XHfieFcN6A0QgXH68DjdowRHqagzndBt6DpfJtW1UBJktfCYHx7jiU5dVuFSVXrM\",\n \"developer\": {\n \"devId\": \"American Airlines, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/American%20Airlines%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With the American Airlines app, you’re covered with the information you need exactly when you need it. Need a mobile boarding pass? Wondering where the closest Admirals Club® lounge is located? All of this info, and more, is available at your fingertips.

-Dynamic home screen: Knows where you are in your travel journey and gives you easy access to the right tools at the right time.

-Mobile boarding pass: Check in for your trip and retrieve your mobile boarding pass. No need to print, and it’s updated along the way.

-Flight updates: Get the latest flight updates by simply retrieving your reservation and allowing American Airlines to send notifications to your mobile device.

-Interactive terminal maps: Navigating airports is a breeze with our interactive terminal maps. Find the closest Admirals Club lounge or get directions to your connecting gate.

-AAdvantage® account details: Review all the details of your AAdvantage account right from the app. Not an AAdvantage member? Sign up today.

-Upgrade your seat: Request and purchase upgrades with ease. Want to see where you are on the list? The app displays the upgrade standby list within four hours of your scheduled departure.

-Seat selection: Select or change your seat within the app. Just pick the one you’d like and change it on the spot.

-Track your bag: Know exactly where your bag is from the time it leaves your hands to when you extend the handle at your final destination.

-Save your reservation: Your recently viewed reservations are automatically saved in the app so you can easily grab the details for your next flight in seconds.

-Wi-Fi access in the air: Don’t forget on flights with Wi-Fi, you can use the American app and aa.com to check flight information and watch movies and TV shows at no cost.

Contact Us: 800-222-2377

Why we need the permissions:

Bluetooth
We will be adding location assistance to mapping (see our new terminal maps) that uses BLE

Location
Your location helps us give you relevant information tailored to where you are at the time.

Photos/Media/Files
Access to photos is required to store parking reminders.

Camera
The camera allows the app to scan credit cards and expedite the checkout process.

Wi-Fi connection information
This allows the app to understand when connectivity exists to give you the data you need.

Other
Other various permissions allow the app to: receive google notifications, process notifications while the device is trying to sleep, access American’s web services, and vibrate for important messages.\",\n \"scoreText\": \"3.8\",\n \"score\": 3.8488958,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.aa.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.aa.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.aa.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.aa.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.aa.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Turbo VPN - Secure VPN Proxy\",\n \"appId\": \"free.vpn.unblock.proxy.turbovpn\",\n \"url\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.turbovpn\",\n \"icon\": \"https://play-lh.googleusercontent.com/G7AkY7FY1XZQU8Xp_h5OGGovDxySJ2tLSlPxNRfl9E3lKDzyqY-2QYByz3CHovWRcg\",\n \"developer\": {\n \"devId\": \"Innovative Connecting\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Innovative%20Connecting\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Turbo VPN is a free and unlimited VPN proxy, offering you a fast VPN connection and stable VPN servers. You can access your favorites sites, improve your gaming experience and stay anonymous online. Download Turbo VPN now to enjoy fast, private and safe internet.

Install Turbo VPN now:
✔ Unlimited and free VPN
The best unlimited free VPN proxy for android. You can enjoy unlimited free VPN service and free VPN proxy servers anytime, anywhere.

✔Access websites with secure Turbo VPN
Unblock sites and apps at super stable and fast VPN speed. Connect to Turbo VPN free vpn proxy servers, access geo-blocked content, forum, news, social network such as Twitter or Facebook, immediately.

✔ Anonymous connection by Turbo VPN
Turbo VPN protects your network under WiFi hotspot or any network condition. You can browse anonymously and securely without being tracked. Military-grade AES 128-bit encryption to secure WiFi hotspot. IPsec protocols and OpenVPN protocols(UDP / TCP) to mask your online identity. Secure your internet connection and guard your sensitive data wherever you are.

✔Streaming and gaming with super fast VPN
Stream videos, live sports and TV shows on YouTube, Netflix without buffering. Listen to popular songs on any music player whenever you want. Improve your gaming experience with fast Turbo VPN servers.

✔Turbo library is out now! Let's read all the free books together.
Relax and immerse yourself in the most exciting and addictive stories. Discover free novels on Turbo anytime, anywhere. Turbo VPN puts free eBooks at your fingertips. Find your favorite genre to read now!

✔User-friendly VPN experience
One tap to connect to a free VPN proxy server. Turbo VPN works with WiFi, LTE, 3G, and all mobile data carriers.

As an Turbo VPN user you will enjoy
*Unlimited and free VPN servers
*Anonymous and secure internet
*Freedom to browse any sites
*Stream anything you want
*Military-grade encryption

Download the secure, fast and free Turbo VPN! Secure your online activities and enjoy your favorite sites now!

User Terms:
By downloading and/or using this product, you acknowledge and agree to the end user license agreement and Privacy Statement at:
https://www.turbovpn.co/static/privacy_policy_turbovpn.html

Our 24/7 customer support team is always here with you. Contact us If you have any queries: turbovpn@inconnecting.com\",\n \"scoreText\": \"4.7\",\n \"score\": 4.682514,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=free.vpn.unblock.proxy.turbovpn\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.turbovpn/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.turbovpn/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.turbovpn/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.turbovpn/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Terabox: Cloud Storage Space\",\n \"appId\": \"com.dubox.drive\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.dubox.drive\",\n \"icon\": \"https://play-lh.googleusercontent.com/Tv3h9IHUliBayyGRxcmzOICwPGfbB8M-rnHDpzMlGM5YPS_-LytZO6GccsVPszse2Zqr\",\n \"developer\": {\n \"devId\": \"Flextech Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Flextech%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Register for 1024GB permanent free cloud storage! Automatically back up your photos and videos. Supports online photo preview and video playing.

Is your phone storage running out of space? Do you need Extra Space Photo Storage to save your favorite photo backup? Don’t worry, we got you with our free “Cloud Storage”. You can Quick Share files and easy backup all your data on secure cloud storage. Stay tuned to get up to 1024 GB free storage.

With TeraBox, you can store approximately: 3,000,000+ photos, 2500+ video files or 6.5 million document pages. We provide a safe place for all your files and storage and prevent your data from being stolen. You can safely back up, sync, access and share your important content.

Get secure cloud storage for free and make secure backups to avoid losing them! 📥Anyone can upload and transfer files to TeraBox and share them with friends and family. Back up photos, videos, documents and other files to cloud storage, and access files synchronized with any computer or mobile device ——from anywhere! 📤

TeraBox Cloud Storage Highlights :
– 1024GB permanent free cloud storage;
– Upload photos, videos, documents and other files from your Android device;
– Access all the content you have stored in cloud storage, no matter what device it came from;
– Preview photos & Online video playback;
– Create folders and move files between them;
– Transfer files to different file storage;

Sign up now for your free TeraBox Cloud Storage. You’ll get enough space to save files from all your linked devices. Also, you can easily sign in with your Facebook, Google, or Apple Id account. We provides you a safe space to upload files from multiple devices like smartphone, tablet, or computer. The backup function can safely back up your files, such as videos, photos and documents, without worrying about losing files. Moreover, you can easily create folders to manage your files and documents.

Function features:
🎥Back up photos & videos
• Automatic photo backup from your phone
• Online photo preview & video playback

🗄File Accessing
• Safely access any type of your files on the app
• Easily archive your files
• Download multiple files at the same time in your transfer list

🔎Search
• Search docs by name and keyword

TeraBox is an innovative cloud storage app that protects all the files on your device, organizes them for you, and helps you quickly back up and search through your photos by using powerful AI technology. With TeraBox, we bring the future of data backup and cloud storage to you.

Any questions for TeraBox? Please do not hesitate to contact us at helpdesk@terabox.com
If you would like to know what people are saying about TeraBox app:
Follow us on Instagram: https://www.instagram.com/clouddubox/

For more details about our app and privacy policy, visit our website: https://www.terabox.com/\",\n \"scoreText\": \"4.9\",\n \"score\": 4.8545504,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dubox.drive\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.dubox.drive/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.dubox.drive/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.dubox.drive/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.dubox.drive/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Signal Private Messenger\",\n \"appId\": \"org.thoughtcrime.securesms\",\n \"url\": \"http://gplayapi.srik.me/api/apps/org.thoughtcrime.securesms\",\n \"icon\": \"https://play-lh.googleusercontent.com/jCln_XT8Ruzp7loH1S6yM-ZzzpLP1kZ3CCdXVEo0tP2w5HNtWQds6lo6aLxLIjiW_X8\",\n \"developer\": {\n \"devId\": \"Signal Foundation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Signal%20Foundation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Millions of people use Signal every day for free and instantaneous communication anywhere in the world. Send and receive high-fidelity messages, participate in HD voice/video calls, and explore a growing set of new features that help you stay connected. Signal’s advanced privacy-preserving technology is always enabled, so you can focus on sharing the moments that matter with the people who matter to you.

• Say anything – State-of-the-art end-to-end encryption (powered by the open source Signal Protocol™) keeps your conversations secure. Privacy isn’t an optional mode — it’s just the way that Signal works. Every message, every call, every time.

• Go fast – Messages are delivered quickly and reliably, even on slow networks. Signal is optimized to operate in the most constrained environment possible.

• Feel free – Signal is a completely independent 501c3 nonprofit. Development is supported by users like you. No advertisements. No trackers. No kidding.

• Be yourself – You can use your existing phone number and address book to securely communicate with your friends.

• Speak up – Whether they live across town or across the ocean, Signal’s enhanced audio and video quality will make your friends and family feel closer.

• Whisper in the shadows – Switch to the dark theme if you refuse to see the light.

• Sound familiar – Choose custom alerts for each contact, or disable noises completely. Simon & Garfunkel wrote a hit song about it in 1964, and you can experience the sound of silence whenever you want by choosing “None” as your notification ringtone.

• Picture this – Use the built-in image editing features to sketch, crop, and flip your outgoing photos. There’s even a text tool so that you can add more words to the 1,000 that your picture is already worth.


For support, questions, or more information, please visit:
https://support.signal.org

Source code:
https://github.com/signalapp

Follow us on Twitter (@signalapp) and Instagram (@signal_app) for all of the latest updates and announcements.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5644984,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.thoughtcrime.securesms\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/org.thoughtcrime.securesms/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/org.thoughtcrime.securesms/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/org.thoughtcrime.securesms/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/org.thoughtcrime.securesms/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Wish: Shop And Save\",\n \"appId\": \"com.contextlogic.wish\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.contextlogic.wish\",\n \"icon\": \"https://play-lh.googleusercontent.com/Vh9dO5naPt9WS_5lH0ZEGYM6YqzgmOax-bLkA-nZLfT_Zun6wC04jkLBfa9gH5iKpyA\",\n \"developer\": {\n \"devId\": \"Wish Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Wish%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Wish is home to millions of items from around the world. Find everything from everyday basics to the wonderfully unexpected, at prices likely to make you smile!

Here are a couple of reasons why Wish is the internet’s best-kept secret for online shopping:

DISCOVERY IS EASY 😲
• Swipe through Wish Clip videos for endless shopping inspiration.
• Order from trusted Premier Merchants.
• Scroll the infinite product feed that features items chosen just for you.
• Find authentic products from your favorite brands.
• Save items you fancy to your Wishlist.

SAVINGS AND COUPONS APLENTY 💵
• Spin the Blitz Buy wheel to unlock limited-time deals on up to 100 items.
• Earn a daily login stamp for every day you open the Wish app. 7 visits gets you up to 50% off!
• Celebrate holidays with a gift from us to you. You get a discount! And you get a discount! Coupon codes for everyone!

WE’VE GOT YOUR BACK 🤝
• Every order is backed by our Money Back Guarantee.
• Receive notifications about your order status every step of the way.
• Check out securely with your credit/debit card, PayPal, Klarna, and more.
• Problem with your order? Wish assistant support is at your service 24/7.

THERE’S SOMETHING FOR EVERYONE 📱🛍🥋
• Get better, personalized recommendations the more you browse.
• Shop for whatever you’re into: clothing, electronics, gardening tools, sports equipment, anime figurines, bags, decor, makeup, toys, drones, smartwatches, or designer perfume.
• Find one-of-a-kind gifts for birthdays, anniversaries, graduation, and more without going over budget.

AVAILABLE AROUND THE WORLD 🌎
• We ship to 60+ countries worldwide.
• Save on shipping when you pick up your order from a Wish Local location.
• Browse Wish in over 32 languages, including English, Spanish, Italian, Japanese, Portuguese, Mandarin, and more!

Download the Wish app today to go on a treasure hunt from your pocket!

CONTACT
Keep up with @wish on Facebook, Twitter, and Instagram.
For assistance, visit www.wish.com/help\",\n \"scoreText\": \"4.7\",\n \"score\": 4.655076,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.contextlogic.wish\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.contextlogic.wish/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.contextlogic.wish/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.contextlogic.wish/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.contextlogic.wish/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Target\",\n \"appId\": \"com.target.ui\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.target.ui\",\n \"icon\": \"https://play-lh.googleusercontent.com/2CGELmJiSElPwjREp7RvpDDzbnq9bGMGhvOBHkqcHrVPdGjJesHHuzKtC6LkCq-F0Fw\",\n \"developer\": {\n \"devId\": \"Target Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Target%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Now the Target app can help you have a more rewarding Target run! Introducing Target Circle, which gives you access to hundreds of deals, a birthday gift and the chance to support your community.

Plan your next Target run by checking out Target Circle offers, the Weekly Ad and item availability all in one place. Then streamline your run with store maps and aisle locations, and scan item barcodes for prices, reviews and available deals.

Wallet is the fastest, easiest way to pay and save in store. With one scan, you can pay with your credit or debit RedCard and redeem Target Circle offers, gift cards and Target Circle earnings.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.181886,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.target.ui\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.target.ui/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.target.ui/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.target.ui/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.target.ui/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Lens\",\n \"appId\": \"com.google.ar.lens\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.ar.lens\",\n \"icon\": \"https://play-lh.googleusercontent.com/G5oF0mhpOcQzFTrU6TDUL0JoAjzRt38weiZKua7L61WVT1z3dPcE9gUu-W2EwtM9cZU\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Google Lens lets you search what you see, get things done faster, and understand the world around you—using just your camera or a photo.

SCAN & TRANSLATE TEXT
Translate words you see, save a business card to your contacts, add events to your calendar from a poster, and copy and paste complicated codes or long paragraphs into your phone to save time.

IDENTIFY PLANTS & ANIMALS
Find out what that plant is in your friend's apartment, or what kind of dog you saw in the park.

EXPLORE PLACES AROUND YOU
Identify and learn about landmarks, restaurants, and storefronts. See ratings, hours of operation, historical facts, and more.

FIND THE LOOK YOU LIKE
See an outfit that catches your eye? Or a chair that's perfect for your living room? Find similar clothes, furniture, and home decor to the one you like.

KNOW WHAT TO ORDER
See popular dishes on a restaurant menu based on reviews from Google Maps.

SCAN CODES
Quickly scan QR codes and barcodes.

*Limited availability and not available in all languages or regions. For further details go to g.co/help/lens. Some Lens features require an internet connection.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.583901,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.ar.lens\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.ar.lens/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.ar.lens/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.ar.lens/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.ar.lens/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Notepad – Notes and Checklists\",\n \"appId\": \"com.ztnstudio.notepad\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.ztnstudio.notepad\",\n \"icon\": \"https://play-lh.googleusercontent.com/2eEQHQK5ebDC4T-mpipRlL86n_n3gvoBtoFUVF7TTououbFEg29Y7UTDY_uqSvo-yg\",\n \"developer\": {\n \"devId\": \"Sappalodapps Development\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Sappalodapps%20Development\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Notepad is an easy-to-use free notebook app for Android, optimized for after-call note-taking. This clear and simple note taking app allows you to make quick notes, memos, and checklists to help organize your life with great ease.

NOTEPAD KEY FEATURES

Clearly presented notes which can be sorted by date or title. Quickly and easily edit, save and delete notes in the notebook at any time.
Easy checklist function where completed items in your notepad such as tasks, to do lists or shopping lists can be marked as ‘done’.
Useful search function for those difficult-to-find notes in your notepad to save time.
Sort your notes in your notepad by date or title.
Backup & restore notes so that you don’t lose any important information. You can backup your notebook directly to your phone or to Google Drive.
Location Reminders will alert you of important notes when you arrive at a specific place. You choose the location and add it to your note.
Quickly share notes from your notepad with others via email, SMS or various social media platforms including Facebook, Twitter, Instagram, WhatsApp, Messenger, Skype and LinkedIn.
Create notes quickly following phone calls with a handy quick link to Notepad after every call made or received.
Identify unknown callers with the advanced caller ID feature and see detailed call information - useful when making notes after phone calls!
Call information screen includes a text editor to write a note or checklist directly into your notebook on the same screen, using the call info for reference.

For your privacy and data protection we do not have access to any of your notes or store any of the information contained within them. Therefore, we recommend that you regularly use the useful backup feature on this notepad app to avoid the accidental loss of any important information.

Install Notepad today and organize your life with this easy-to-use notepad application and enjoy a hassle-free time. Never be stuck without a pen and paper again!\",\n \"scoreText\": \"4.7\",\n \"score\": 4.715295,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ztnstudio.notepad\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.ztnstudio.notepad/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.ztnstudio.notepad/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.ztnstudio.notepad/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.ztnstudio.notepad/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"CC Cleaner\",\n \"appId\": \"com.cherrycoop.canary.cccleaner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.canary.cccleaner\",\n \"icon\": \"https://play-lh.googleusercontent.com/4hvqJj6CfMN8eVxCG2VYp3g07XSeUfDNxcPGrS4FQprfSxdbp0tqZoVdmD_Q4r0rNys\",\n \"developer\": {\n \"devId\": \"Ruosi Studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Ruosi%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"A powerful Cleaner app that has simple and sleek interface with full features. Phone cleaner can optimize the phone with the help of Junk Cleaner, Phone Booster, battery saver, WiFi Test, Intelligent Classification and Other Functions. You can handle all your Android phone optimization by this super clean app. Install this Android cleaner to master clean of your Android phone as a new one!

Do you want a CC Cleaner to release phone space?

Key Features

🔥 Junk Cleaner
Use our professional cleaning function to clear cache data to free up more space, and no longer have to worry about accidentally deleting files.

🚀 Phone Booster
Speed Up Phone and Enhance Performance.

🔋 Battery Saver
Just one tap, analyze battery usage and stop battery-draining apps to prolong battery performance.

📶 WiFi Test
Help you analyze the state of WiFi networks and track its parameters. Also can be used as a scanner helping to discover devices connected to WLAN.

📂 Intelligent Classification
Your files are automatically sorted by their types and characteristics so that you can easily find what you are looking for.

🌟 Other Functions
·Photos:Manage images in storage, including support for image previews.
·Videos:Manage files in all music and sound formats.
·Audios:Manage all system of Audio files.
·Zips:Manage Zips with one tap.
·Docs:Manage all documents stored on your phone.
·Downloads:Manage downloaded materials that in the Downloads folder.

💡If you are looking for a cleaner app that has simple and sleek interface with full features, CC Cleaner would be the best choice.

More cool features are coming, please stay tuned!

☎️If you have any issue, feedback, suggestion, or just want to say hi, please contact us with liruoxin68991@gmail.com so we can continue to bring you the best experiences and updates.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.65,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cherrycoop.canary.cccleaner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.canary.cccleaner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.canary.cccleaner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.canary.cccleaner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.canary.cccleaner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Wave Live Wallpapers Maker 3D\",\n \"appId\": \"com.wave.livewallpaper\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.wave.livewallpaper\",\n \"icon\": \"https://play-lh.googleusercontent.com/06O4w5Wu9jF3J8yrdGy3ygw4ts38Mv27u-5WKs8ChlZLCs01DaPLvgEOhIMEB7JmzxY\",\n \"developer\": {\n \"devId\": \"Live Wallpapers by Wave Studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Live%20Wallpapers%20by%20Wave%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Join over 10 million people already enjoying this personalization app! Jump in to experience stunning, cool wallpapers and be part of the community.😊
🌈You are different! Why wouldn’t your device be?
Wave Live Wallpapers HD & 3D Wallpaper Maker unfolds an exciting collection of live wallpapers that will help you personalize your smartphone’s look. We think it’s pretty cool to use products that reflect your personality, like a custom 3D wallpaper.
Pick your fav’ 3D wallpaper, and watch it boost your mood! Whether it’s a wolf wallpaper, a tech wallpaper, a funny animated character… you name it. We have it!
You can download cool wallpapers from our pocket art of premium designs for free. Or use the live wallpaper maker to create your own. Our library includes a wide range of moving wallpapers and photos to delight a diversity of tastes through themes like:
✅Nature Wallpapers
✅Animals Wallpapers
✅Art Wallpapers
✅Satisfying Wallpapers
✅Love Wallpapers
✅Cyberpunk Wallpapers
✅Tech Wallpapers
✅Fantasy Wallpapers
✅Animated Wallpapers
😉and much more in-app
We have loads of free wallpapers for any aesthetic addict looking to give a fun twist to their smartphone background. Our free library is always updated with new cool wallpapers to customize your awesome phone look as often as you like. And your creativity can go crazy with our live wallpaper maker!
🌟Moving wallpapers with different effects
We create different visual concepts as the basis for our cool wallpapers:
- Parallax 2D: changes the viewpoint to your display, so you can see your wallpaper move on a 2 layers depth
- Parallax 3D: creates a 3D wallpaper around the main element when moving your phone, with up to 4 graphic layers for a background
- Live 3D interactive: live wallpapers that react when you touch them
- Video wallpaper: moving wallpapers based on amazing video footage and special 3D effects
All free wallpapers meet our high-quality and high-definition (HD, Full HD, 4K) demands. Each wallpaper will perfectly fit the phone resolution.
👣How to use the Wave Live Wallpapers HD app:
- Open our cool wallpapers app
- Select an animated background / Use the search bar
- Unlock wallpapers (with GEMS you get for free by watching ads or by buying them in our shop)
- Optional: add overlay or touch effects to style the moving wallpapers
- Apply the live wallpaper HD
- Use My Studio live wallpaper maker to create your designs
- Find all your cool wallpapers in My Studio 👉My Wallpapers
- Creating an account is optional, but it offers the best experience with Wave Live Wallpapers HD & 3D Wallpaper Maker app (your backgrounds are saved if you change your phone or uninstall the app)
🎭Custom home screen and lock screen
Pick a 3D wallpaper or a video background to customize the home screen and lock screen, or just the home screen. Some manufacturers won't allow you to customize the lock screen with a live wallpaper. Please check your device compatibility.
🎨Live wallpaper maker in My Studio
How amazing is it to make your own 3D wallpaper yourself? Maybe you create cute moving wallpapers for your peeps. Or discover you have a talent for this and become a top artist:
- Use the live wallpaper maker to create your own animated wallpapers: image, parallax, 3D photo, boomerang, video, slideshow.
- Share your wallpapers with our community and get likes or keep them private.
✌️Battery optimized
Wave Live Wallpapers app is optimized for battery life. Video rendering is paused while an app is running or the screen is closed.
👍Remove ads
We aim to delight our community with amazing live wallpapers daily. Our free wallpaper app is for everyone. If you’d like to enjoy a Premium ad-free experience and support us, pick any of the gem packs in our shop.
🖐Support
We always seek to improve our wallpapers app, so any thoughts are welcome via the feedback form.
Through our app, we empower you to make your phone as wavesome as you 😎.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3615856,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.wave.livewallpaper\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.wave.livewallpaper/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.wave.livewallpaper/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.wave.livewallpaper/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.wave.livewallpaper/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Shazam: Music Discovery\",\n \"appId\": \"com.shazam.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.shazam.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/mwTU9-4NX-_QlATb6lILSinKI47wAtOM38GjPYRPQSsQOG2hVRY4h9OfEhDxpf8ADQ\",\n \"developer\": {\n \"devId\": \"Apple Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Apple%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Shazam will identify any song in seconds. Discover, artists, lyrics, videos & playlists, all for free. Over 1 billion installs and counting.

“Shazam is an app that feels like magic” - Techradar.com (http://techradar.com/)

“Shazam is a gift... a game changer” - Pharrell Williams, GQ interview 

Think you can Beat Shazam? To find out, play along with the Shazam App while you watch the show!

WHY YOU’LL LOVE IT

* Find the name of any song in seconds.
* Listen and add to Apple Music playlists.
* Follow along with time-synced lyrics.
* Watch music videos from Apple Music or YouTube.
* Enable Dark theme on Shazam.
* Get Shazam for Wear OS.


SHAZAM ANYWHERE, AT ANYTIME

* Use Pop-up Shazam to identify music in any app - Instagram, YouTube, TikTok...
* No connection? No problem! Shazam while offline.
* Turn on Auto Shazam to keep finding songs even when you leave the app.


WHAT ELSE?

* Find out what is popular in your country or city with Shazam charts.
* Get recommended songs and playlists to discover new music.
* Open any song directly in Spotify, Apple Music or YouTube Music.
* Share songs with friends through Snapchat, Facebook, WhatsApp, Instagram, Twitter and more.

THOUSANDS OF 5-STAR REVIEWS!

Availability and features may vary by country.
For more information on Shazam’s privacy practices, please read the Privacy Policy, available at https://www.apple.com/legal/privacy/.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.8132367,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.shazam.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.shazam.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.shazam.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.shazam.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.shazam.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Speed Master VPN\",\n \"appId\": \"com.nadev.gisaapp.grespeed\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.nadev.gisaapp.grespeed\",\n \"icon\": \"https://play-lh.googleusercontent.com/BX83_Raln4wJndZ_5yaOxTUs_DSuzXKFoV9Te6nLK01TeCvHjfZyIO_pxUg2uNoIqvc\",\n \"developer\": {\n \"devId\": \"MTHstudio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/MTHstudio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Why use Speed Master VPN

✔ Unlimited connection speed
✔ Unlimited bandwidth consumption
✔ Easy to connect (just one click)
✔ 100% free, no trial, account creation or login required
✔ We do not log your data
✔ Your data is encrypted with the secure Open VPN protocol
✔ You can bypass all blocked websites and apps

Stable service, reliable servers provide the highest quality.

Security and Privacy
By encrypting your own data and IP address, you can enhance your security and protect your privacy.
Whether you are using a private home network or a network in a public place like a coffee shop, airport, etc.,

Come and experience Speed Master VPN!\",\n \"scoreText\": \"4.6\",\n \"score\": 4.572727,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.nadev.gisaapp.grespeed\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.nadev.gisaapp.grespeed/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.nadev.gisaapp.grespeed/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.nadev.gisaapp.grespeed/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.nadev.gisaapp.grespeed/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Nextdoor: Neighborhood network\",\n \"appId\": \"com.nextdoor\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.nextdoor\",\n \"icon\": \"https://play-lh.googleusercontent.com/RamdLkcf8OZ7y2DEpajvoLntyHr0v8hTippsn134VnwZ0IaxEA_drA9dOzof3e9_od8\",\n \"developer\": {\n \"devId\": \"Nextdoor.com\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Nextdoor.com\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Nextdoor is used by nearly 1 in 3 households in the U.S. and is in more than 290,000 neighborhoods worldwide.

Meet neighbors with shared interests, discover new places nearby, and get recommendations for local businesses. Buy, sell, and trade used items on For Sale & Free, your local marketplace on Nextdoor. Join groups with friends and get the most from your neighborhood.

Discuss local events and upcoming changes in the neighborhood with your neighbors. Follow local news with Nextdoor and stay informed about what’s going on in your community. Home services, such as childcare and house sitting, can be accessed through the app with ease. Support your community, organize a local meet with parents, and bond over shared interests.

Offer local services, share recommendations, or welcome the new kids on the block. Discover local gems and explore your neighborhood with Nextdoor, regardless of how long you’ve lived there.

From group events to block parties, enjoy the local offerings in your community. Meet and connect with your neighbors on Nextdoor.

WHAT MAKES NEXTDOOR THE APP FOR NEIGHBORHOODS

Stay Connected with your Community

• Local news and events—read up on all the neighborhood happenings
• Connect easily with your neighbors, local businesses, and public agencies
• Free stuff and great offers await—make use of items your neighbors no longer need
• Yard sales, group events, or local potlucks—explore your community
• Meet your neighbors so you can finally call that kind man down the street by name

See What's Happening Nearby

• Find local events like cookouts, arts festivals, and community activities
• Used furniture, clothes, and cars—buy, sell, and trade goods
• Nearby garage sales and clothing swaps let you find affordable gems
• Nextdoor’s local marketplace makes it easy to help a neighbor in need
• Get recommendations for restaurants and shops near you

Find Home Services & Deals

• Home cleaning, house sitting and more—discover dependable services nearby
• Hire a handyman or plumber easily and fill your home repair needs
• Find a babysitter or recommend a trusted nanny to your neighbor
• Dog walker or dog sitter—locate the best care for your furry friend
• Support local business and enjoy the perks of a tight-knit community
• Access local sales and find deals and discounts in your area

Download Nextdoor and connect with communities you love.

HEAR WHAT NEIGHBORS HAVE TO SAY ABOUT NEXTDOOR

“Before Nextdoor, I didn’t know there were several qualified babysitters living nearby and looking for work. It was easy to feel comfortable hiring my neighbor’s daughter to watch my son after school.” - Patrick, Mission East

“This year for Spring Cleaning, we wanted to sell old appliances, tools, clothing and electronics on Nextdoor For Sale & Free. In no time, our neighbors stopped by to make a deal and take things off our hands. It was easier than anything else, and it feels good knowing our old stuff has found a new home in the neighborhood.” - Dan, Hayes Valley

OUR PURPOSE

At Nextdoor, our purpose is to cultivate a kinder world where everyone has a neighborhood they can rely on.

YOUR PRIVACY

Nextdoor is built on trust — we ensure you’re connected to real people in the neighborhoods that matter to you. Nextdoor requires all neighbors to sign up with their real name and address. We then partner with trusted vendors to confirm you’re a verified neighbor.

Connect with us:

https://www.facebook.com/nextdoor
https://twitter.com/nextdoor
https://instagram.com/nextdoor

Continued use of Location Services running in the background can dramatically decrease battery life. Nextdoor doesn't run Location Services in the background unless you give us permission by turning on optional features that require it.

Terms: nextdoor.com/member_agreement

Privacy: nextdoor.com/privacy_policy

California "”Do Not Sell My Information"" Notice: www.nextdoor.com/do_not_sell\",\n \"scoreText\": \"4.5\",\n \"score\": 4.504569,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.nextdoor\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.nextdoor/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.nextdoor/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.nextdoor/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.nextdoor/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ZEPETO: 3D avatar, chat & meet\",\n \"appId\": \"me.zepeto.main\",\n \"url\": \"http://gplayapi.srik.me/api/apps/me.zepeto.main\",\n \"icon\": \"https://play-lh.googleusercontent.com/tIeI_EWZFBCoHmV50hngRaWOqKfoERUNlROYjDuiDpc7yv_S-6_CpyNWIbN6C-aBAVtq\",\n \"developer\": {\n \"devId\": \"Naver Z Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Naver%20Z%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"In a space without limits,
another me in another universe — ZEPETO.

Create who you want to be, and meet friends across the world!
Go on exciting adventures and bring your ideas to life.

Welcome to the world of ZEPETO.


Meet friends in a new space!

From sharing feed posts to sending direct messages —
capture memories with friends all over the world!


Dive into worlds of adventure!

Make friends, take photos, and complete missions —
choose from more than a thousand Worlds to explore!


Create a 3D you!

Try on trendy new collections or items from coveted brands —
with more than a million items, there's not a style you can't find!


Design your own items and worlds!

Create your dream spaces and virtual items, and start earning —
let your ideas inspire and take off into trends worldwide.


Exclusive monthly benefits with ZEPETO Premium!

From member-exclusive items to faster turnaround time for Studio submissions —
take advantage of the perks only available to subscription members.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2769523,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=me.zepeto.main\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/me.zepeto.main/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/me.zepeto.main/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/me.zepeto.main/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/me.zepeto.main/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Dave - Banking & Cash Advance\",\n \"appId\": \"com.dave\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.dave\",\n \"icon\": \"https://play-lh.googleusercontent.com/JoEAVdMiFLryI1yklRChgTPVh_EKP8TnmWjRGCSqHxrUBs5lnbKjt7iXerU81yRVGrA\",\n \"developer\": {\n \"devId\": \"Dave, Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Dave%2C%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get up to $500 instantly (1) with ExtraCash™ from Dave. There’s no interest, credit check, or late fees. With a Dave Spending account, you can also get your paychecks up to two days earlier (2).

Earn cash back with Dave Rewards (3), save money with Dave Goals, and ​​if you want to make more money, Dave can help there too! With Side Hustle, you can easily find and apply for side jobs and get that cash.

Join millions of people building a better financial future with Dave!

ADVANCE UP TO $500 INSTANTLY (1)
Dave’s ExtraCash™ can now get you more funds than ever—up to $500! (1) That’s more money to fill your tank, tackle your to-do list, or take advantage of a now-or-never opportunity.

For more information, please visit dave.com/extra-cash-account

SPEND IT INSTANTLY (1)
The money is yours to spend right away with your Dave Debit Mastercard®. Unlike other apps, there’s no waiting period or lengthy application process—which means no more missing out because of a low balance.

ENJOY EARLY PAYDAYS (2)
Get paid up to two days early when you set up direct deposit into a Dave Spending account!

EARN CASH BACK WITH DAVE REWARDS (3)
Use the Dave Debit Mastercard®—now loaded with cashback offers from major retailers.

SAVE WITH GOALS
Put cash toward anything you’re saving for—a trip, emergency fund, student loans, and more.

FIND A SIDE HUSTLE
If you want to earn more money, Dave can help! Apply for side jobs that fit your lifestyle.

Membership is $1 per month to access our account monitoring, notification services, budgeting and to maintain a connection to your external bank account.

(1) The ExtraCash™ account is a part of Dave’s pilot program and is open to new members only subject to availability. ExtraCash™ is a DDA account with overdraft utility that is subject to eligibility requirements. Taking an ExtraCash™ advance will make your account balance negative. Express delivery fees apply to instant transfers. See dave.com/extra-cash for details.

(2) Early Payday: Early access to direct deposit funds depends on the timing and availability of the payroll files sent from your employer. These funds can be made available up to 2 days in advance.

(3) Rewards are not offered by Evolve Bank & Trust, but instead are offered and managed by Dave, Inc in partnership with Figg.

No minimum repayment term.
Repayment between 3 days and 3 weeks or upon your payday.
Zero APR, no APR, no interest rate, zero interest.
Example Scenario: If you instantly transfer a $200 ExtraCash™ advance to your Dave Spending Account for a $5.99 express delivery fee and add an optional $10 tip, then your total will be $215.99.
dave.com/privacy\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4373426,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dave\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.dave/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.dave/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.dave/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.dave/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"QRScanner - Super QR Code Tool\",\n \"appId\": \"app.android.qrscanner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/app.android.qrscanner\",\n \"icon\": \"https://play-lh.googleusercontent.com/fKJHNA_O0WugnmSIVPApvuE1qi-6CRAVUcpk_Nm2a5D-3CUKU5HKXMaNGEx93_apLw\",\n \"developer\": {\n \"devId\": \"VPM Master\",\n \"url\": \"http://gplayapi.srik.me/api/developers/VPM%20Master\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"An extremely fast QR code scanning APP for Android devices that also supports scanning and creating QR codes and barcodes in various formats.


🆓 You can create various QR codes and barcodes, uch as contacts, products, URL, Wi-Fi, text, E-mail and so on. All are free .


🔏 We guarantee that all scanned information and generated data will be encrypted and stored in the private storage area of ​​the Android device to ensure data security;


At the same time, APP also provides a "privacy mode", and the scanned records will not be saved, which further ensures the security of private data records.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.254902,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=app.android.qrscanner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/app.android.qrscanner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/app.android.qrscanner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/app.android.qrscanner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/app.android.qrscanner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Sheets\",\n \"appId\": \"com.google.android.apps.docs.editors.sheets\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.sheets\",\n \"icon\": \"https://play-lh.googleusercontent.com/keE2gN0Hqh8-Tsf_RYZ_-yS2uo6ToqYVyRBv_UZaLXsgeeHBd2YPcEUWEF4DEtfGyb1h\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Create, edit, and collaborate on spreadsheets from your Android phone or tablet with the Google Sheets app. With Sheets, you can:

- Create new spreadsheets or edit existing files
- Share spreadsheets and collaborate in the same spreadsheet at the same time.
- Work anywhere, anytime - even offline
- Add and respond to comments
- Format cells, enter or sort data, view charts, insert formulas, use find/replace, and more
- Never worry about losing your work – everything is saved automatically as you type
- Quickly get insights, insert charts, and apply formatting with smart suggestions
- Open, edit, and save Excel files.

Google Sheets is part of Google Workspace: where teams of any size can chat, create, and collaborate.

Google Workspace subscribers have access to additional Google Sheets features, including:
- Easily add collaborators to projects, see changes as they occur, receive notifications for edits that happen while you’re away, and chat with colleagues in the same spreadsheet. All changes are automatically saved as you make them. And with offline access, you can create, view, and edit files wherever and whenever
- Get insights fast, powered by Google AI
- Work seamlessly across Sheets and Excel
- Maintain control with enterprise-grade security
- Analyze data from other business-critical tools
- Build custom solutions

Learn more about Google Workspace: https://workspace.google.com/products/sheets/

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/

Permissions Notice
Contacts: This is used to give suggestions of people to add to files and share with.
Storage: This is used to save and open files on USB or SD storage.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.086846,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.docs.editors.sheets\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.sheets/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.sheets/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.sheets/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.sheets/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Yahoo Fantasy Sports & Daily\",\n \"appId\": \"com.yahoo.mobile.client.android.fantasyfootball\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.yahoo.mobile.client.android.fantasyfootball\",\n \"icon\": \"https://play-lh.googleusercontent.com/0-dg0f0s8zg3L0ML4hnvJCCjwL5C6SxVJX6a1dSgQXbXuMDs-6kQrgAixvyH67j9teo\",\n \"developer\": {\n \"devId\": \"Yahoo\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Yahoo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Yahoo Fantasy Sports is the #1 rated fantasy sports app to play Fantasy Football, Fantasy Baseball, Fantasy Basketball, Fantasy Hockey, Daily Fantasy, Tourney Pick’em, Best Ball & more.

Voted the Best Fantasy Sports App, Best Season Long Fantasy Sports Game, & the Best Daily Fantasy Sports Game by the Fantasy Sports & Gaming Association, Yahoo Fantasy Sports has you covered every day, year-round.

The Yahoo Fantasy Sports App is your one place stop to play, draft, & manage all of your favorite players from the NFL, NBA, MLB, NHL & PGA. Draft fantasy football teams, manage fantasy basketball rosters, set fantasy baseball & hockey lineups, & join pick'em games: we have it all right here on the Yahoo Fantasy Sports App

Easily switch between fantasy games & focus on what matters: drafting your team, setting your lineup, & winning your fantasy contests! Get live scores, player news, & fantasy analysis whenever & wherever you want.

Sign up now to play Fantasy Football, Fantasy Baseball, Fantasy Basketball, Fantasy Hockey, Daily Fantasy, Best Ball & more! 3 reasons you’ll love Yahoo Fantasy Sports:

1. Fantasy sports right at your fingertips - Manage your fantasy teams, leagues, & commissioner settings right from the app
2. Get live updates that work for you - Set alerts for your favorite sports & get instant updates on fantasy scoring updates & player news
3. You’re always in the loop - Live updates, stats, & fantasy analysis mean that you will be on top of your fantasy games, daily fantasy & best ball contests no matter where you are

Simply sign in with your Yahoo account to get the best experience across all devices. Whether you want to play Fantasy Football or Daily Fantasy - check out everything Yahoo Fantasy Sports has to offer:

• Fantasy Home
Access all the different season-long & daily fantasy sports & games from the fantasy home page. Sign up for your choice in fantasy sport & easily view the latest updates in your fantasy leagues & games.

• Manage
Set & manage your roster, pick up & drop players, & make trades right in the app. Visit our players' tab to see the latest in transaction trends & the top available players in your league.

• Draft
Mock draft & draft right from your phone. Whether it's your Fantasy Football, Fantasy Hockey, or Fantasy Basketball league, you never need to miss a draft again as you can draft your whole team from the app. With Draft Together, you can talk to your friends with built in video chat

• Alerts
Be at the top of your game with instant scoring updates & player news. Set alerts for & get live updates & fantasy analysis on every scoring play, roster changes, player injuries, & much more.

• Play Daily Fantasy Sports
Not interested in playing season-long fantasy? Check out Yahoo Daily Fantasy Sports & draft a new roster every day for a chance to win money. Check out the Quickmatch function to get started or join a Yahoo Cup to test your knowledge.

• Expert Analysis
Edge out the competition with our Yahoo Fantasy experts, now accessible in the app. Read rankings, recommendations, fantasy analysis & reactions from our experts on the latest news to help you make your next fantasy decision.

• Fantasy Messenger
Smack talk your league-mates, friends, & competition in the fantasy messenger available in the Yahoo Fantasy App. Send them gifs, images, & emojis & let the trash talking begin.

Please note: This app features Nielsen’s proprietary measurement software which contributes to market research, like Nielsen’s TV Ratings. Please see http://priv-policy.imrworldwide.com/priv/mobile/us/en/optout.html for more information. Please send feedback to fantasy-mobile-ios-feedback@oath.com

Yahoo Fantasy is committed to providing you with the support you need to play Paid Fantasy responsibly. We offer a range of features and options to help you manage your Paid Fantasy activities. For more information on Responsible Gaming visit https://help.yahoo.com/kb/daily-fantasy/SLN27857.html\",\n \"scoreText\": \"4.3\",\n \"score\": 4.321707,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.yahoo.mobile.client.android.fantasyfootball\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.yahoo.mobile.client.android.fantasyfootball/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.yahoo.mobile.client.android.fantasyfootball/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.yahoo.mobile.client.android.fantasyfootball/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.yahoo.mobile.client.android.fantasyfootball/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"CC FileManager\",\n \"appId\": \"com.cherrycoop.and.ccfilemanager\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.and.ccfilemanager\",\n \"icon\": \"https://play-lh.googleusercontent.com/5IzUyCIq-g8HshA97HAFLUygTL7Mya1I133mZwYO9COmEhB6orObtlsZHNeSJNpdpU0g\",\n \"developer\": {\n \"devId\": \"Ruosi Studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Ruosi%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"🔥🔥🔥CC FileManager can manage your files and boost your Android phone effectively. It could improve not only phone storage space but also phone performance. We regularly update our app to give you the best experience, and you can easily manage your Android phones and files.

🕵️🕵️🕵️Let’s see how CC FileManager helps you manage your files!

✔️ File Explorer
All files are no longer hidden in the mobile system. CC FileManager will help you find files, categorize files and operate files easily. It also supports tons of cool features: move, delete, open, and share files, as well as rename and copy-paste.

✔️ Categorize files
Easily explore all your images, tools, videos, music, apps, and recent folders. All media will be automatically classified.

✔️ Storage Cleaner
You can always know the storage of your phone. It has fast access to all of your files on internal memory space and helps to manage your folders effectively with this android file organizer!

✔️ Junk Cleaner
Free up your storage space by removing junk, residual and cache files which slows down your phone.

✔️ Phone Booster
Kill background apps to release memory, and speed up your android phone, boosting the phone effectively.

✔️ Battery Saver
Analyze battery usage and monitor all apps that draining power while not in use. Hibernate the apps to stop battery draining and promote battery life.

✔️ WiFi Test
Help you analyze the state of WiFi networks and track its parameters. Also can be used as a scanner helping to discover devices connected to WLAN.

👍👍👍If you have any questions, feedback, suggestions, please feel free to contact us at liruoxin68991@gmail.com, so we can continue to bring you the best experience and updates.

😘😘😘 If you like CC FileManager, please rate us five stars!

❤️❤️❤️Email: liruoxin68991@gmail.com\",\n \"scoreText\": \"4.4\",\n \"score\": 4.438889,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cherrycoop.and.ccfilemanager\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.and.ccfilemanager/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.and.ccfilemanager/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.and.ccfilemanager/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.and.ccfilemanager/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Wuhoo Proxy\",\n \"appId\": \"com.gnostic.proxy.wuhoo\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.gnostic.proxy.wuhoo\",\n \"icon\": \"https://play-lh.googleusercontent.com/vk732pnGtTaKmTjxYDpTXyNg53nlM2bpLWNsvUdOAM_o4O7idE22VZXNwmpF7v-8QA\",\n \"developer\": {\n \"devId\": \"wuhoo\",\n \"url\": \"http://gplayapi.srik.me/api/developers/wuhoo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Wuhoo Proxy is a free and unlimited net proxy, offering you a fast net connection and stable net servers. You can access your favorites sites, improve your gaming experience and stay anonymous online. Download Wuhoo Proxy now to enjoy fast, private and safe internet.

Install Wuhoo Proxy now:
✔ Unlimited and free net
✔Access websites with secure fast net
✔ Anonymous connection\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7706423,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.gnostic.proxy.wuhoo\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.gnostic.proxy.wuhoo/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.gnostic.proxy.wuhoo/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.gnostic.proxy.wuhoo/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.gnostic.proxy.wuhoo/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Xbox\",\n \"appId\": \"com.microsoft.xboxone.smartglass\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.microsoft.xboxone.smartglass\",\n \"icon\": \"https://play-lh.googleusercontent.com/hihXCV-0wxOXB5N7uBREaJeCVK0BDjNEBtKwNAncftZMflpEvasiKXn7vCKxu9qGpvk\",\n \"developer\": {\n \"devId\": \"Microsoft Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Microsoft%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Easily share game clips and screenshots from your console to favorite gaming & social networks. Friends and parties follow you with voice and text chat, even if they’re on console or PC. Get notifications for new game invites, messages, and more. Plus, now play games from your console straight to your phone over the internet. The free Xbox app is the best way to stay in the game—wherever you like to play.

-Download the new Xbox app and stay connected to friends & games
-Easily share game clips & screenshots to your favorite social networks
-Use integrated voice and text chat with friends on console or PC
-Play games from your console straight to your phone over the internet*
-Get notifications for new game invites, party chat messages and more

*Requires supported phones or tablets (mobile data charges may apply) and supported Bluetooth controller, with supported games. Xbox One or Xbox Series X must be turned on or in Instant-On mode. Learn more at xbox.com/mobile-app. Online console multiplayer (including via Xbox remote play) requires Xbox Game Pass Ultimate or Xbox Live Gold, memberships sold separately.


XBOX APP AGREEMENT

The following terms supplement any software license terms that accompany the Xbox App.

Please refer to Microsoft’s EULA for Terms of Service for Microsoft’s gaming applications on Android. By installing the app, you agree to these terms and conditions: https://support.xbox.com/help/subscriptions-billing/manage-subscriptions/microsoft-software-license-terms-mobile-gaming

FEEDBACK. If you give feedback about the Xbox App to Microsoft, you give to Microsoft, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You also give to third parties, without charge, any patent rights needed for their products, technologies and services to use or interface with any specific parts of a Microsoft software or service that includes the feedback. You will not give feedback that is subject to a license that requires Microsoft to license its software or documentation to third parties because we include your feedback in them. These rights survive this agreement.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4452324,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.microsoft.xboxone.smartglass\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.microsoft.xboxone.smartglass/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.microsoft.xboxone.smartglass/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.microsoft.xboxone.smartglass/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.microsoft.xboxone.smartglass/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"KeepClean: Cleaner, Antivirus\",\n \"appId\": \"com.appsinnova.android.keepclean\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.appsinnova.android.keepclean\",\n \"icon\": \"https://play-lh.googleusercontent.com/TA3KhqH1-UrW2q0ZqzsL_y3Q3kdpCeweKEOw0szzNgXrZfLAnFM5sBOWYRP26thitw\",\n \"developer\": {\n \"devId\": \"APPS INNOVA\",\n \"url\": \"http://gplayapi.srik.me/api/developers/APPS%20INNOVA\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"KeepClean is all-in-one Android device optimization and antivirus application that integrates the functions of Phone Cleaner, RAM Optimizer, Antivirus, Battery Saver, and more for optimum performance and security.

Over 100,000,000 people have installed KeepClean to optimize and protect their Android devices. Join now to access the following features for free.

🆑Junk Cleanup: Perform accurate analysis of apps’ cache and junk files. Clean up apps’ and system’s junk files with one tap to free up storage.

🚀Phone Speedup: Speed up your phone’s performance by thoroughly freeing up the phone’s RAM.

🔋Battery Saver: Detect and disable redundant power-consuming apps to extend standby duration by up to 70%. Also supports various power-saving modes.

🛡Antivirus Security: Provide professional service to scan and remove all kinds of viruses and trojans to protect your phone which is powered by Kaspersky.

🌡️Monitor Phone Temperature:
Monitor device temperature and set an alarm when the temperature is exceeded. KeepClean will keep your device temperature at a reasonable level to prolong the lifetime of your phone.

🎮Game Booster: Close unused background apps to free up RAM and boost your phone’s performance.

📸Similar Photo Cleanup: Scan & automatically clean up similar or duplicate photos to free up storage.

📶Wi-Fi Security: Scan for unauthorized WiFi connections to maximize your phone’s security.

KeepClean NOTES:
None of the personal data such as username or email address proceeds.
All information will be kept secure and not shared with the 3rd party according to Privacy and Cookies Policy.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7328305,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.appsinnova.android.keepclean\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.appsinnova.android.keepclean/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.appsinnova.android.keepclean/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.appsinnova.android.keepclean/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.appsinnova.android.keepclean/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Apple Music\",\n \"appId\": \"com.apple.android.music\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.apple.android.music\",\n \"icon\": \"https://play-lh.googleusercontent.com/mOkjjo5Rzcpk7BsHrsLWnqVadUK1FlLd2-UlQvYkLL4E9A0LpyODNIQinXPfUMjUrbE\",\n \"developer\": {\n \"devId\": \"Apple\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Apple\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Fill your world with the songs, albums, and artists that define you. Get unlimited access to millions of tracks, curated playlists and original content from the artists you know and love. Experience Lossless Audio, and hear sound all around you with Spatial Audio featuring Dolby Atmos.

Over 90 million songs, all ad-free.
Spatial Audio, featuring Dolby Atmos.
Follow along with time synced lyrics, and share the parts that move you in Messages.
Download your favorite music and listen offline.
Make and share playlists with friends.
Get personalized picks in Listen Now
Browse picks and playlists from Apple Music editors.
Stream your favorite music via Chromecast to your favorite device.
Search for songs by lyrics.
Go deep into the music with interviews, live performances and more that can only be found on Apple Music.
Explore dozens of exclusive shows, created by the most iconic names in music, live or on demand.
Follow friends to discover what others are listening to.

Availability and features vary by country, region or plan. Subscriptions automatically renew unless they are canceled at least 24 hours prior to the end of the current period. Your account will be charged for renewal within 24 hours prior to the end of the current period. You can manage or cancel your subscriptions in Settings after purchase. Apple Media Services Terms and Conditions can be found at https://www.apple.com/legal/internet-services/itunes/.\",\n \"scoreText\": \"4.0\",\n \"score\": 3.968458,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.apple.android.music\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.apple.android.music/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.apple.android.music/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.apple.android.music/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.apple.android.music/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Grubhub: Food Delivery\",\n \"appId\": \"com.grubhub.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.grubhub.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/2aSEyMxSUQVknFM5lkmbxv0LhJZvSkwotA-jtlqJSjplXl4_BszCW9_FzzqPBpEeoPE\",\n \"developer\": {\n \"devId\": \"Grubhub\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Grubhub\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Food delivery 🚚 right to your door. Choose from the largest selection of restaurants and amazing Perks with Grubhub. Find food and get fast food delivery from your favorite restaurants, from Applebee’s to Red Robin. From fast food to convenience store finds, Grubhub has what you need, instantly.

Want to order food for takeout🥡? We also offer curbside pickup. Order food from your favorite local spot, a restaurant with a little more fame, or a new place you want to try. Grubhub has the eats you’re looking for. Grubhub is dedicated to your safety. Order food with contact-free delivery to support your favorite restaurants while staying safe at home.

Find new local deals and restaurant specials. Perks from Grubhub helps you find delivery deals and exclusive rewards that you’ll love! 💎 Get food discounts, free items and more from your favorite restaurants with Perks.

Grubhub now gets you even better deals on food with Grubhub+! Order food and get exclusive Perks, unlimited free delivery from restaurants nearby and access to premium Grubhub features. Grubhub will even match your donations when you join Grubhub+! Join now for a 14-day free trial or get Grubhub+ for $9.99/month.

What Grubhub offers:

🍔FOOD DELIVERY MADE EASY🍔
- Grubhub offers the largest selection of restaurants in the nation
- Order food using the Grubhub app and avoid the hassle of over-the-phone mistakes
- Grubhub’s customer support is there for you 24/7
- Whether it’s Chinese food, Greek, Italian, or any other food type you’re craving, it’s covered.
- Food delivery from exclusive restaurant partners, so you’ll find that mom and pop shop AND the national spot you love.
- Contact-free food delivery
- Pay through a variety of options including credit cards, Grubhub gift cards and Venmo

🍫CONVENIENCE STORE FINDS🍫
- Fast delivery for anything you need
- Quick grocery needs or household items can be found nearby

🍻ALCOHOL DELIVERY🍻
- Alcohol delivery straight to your door
- Order from local convenience or liquor stores
- Choose your liquor or alcohol you need to make perfect cocktails

💎LOCAL DEALS AND SPECIALS💎
- Free delivery, exclusive Perks and more with Grubhub+
- Order food with exclusive deals
- NEW Perks help you find up to $100 in deals and specials!
- Earn cash rewards with Grubhub Points

🍜FOOD ORDERING OPTIONS🍜
- The Grubhub app provides lots of great features
- Order food now or preorder your next meal
- Takeout or delivery

🥐NO HIDDEN FEES🥐
- What you see is what you get: upfront pricing with no hidden fees

🥠RESTAURANT RATINGS AND REVIEWS🥠
- Grubhub has the most restaurant ratings & reviews, so you can count on getting the best food in your area

🍗FOOD DELIVERY WITH REAL-TIME TRACKING🍗
- Grubhub offers real-time order tracking so you know exactly when to dash to the door for your delicious meal

ORDER FOOD FROM THE LARGEST SELECTION OF RESTAURANTS
Each Grubhub city has different restaurants that you know and love, including:
- Applebee’s
- Auntie Anne’s 🥨
- BJ’s Restaurants
- Buffalo Wild Wings
- Burger King 🍔
- Del Taco 🌮
- Denny’s
- Dunkin’ 🍩
- Firehouse subs 🥪
- Five Guys
- IHOP 🥞
- Jack in the Box
- McDonalds (NYC only)
- Panda Express 🥡
- Panera 🍞
- Red Robin
- Shake Shack
- Sonic
- Taco Bell
- White Castle
- and many more!

Ready to start ordering with Grubhub?
• Download the app
• Sign in or set up your account (you can even use Facebook)
• Choose from your favorite restaurants or try something new
• Pick your perfect meal
• Enjoy a discount on your first order!\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5294805,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.grubhub.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.grubhub.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.grubhub.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.grubhub.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.grubhub.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Time Warp Scan - Face Scanner\",\n \"appId\": \"com.timewarp.scan.bluelinefiltertiktok.free\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.timewarp.scan.bluelinefiltertiktok.free\",\n \"icon\": \"https://play-lh.googleusercontent.com/-8v-2SZseaGSD5pdiYyosLGIULkToKTV2ijXgQm3Zk4_GHHA2lDQXlE_ABckilgMxbNM\",\n \"developer\": {\n \"devId\": \"Braly Co., Ltd\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Braly%20Co.%2C%20Ltd\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \" Take funny videos and pictures with the TikTok like the TIME WARP SCAN effect and share them with your friends. The Time Warp Scan filter tips is the most popular and viral challenge in internet and you can finally use it without limits and totally free with Time Warp Scan Filter- Face Scanner

Time Warp Scan – Face Warp Filter app can create unique faces, funny looks, and create interesting photos. The warp scan effect is one of the most popular and viral challenges on social media. With the feature of freezing the image when the "blue line" passes, Time warp scan will surely bring you laughs and fun and interesting experiences when using Time warp scan filter.
In particular, warp scan has a feature to help users adjust the “blue line” running vertically or horizontally. As such, nothing can limit your imagination. Create modern art photos with face warp's amazing filter/effect.

Time Warp Scan Photo Filter help you catch up with the trendy effect that is viral on social networking sites with Time warp scan. This is a filter for videos and images that is extremely popular with young people recently. Now you can use this trendy face warp filter for free with Time warp effect.

🌟 Features of Time Warp Scan – Face Warp Filter
✔️ Time warp scan photo filter
✔️ Time warp scan video filter
✔️ Support changing brightness
✔️ No watermark
✔️ Time warp scan effects
✔️ Slit scan effects
✔️ Give the body, objects a more special shape
✔️ Choose scan direction by swiping right or down
✔️ Blue line speed, Adjust the speed to best fit your needs.
✔️ Save pictures and videos
✔️ Time warp effect make the face transform into another shape by moving the face when time warp's scan bar slides over.
✔️ Change the shape of your head, lengthen your fingers, cut your hair short... the way you want thanks to slit-scan
✔️ Share your TIME WARP SCAN's with your friends via TikTok, Snapchat, Facebook, Facebook Messenger, WhatsApp, Instagram, Likee, and many other apps.

Using Time warp scan is extremely simple:
- First choose the direction of the scanner face warp you want: From left to right or from top to bottom
- When time warp's slider starts to move, move to create your own signature photo
- When slit-scan is done, save those photos to the photo gallery and share them with relatives and friends

Discover trending TikTok filter and create amazing photos and videos with the TIME WARP SCAN effect! Apply funny filters with amazing effects to your pictures and videos and amaze your friends. The funny filter can be applied in two easy steps, choose the scan direction and save your cool images and videos. Use unique face filters and face scanner features to amaze your friends. Face filters are cool and you found the easiest way to use the TikTok trending filter!

Use Time Warp Scan – Face Warp Filter funny filter and create cool content! Share your TIME WARP SCAN's with your friends via TikTok, Snapchat, Facebook, Facebook Messenger, WhatsApp, Instagram, Likee, and many other apps easily!
Thanks for you using Time Warp Scan - Face Scanner. Hope you have a good time with our app.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.458101,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.timewarp.scan.bluelinefiltertiktok.free\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.timewarp.scan.bluelinefiltertiktok.free/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.timewarp.scan.bluelinefiltertiktok.free/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.timewarp.scan.bluelinefiltertiktok.free/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.timewarp.scan.bluelinefiltertiktok.free/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Super Slime Simulator: DIY Art\",\n \"appId\": \"com.dramaton.slime\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.dramaton.slime\",\n \"icon\": \"https://play-lh.googleusercontent.com/nK_maIRULWYOfbhGhWV958_qPvh4wPwQ4WxuhppLo3lrx7RqgGt8tiXhrUO0cA1LdO4\",\n \"developer\": {\n \"devId\": \"Dramaton\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Dramaton\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Create super realistic DIY slime and play with it on your mobile device. Relax your mind and discover our unique 3D satisfying , anti-stress ASMR and DIY game experience. Stretch your slime, color it, squish it, knead it, pop it - just like you would with real slime or putty. Enjoy that oddly satisfying ASMR feeling right from your phone or tablet.
Express your creativity and improve your DIY styling skills through a unique art and design experience with endless creative possibilities. With a huge selection of slime types, decorations and colors to create with, this app is for slime beginners and pro slime experts, young and old, boys and girls, and all ASMR and DIY lovers.

APP FEATURES:
- Play with your simulated slime right on your phone or tablet.
- Relieve stress and discover our one of a kind relaxing, satisfying ASMR experience, including tens of different ASMR sounds and sensations.
- Be a slime DIY artist! Create your very own slime. Choose from a huge collection of materials, colors and add-ins: add glitter, jelly cubes, emojis, unicorns, kawaii figures, cute animals and tens of other amazing decorations.
- Rich slime gallery: Clear, milky, metallic, jiggly and many more.
- Each slime boasts a unique texture, sound and behavior, producing a unique ASMR satisfying sensation.
- Slime games fun area: Play Lu-lu's Slime Quest, Guess the Slime game and more oddly satisfying slime games.
- Share your creativity by sending slime gifts to your friends.
- Satisfying 3D ASMR Sounds: Turn up the volume and listen to your slime squishing as you touch it.

FOLLOW US on
Instagram @superslimesimulator
TikTok @superslimesimulatorapp\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2113485,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dramaton.slime\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.dramaton.slime/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.dramaton.slime/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.dramaton.slime/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.dramaton.slime/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Amazon Photos\",\n \"appId\": \"com.amazon.clouddrive.photos\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.amazon.clouddrive.photos\",\n \"icon\": \"https://play-lh.googleusercontent.com/_a9HTg8dzNCL7ZJoWesNTjvBtWTsrK2O-wEPLcIeEdHmp8RTAVW349z_l9G-vrNTPiE\",\n \"developer\": {\n \"devId\": \"Amazon Mobile LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Amazon%20Mobile%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Amazon Photos lets you store, print, and share full-resolution photos, keeping favorite moments secure and in the spotlight. Prime members get free prints delivery and unlimited photo storage for a lifetime of memories. Not a Prime member? All Amazon Photos customers have 5 GB full-resolution photo and video storage.

Amazon Photos for all Amazon customers
- Storage: Free 5 GB combined photo and video cloud storage means you keep memories secure while freeing up space in your phone
- Full-resolution: Keep your original image’s resolution: more pixels equal better quality photos and videos
- Display photos on devices: View photo memories on your Echo Show and Fire TV instead of tucked away in a phone or camera. Customize your Fire TV screensaver and Echo Show photo display with family and travel photos.
- Order prints: Consider Amazon Photos a one-stop-shop for turning memories into photo prints, custom gifts, and home décor. Available only in the U.S.
- Secure photos: Back up photos and videos automatically by turning on Auto-Save in Settings
- Alexa: Enjoy many Amazon Photos app features using just your voice on your Echo Show and Fire TV or with the Alexa app on your mobile phone. Try saying, “Alexa, show my photos of sunsets,” or "Alexa, show photos taken in Sicily."
- Groups: Privately share and comment on selected photos, videos, and albums with friends and family across devices
- Subscriptions: Expand storage (and cancel any time) with flexible monthly and annual plans starting at $1.99
- Search: Easily locate photos when you search by date or location
- Auto-Save: Enable Auto-Save in Settings to automatically secure every photo and video you take.
- Re-live Memories: View and share photos from this date in years past, whether it’s one year ago or five years ago. See special moments set to music and re-surfaced as a curated slideshow to re-live the good times.
- Privacy: Share photos and albums with friends and family by inviting them to a private Amazon Photos Group. Consolidate photos of special events (vacations, playoffs, parties, graduations) into a single album.

Prime members get all the above PLUS
- Unlimited photo storage
- 5 GB dedicated video storage
- Refined search filtering
- Free prints delivery

Get the app and upload your photos
Upload your photo collection to access memories across all your devices.
Move your existing photo collection from one provider to Amazon Photos in just a few easy steps. Learn more here.

Amazon Photos provides online cloud storage. Easily access pictures stored across devices such as your Fire TV, Echo Show, and Amazon Fire tablet. Securely store, print, and share photos: Once saved to the cloud, you can safely delete them from your phone to free up space. Safekeeping your photos and videos in the cloud keeps them secure, even if your devices (and the pictures in them) are lost or destroyed. Turn on Auto-Save in Settings to save every photo you take to your Amazon Photos account. Learn more about Amazon Photos security by reading our Terms of Use. Amazon ensures that you have access to customer support 24/7. You can conveniently share images on your app with private groups. From ready-to-frame prints to ready-to-hang wall décor, your memories are ready for display. Shop effortlessly right from the app and create custom keepsakes like wall décor, prints, and wall canvas' for special holidays.

U.S. Customers visit us at:
Learn more about Amazon Photos here\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6994944,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.amazon.clouddrive.photos\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.amazon.clouddrive.photos/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.amazon.clouddrive.photos/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.amazon.clouddrive.photos/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.amazon.clouddrive.photos/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Progressive\",\n \"appId\": \"com.phonevalley.progressive\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.phonevalley.progressive\",\n \"icon\": \"https://play-lh.googleusercontent.com/wz-L9jr62PHY84TKsYR43EKandVRsczT9AtNVUU55U9qbURIy1CTqgmP6AG6MGW8CruN\",\n \"developer\": {\n \"devId\": \"Progressive Insurance\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Progressive%20Insurance\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Easy access to your insurance, whenever and wherever you need it.

Here are some things you can do with the Progressive App:
· View coverages, discounts, ID cards, documents, and policy details.
· Report and add photos to a claim.
· Pay your bill by credit card, debit card, or checking account.
· View your billing history and upcoming payment schedule.
· See your progress in Snapshot®.
· Quote or make a policy change.
· Request roadside assistance, exactly when you need it most.
· Take and submit photos of documents that we've requested from you.
· Get in touch with your agent and claims rep.
· Start an auto insurance quote—and then buy online.

Learn how we use your app permissions:
http://www.progressive.com/android-app-permissions/\",\n \"scoreText\": \"4.6\",\n \"score\": 4.591624,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.phonevalley.progressive\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.phonevalley.progressive/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.phonevalley.progressive/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.phonevalley.progressive/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.phonevalley.progressive/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Feelsy: Stress Anxiety Relief\",\n \"appId\": \"app.feelsy\",\n \"url\": \"http://gplayapi.srik.me/api/apps/app.feelsy\",\n \"icon\": \"https://play-lh.googleusercontent.com/L7-dD9IfHk8pSrqzJUqXgHXxoKfEjS1ceOO8v3kzor6C-U-VDE6bQ2QvTwAdv0aUKJA\",\n \"developer\": {\n \"devId\": \"Gototop LTD\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Gototop%20LTD\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Feelsy is your direct way to relieve anxiety and reduce stress.

If you're looking for a way to soothe your brain and get anxiety relief, you've just found the perfect option!
Reward your senses and enjoy 3D/4D textures that will reduce stress, anxiety and help you sleep better.

Clear your mind with pleasant and relaxing mechanics.

Feelsy features a variety of soothing sounds and visual triggers that will have you experiencing relaxation and pleasant tingling as you listen and watch.
It will help you have stress relief and relax after a tiring day, fall asleep faster, or just beat boredom by playing with beautiful and soothing textures and patterns.

How it works:
1. Choose a texture or effect you like
2. Put on your headphones for a relaxing effect
3. Start touching the screen. You can touch, slap, stretch, and slide!

Feelsy can help in different stressful situations such as flying, moving, before important events in life or just to calm the mind for better sleep.

What do you get?
- Keep your mind calm.
- Less negative thoughts in your head.
- Become more self-confident.

Features:

- Over 80 textures!
- Realistic simulation: Squeeze, stretch, knead - just like in real life!
- Pleasant sounds: Turn up the volume and enjoy!
- Train your brain to be more resistant to stress!

Get rid of your anti stress and enjoy the current moments.
Relax your mind and sleep without anxiety every day!\",\n \"scoreText\": \"3.4\",\n \"score\": 3.424196,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=app.feelsy\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/app.feelsy/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/app.feelsy/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/app.feelsy/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/app.feelsy/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Mercari: Your Marketplace\",\n \"appId\": \"com.mercariapp.mercari\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.mercariapp.mercari\",\n \"icon\": \"https://play-lh.googleusercontent.com/VWWql62UIn_o1LyVRq5VxjKAR1-6mHKxejen_28T6vnxLzv_Pir8UxiLlaoOArbsObo\",\n \"developer\": {\n \"devId\": \"Mercari, Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Mercari%2C%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Mercari is your marketplace.
It’s the perfect place to go to declutter or find your new look. Letting go has never felt so good – it’s almost as good as finding your new favorite thing. And we’re here to help.

Our team is always trying to find new ways to make exchanging items even easier. This means at-home pickups, same-day delivery, and a curated list of items you’ll love.

SELLING ON MERCARI:
It’s all from home.
- Item sold? Contact your carrier for a home pickup.
- Check out Mercari Local in select cities. The day your item is sold, a driver will pick it up and deliver it to the buyer.

Listing is easy.
- Take a few photos, add a description, and tap “list.”
- Listing an item will always be free. We only charge fees when your sale is complete.
- Once your ID is verified, you can get paid in minutes with Instant Pay.

There are no meetups.
- With Mercari, all items ship. You can sell almost anything from the comfort of home.
- When you ship with a Mercari label, we’ll email you a printable shipping label when your item sells. Just print it out and drop off your package, or schedule a pickup.

SHOPPING ON MERCARI:
Shop from thousands of popular brands: Nike, Apple, Nintendo, Rae Dunn, Funko, and many more. We also have deals on quirky collectibles and authenticated luxury, all sold by real people like you.

When you’ve found that perfect thing, we ask the seller to ship within 3 business days.

Say goodbye to your old go-tos, and hello to the new you.
We’d love to hear from you.

DM us on our Instagram @mercari or tweet @mercari_app.

Mercari is available in the US for anyone 18+.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.677588,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.mercariapp.mercari\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.mercariapp.mercari/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.mercariapp.mercari/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.mercariapp.mercari/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.mercariapp.mercari/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Haircut prank, air horn & fart\",\n \"appId\": \"com.pranksounds.appglobaltd\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.pranksounds.appglobaltd\",\n \"icon\": \"https://play-lh.googleusercontent.com/NlZsOUYKmMjDuy85BPlTc9eyqJt7z6WB3PHJtCZBy1Zixfvzk3TgtmkXga8V2Fipm1o\",\n \"developer\": {\n \"devId\": \"ABIBusiness Global LTD\",\n \"url\": \"http://gplayapi.srik.me/api/developers/ABIBusiness%20Global%20LTD\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Are you tired of the classic jokes? Are you desire to have endless fun by trolling your friends? Make your life become more fascinating than ever with Haircut prank, air horn & fart - the greatest prank apps that contains a large variety of realistic and vibrant clippers prank sounds effect.

Thank to this shaver prank sounds, air horn & fart noise app, now you can easily turn your phone into a fake razor prank & shaving games maker to prank everyone and have lot of fun. We gathered scary sounds, fake razor prank, doorbell, breaking glass, car sounds together, just for you. All prank apps now are complied just in one! With abundant prank sounds, this hair clippers & fake razor prank apps will keep you and your friends entertained for hours!!

⭐ Hair clipper prank shaving
This fake razor prank & shaving games feature includes authentic clipper sounds and vibrations. Its sound is modeled to real hair clippers and changes when the device is moved above someone's head. Also, you will feel a vibration similar to a real razor. This shaver prank & fake razor is totally impressing!

Haircut prank & shaving games maker now become easier than ever! With this hair clipper prank shaving feature, your friends will really think that their hair has been cut. When you witness their surprised and angry expressions, you won't be able to stop laughing. From now on, you can easily make hair clipper prank shaving and laugh for hours without getting bored. After a short period of time, you will realize how much fun you will have. Laughter is the best medicine for life!

⭐ Air horn prank apps feature
Impress or prank your friends and family with this very loud clippers prank sounds & airhon. With Haircut prank, shaving games & air horn, you can prank, scare or wake your friends up or even cheer at a sports event. This app includes many realistic air horn sounds such as train, ship, truck, car sounds, police sirens, fire engine, breaking glass, doorbell which will fool everyone.

⭐ Fart noise & fart sounds maker
Use the apps to do a prank on your friends and watch them freaking out in fun. Turn your phone into fart sounds machine and embarrass your friends with the fart noise timer and fart bomb or liven up surounding with fart symphonies. This is a large fart noise soundboard that contains dozens of entertainment fart & clippers prank sounds.

Besides fake razor prank, fart sounds and air horn, there are dozens of amusing prank sounds. Breaking glass, car sounds, doorbell and other scary sounds are examples. We have brought together all phone pranks for you to cheer up your boring life and take a break from humor and fun.

All the prank & scary sounds effects are named according to their expressions like wet fart noise, short fart sounds, hard fart noise, hard rapid doorbell, loudest car sounds, dramical glass breaking ....etc. This allows you to quickly understand all the features of this shaving games, fart sounds & shaver prank apps. Every prank brings a roar of laughter. You just need to download this shaver prank & hair clipper prank shaving and have much fun with all your friends!

Hair clipper prank shaving is the funniest hair clippers prank shaving & prank sounds for mischievous jokes, for you and all your friends! With all these shaver prank, car sounds, glass breaking, doorbell, and other high-quality clippers prank & scary sounds, you will be able to make a joke out of everyday regular situations! Don’t let your life be boring! DOWNLOAD this Haircut prank, fake razor prank & scary sounds to live longer with laughter!\",\n \"scoreText\": \"3.7\",\n \"score\": 3.744681,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.pranksounds.appglobaltd\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.pranksounds.appglobaltd/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.pranksounds.appglobaltd/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.pranksounds.appglobaltd/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.pranksounds.appglobaltd/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Duo Mobile\",\n \"appId\": \"com.duosecurity.duomobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.duosecurity.duomobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/dpE6aQQqc2Obn9ddW741YegLaoTNNPfzmLhC2qnMPoZPM50DOkJyRhiQ2gw8dSLoNQ\",\n \"developer\": {\n \"devId\": \"Duo Security LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Duo%20Security%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Duo Mobile works with Duo Security's two-factor authentication service to make logins more secure. The application generates passcodes for login and can receive push notifications for easy, one-tap authentication.

Additionally, you can use Duo Mobile to manage two-factor authentication for other application and web services that make use of passcodes.

Note: For Duo accounts, Duo Mobile needs to be activated and linked to your account before it will work. You will receive an activation link as part of Duo's enrollment process. You may add third-party accounts at any time.

Additionally, we will request access to use your camera for the sole purpose of scanning QR codes when activating accounts. Accounts can be activated by other methods if you choose not to do so.

License agreements for third-party Open Source libraries used in Duo Mobile can be found at https://www.duosecurity.com/legal/open-source-licenses.

For the latest Terms and Conditions see https://duo.com/legal/terms\",\n \"scoreText\": \"3.4\",\n \"score\": 3.3764193,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.duosecurity.duomobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.duosecurity.duomobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.duosecurity.duomobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.duosecurity.duomobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.duosecurity.duomobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"craigslist\",\n \"appId\": \"org.craigslist.CraigslistMobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/org.craigslist.CraigslistMobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/-6T5t-p8D2vNgm1eFogAOWCkaIsVYFrMTrXYoY2pnNdK8wMpIcromJT-2U28fRiMiA\",\n \"developer\": {\n \"devId\": \"craigslist.org\",\n \"url\": \"http://gplayapi.srik.me/api/developers/craigslist.org\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Work. Buy. Sell. Rent. Live.

craigslist - The original online classifieds. Established 1995.

Find jobs. Hire employees. Post your resume. Offer your skills/services.

Buy & sell cars, trucks, boats, RVs, motorcycles, trailers, auto parts.

Offer your services, locate contractors, find short term gigs and odd jobs.

Buy & sell furniture, household items, electronics, computers, clothing, bikes, art, any and all kinds of used items.

Activity partners, artists & musicians, pets for rehoming, local events.

Save your favorite postings for later, save searches, set search alerts.

Post, edit, renew your own ads.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.643344,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.craigslist.CraigslistMobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/org.craigslist.CraigslistMobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/org.craigslist.CraigslistMobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/org.craigslist.CraigslistMobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/org.craigslist.CraigslistMobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Phone Guardian VPN: Safe WiFi\",\n \"appId\": \"com.distimo.phoneguardian\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.distimo.phoneguardian\",\n \"icon\": \"https://play-lh.googleusercontent.com/Acf8727vUKz8o7XIc-i3qYPcpI-s--77AdsQJ48Wa07Y4MeNb3LI7kRCTxlHppGEIGLr\",\n \"developer\": {\n \"devId\": \"data.ai Basics\",\n \"url\": \"http://gplayapi.srik.me/api/developers/data.ai%20Basics\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Staying secure and protecting your privacy online is becoming more and more challenging in today’s mobile world. Phone Guardian helps to keep your personal data private and safe. It’s easy-to-use, fast, and completely FREE!

Phone Guardian provides you with your own VPN (Virtual Private Network), allowing you to create a secure connection to another network over the internet. Phone Guardian protects your internet traffic by scanning for apps that send your personal information over the internet unprotected.

Meet Max the Husky, your loyal Phone Guardian. While you browse the web, he stands guard over your personal data 24 hours a day, 7 days a week. Max adds an extra layer of protection so you can use your apps online with total peace of mind. Requiring no registration or complicated setup, Phone Guardian ensures your online security while you share photos, shop online or chat with friends.

Unlike traditional VPN services, Phone Guardian does not hide your IP address or physical location and Phone Guardian is completely FREE.

Phone Guardian is privacy, made simple. Download the app now to enjoy a secure mobile phone environment and keep hackers away from your personal information when using WiFi.

Download Phone Guardian now and have Max on patrol every day, defending your phone from hackers and preserving the privacy of your personal data.

Features:

▶ SAFELY EXPLORE THE WEB
Let Max protect your favorite websites while you surf the web. Leverage the latest VPN technology to scan unprotected websites and instantly secure them!

▶ KEEP TRACK OF YOUR ONLINE ACTIVITIES
Check which apps are making internet connections and which of them were vulnerable. But, no worries, Max will keep them all safe!

▶ CHERISH YOUR ONLINE PRIVACY
Encrypt your private information and daily activities online. Keep hackers away from your personal photos, passwords and bank accounts.

▶ PROTECT YOUR PHONE WITH ONE TAP
You don’t have to be a security expert to protect your phone and keep your data private! Activate Phone Guardian’s VPN protection with just one tap. Max will guide you in securing your phone.

▶ REWARD MAX
Reward Max for protecting your privacy! You can earn different collars for Max and reward him for keeping your data safe. Earn fun collars and medals for Max, the longer he protects you, the more collars you will be able to unlock.

From email to banking, our smartphones are central to our daily lives and for this reason, your phone is a target for online hackers. Phone Guardian helps protect your privacy and online activities when using WiFi. The app uses VPN technology to scan your internet traffic for unprotected data.

If it detects unencrypted data while you’re connected to an unsecured WiFi network, Phone Guardian will automatically encrypt that traffic to protect it from hackers and other incoming threats.

Download Phone Guardian for FREE now and get maximum security, minimum complexity and total protection for your phone.

Phone Guardian from data.ai:

Trusted by more than 1 million users, data.ai is the leading global provider of mobile performance estimates. In short, we help app developers build better apps. With your consent, we collect the following information about your app and web activity to create market research on mobile behavior.

• Which apps & websites are used in your country?
• How many people use a specific app or website?
• How much time spent on social networking?
• How many times per day is a specific app being used?

CONNECT WITH US:
Max and the Phone Guardian team would love to hear from you!
support@phoneguardianapp.com
Visit: https://www.phoneguardianapp.com
Like: https://www.facebook.com/PhoneGuardianApp
Double tap: https://www.instagram.com/phoneguardian
Website:https://www.phoneguardianapp.com\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7716274,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.distimo.phoneguardian\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.distimo.phoneguardian/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.distimo.phoneguardian/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.distimo.phoneguardian/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.distimo.phoneguardian/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"United Airlines\",\n \"appId\": \"com.united.mobile.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.united.mobile.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/ksMkNKYrH89qrIvuoLOtgElqPqjFMyHaWStkTTZGqWMCymFI6FW3uwyuLWyZxlVgwXc\",\n \"developer\": {\n \"devId\": \"United Airlines\",\n \"url\": \"http://gplayapi.srik.me/api/developers/United%20Airlines\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Say hello to our redesigned United app.

With our ever-changing environment and the need more than ever to empower our customers with more ability to self-serve and stay informed, we’ve worked to enhance our United app to deliver information more consistently, timelier and easier than before for all users – all while keeping many of the same features you know and love.

The app is your all-in-one travel partner
-\\tOur redesigned app will now deliver information you need more consistently than ever before with improved navigation for a more seamless experience. The design updates also serve as a complement to our enhanced accessibility support for screen readers.
-\\tDuring your trip, our app home screen gives you quick access to important details by opening to the most useful and relevant information, for all users whether you’re signed in or not. When it’s time to travel, check in for your flights on the home screen and view real-time updates. See what amenities are on your flights and your position on the upgrade and standby lists. While at the airport, explore interactive airport maps to find a United Club location near you and stay up to date on your flight status through our push notifications delivered directly to your inbox.
Manage your MileagePlus® account
-\\tEnroll in MileagePlus and check out our newly envisioned “My account” experience. You can also earn miles with MileagePlus programs and use these miles to book award travel on the app, too.
Search for flights and book travel
-\\tLook for flights across our global network. When you find one that’s right, book it on the app using money, award miles or even your electronic travel certificates.
Easily manage your reservations on the app
-\\tView and change your seat assignments, or enhance your trips by adding Economy Plus® seating, Premier Access®, United Club℠ passes, travel bundles and more. You can also change, cancel or rebook your flights right on the app, all through the “My trips” section.
Continue using the app in the air
-\\tWith United Private Screening on select flights, watch TV shows and movies on your own device. Plus, track the status of your checked bags and see which gate you’ll arrive to once you land.
Have questions?
-\\tMessage our contact center directly through the Contact Us section in the app.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6552157,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.united.mobile.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.united.mobile.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.united.mobile.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.united.mobile.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.united.mobile.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Remote for RokuTV\",\n \"appId\": \"com.begamob.rokuremote\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.begamob.rokuremote\",\n \"icon\": \"https://play-lh.googleusercontent.com/D3XjhXE0ovHIPQdORARUk7zigPB25VuwzLkpu5lNjDtBJopOAs6Lhu1x3a5oBWDc9gVL\",\n \"developer\": {\n \"devId\": \"Begamob Global\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Begamob%20Global\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Note: Please connect both devices to the same WiFi network. Select your Roku TV in the app and, when prompted, ""Allow"" the app. That's it! Simple, quick, with complete features.

(Please note that this application cannot turn on your TV. Your TV is not connected to WiFi when it is OFF, so it can't accept the commands.)

TV Remote for Roku is the remote control unit for Roku Streaming Player and Roku TV. Magnificent design, intuitive interface, no pileup of buttons or complex settings. Thanks to this application, access to movies, music and games will become simpler and easier, and you will love your Roku even more. All you need is connect your Android device and Roku to the same Wi-Fi network.

Quick Cast To TV and Share Photos & Videos in high-definition from your Gallery directly onto your devices with the tap of a button on the dedicated ""Cast"" tab. Search effortlessly by using our friendly keyboard on the app.

Enjoy quick access to your favorite TV Streaming media channels like HBONow, Chill TLC, Shattered channel, YouTube, Rookie and others with the dedicated ""Channels"" Tab. This Smart TV Remote Control app also helps you use swipe-based gestures on your devices for easier navigation.

Features:
✔️ Universal Roku remote control for android
✔️ Navigation using the buttons or touchpad
✔️ Popular function with Roku screen mirror
✔️ Support all the Roku channel
✔️ Easy and Fast Roku controller to remote TV
✔️ Wireless Roku remote free with Wifi
✔️ Search keywords by keyboard and voice
✔️ Roku remote control for TV with volume control button
✔️ Stream free movies, live TV, and more on the go with The Roku Channel
✔️ Cast media files from your phone, like videos and photos, to your TV

📺 Universal Roku remote control for android
Do you need a free remote control that supports all Roku devices, including Roku steamer and Roku box? Roku Streamer hundreds of hit movies, TV shows, and more on the Roku Channel. Hisense Roku TV Remote is supported as well. Don't hesitate to download this best Roku TV Remote Control App!

📺 Navigation using the buttons or touchpad
Experience controlling the TV through the touchPad, one of the easiest and convenient ways to control.

📺 Popular function with Roku screen mirror
Do you want to Mirror your phone screen to your Roku TV? This feature allows you to do just that.

📺 Roku Remote Control Free with Infrared & Wifi
Do you want a Roku remote no wifi? This is a wireless Roku TV Remote Universal Control, using Wifi or IR remote control for TV free. You can choose WiFi or IR mode as well.

📺 The Roku App that Free & Easy Access to Channels
Do you want a steamer for Roku TV Control? Using this All in one App to access Roku Channels directly from it like Netflix, YouTube, Prime, Hulu, Spectrum, Disney, etc.

📺 Search keywords by keyboard and voice
Do you want to find keywords easier? This feature helps you to do that, It can search the fastest so you don't waste time typing each character.

📺 Cast media files from your phone, like videos and photos, to your TV
Project the fastest videos on your phone or on youtube to the TV screen.


Disclaimer
This Free Roku Remote Control App is not the Roku Official Remote Control of Roku, Inc. It is not affiliated with the TV brands above in any way.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.337761,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.begamob.rokuremote\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.begamob.rokuremote/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.begamob.rokuremote/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.begamob.rokuremote/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.begamob.rokuremote/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Libby, by OverDrive\",\n \"appId\": \"com.overdrive.mobile.android.libby\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.overdrive.mobile.android.libby\",\n \"icon\": \"https://play-lh.googleusercontent.com/fsfzoSofx2cyzz-gFSUvSkh1TE9dDJ8lxRfBqykIuSzlfSvbX5SlFg1rXhOKvjkhGjg\",\n \"developer\": {\n \"devId\": \"OverDrive, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/OverDrive%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"All over the world, local libraries offer millions of ebooks and audiobooks. You can borrow them — for free, instantly — with a library card and Libby: the award-winning, much-loved app for libraries.

• Browse your library’s digital catalog of books — from classics to NYT best-sellers
• Borrow and enjoy ebooks, audiobooks, and magazines
• Download titles for offline reading, or stream them to save space
• Send ebooks to your Kindle (U.S. libraries only)
• Listen to audiobooks via Android Auto
• Use tags to create your must-read list and any other book lists you want
• Keep your reading position automatically synced on all your devices

In our beautiful, intuitive ebook reader:
• Adjust text size, background color, and book design
• Zoom into magazines and comic books
• Define and search for words and phrases
• Read and listen to read-alongs with your kids
• Add bookmarks, notes, and highlights

In our ground-breaking audio player:
• Slow down or speed up the audio (0.6 to 3.0x)
• Set a sleep timer
• Simply swipe to skip forward and backward
• Add bookmarks, notes, and highlights

Libby is built by the team at OverDrive, in support of local libraries everywhere.

Happy reading!\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4396715,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.overdrive.mobile.android.libby\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.overdrive.mobile.android.libby/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.overdrive.mobile.android.libby/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.overdrive.mobile.android.libby/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.overdrive.mobile.android.libby/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"PlayWell - Play & Earn Rewards\",\n \"appId\": \"com.play.well.earn.reward.free.income.cash.win.real.money\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.play.well.earn.reward.free.income.cash.win.real.money\",\n \"icon\": \"https://play-lh.googleusercontent.com/1DfUB1vPayIhgoecSzPm8Dda3sdAGyMP4XBJfFGXlfD6-unSn8_91y3IxDBYz2jckX5C\",\n \"developer\": {\n \"devId\": \"EnjoyPlay\",\n \"url\": \"http://gplayapi.srik.me/api/developers/EnjoyPlay\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"💸 💸 💸
The loyal real cash app for every player!!!
Earn real money by playing free games!!!
Cashout via Paypal quickly!!!

💰💰💰
It's the best choice to fast make more money at home!!!
Don't miss PlayWell, download it and cashout immediately!!!

🎮 🎮 🎮
In PlayWell, you only need to play games and you will be rewarded for your time.

🎁 🎁 🎁
Are you looking for real cash apps?
PlayWell, the app that lets you earn real money and cashout via Paypal.
Every game we feature is free to play.
Just play and you can make money, so exciting!

So what are you waiting for? How to start?
✅ 📱 Get PlayWell now for FREE.
✅ 🎮 Play any FREE games.
✅ 🌟 Earn coins for every second you play.
✅ ⏰ The more games you play, the more money you earn!
✅ 💲 Trade your coins for real money rewards.
✅ 🎉 Invite your friends to PlayWell and earn more together~


Why PlayWell?
✔️ Easy to use! You will play it as soon as you see it.
✔️ Fast & guaranteed payouts via Paypal!
✔️ Completely free cash app (no deposits, no in-app purchases)
✔️ Large number of different game types are available to experience.

🔥 If you're reading this, you shouldn't waste this chance! Free games and money just in PlayWell.
🔥 If you already like playing games, PlayWell is another better choice, because you can make money by playing games!
🔥 With PlayWell, you no longer have to worry about pocket money!
🔥 So, download it and cashout now! 🏆\",\n \"scoreText\": \"4.1\",\n \"score\": 4.057422,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.play.well.earn.reward.free.income.cash.win.real.money\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.play.well.earn.reward.free.income.cash.win.real.money/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.play.well.earn.reward.free.income.cash.win.real.money/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.play.well.earn.reward.free.income.cash.win.real.money/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.play.well.earn.reward.free.income.cash.win.real.money/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Max Cleaner\",\n \"appId\": \"com.lpstu.max.junk.clean\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.lpstu.max.junk.clean\",\n \"icon\": \"https://play-lh.googleusercontent.com/WGZZ617x6YO3PYtY6Pg6zuTF9DV-CKDWsW1heiwZMw4dAL_4qki6AZ_ypEPa5_-pthc\",\n \"developer\": {\n \"devId\": \"KeepCleanerPhone\",\n \"url\": \"http://gplayapi.srik.me/api/developers/KeepCleanerPhone\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Max cleaner, an app that focuses on mobile phone cleaning, makes your mobile phone unblocked, faster and easier to use.

Introduction:
Max cleaner is the secret to keeping your phone smooth, so your phone doesn't freeze!
Multi-functional, more convenient operation.

Junk Clean:
One-click to clean up mobile phone junk and say goodbye to stuttering.

Battery Saver:
Max cleaning, system optimization, let your phone "fly"!

CPU cooler:
It can effectively reduce the temperature of mobile phone CPU, so that your mobile phone no longer heats up and runs more smoothly.\",\n \"scoreText\": \"3.8\",\n \"score\": 3.8317757,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.lpstu.max.junk.clean\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.lpstu.max.junk.clean/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.lpstu.max.junk.clean/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.lpstu.max.junk.clean/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.lpstu.max.junk.clean/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Blink Home Monitor — Smart Home Security App\",\n \"appId\": \"com.immediasemi.android.blink\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.immediasemi.android.blink\",\n \"icon\": \"https://play-lh.googleusercontent.com/FFZ8bkIMGzL65ewJ4c2urntU9ZrtZMLWdvLFIIXuNQDX4gm5WKR1JG9qpXbjAPMK6XM\",\n \"developer\": {\n \"devId\": \"Immedia Semiconductor\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Immedia%20Semiconductor\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Blink’s affordable smart home security cameras and systems help you monitor your home directly from your smartphone. With multi-system support and simple setup, you can easily control multiple Blink cameras within one app. The Blink Home Monitor app will alert you to what matters, day or night, no matter where you are. Just Blink and you’re home.

Be there from anywhere with Blink smart home security cameras

The new battery-powered smart home security cameras from Blink and Amazon go where wires can’t! Outdoor and Indoor run for up to two years on the included set of AA lithium batteries to help protect what matters most for less. Looking for an affordable plug-in option? Blink Mini has you covered!

Blink Outdoor: weathers the storm so you don’t have to. Outdoor runs for up to two years* on a single set of AA batteries to help you protect your home inside and out — rain or shine — with features like two-way audio, motion detection, and more. Outdoor works with Alexa.

Blink Indoor: is a wireless, battery-powered security camera that you can place anywhere inside your home. Features like two-way audio and night vision help you stay connected to what’s happening no matter where you are — day or night. Indoor works with Alexa.

Blink Mini: is mighty — but tiny — which means you can plug it in anywhere inside your home. Starting at $34.99 Mini is a great first step towards keeping your home more secure. Hear, see, and speak right from the Blink Home Monitor app on your phone and get alerts whenever motion is detected.

Works with Alexa

Connect Blink Outdoor, Indoor, or Mini to select Alexa-enabled devices for voice commands at home. You can use your voice to stream live video, play recorded clips, arm and disarm your camera, be alerted to motion, and more.
Go hands-free with Alexa!

Enhance Your Smart Home Security

Use the Blink Home Monitor app to check in on what’s happening at home from anywhere at any time. The app connects your home to your phone in HD video so you can see and protect what matters most. With multi-system support, you can use Blink to watch your home, vacation home, or business all at the same time.\",\n \"scoreText\": \"2.9\",\n \"score\": 2.857234,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.immediasemi.android.blink\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.immediasemi.android.blink/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.immediasemi.android.blink/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.immediasemi.android.blink/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.immediasemi.android.blink/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"PictureThis - Plant Identifier\",\n \"appId\": \"cn.danatech.xingseus\",\n \"url\": \"http://gplayapi.srik.me/api/apps/cn.danatech.xingseus\",\n \"icon\": \"https://play-lh.googleusercontent.com/2dcJOJptNfz3oVeNtHqC-SyKJ-lWDafOzLlUTgOGCpl7KarBjDxnIckL20PStVmYFg\",\n \"developer\": {\n \"devId\": \"Glority LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Glority%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Instantly identify plants. Accurate, fast and content rich! In addition to description and plant care tips, enjoy beautiful plant pictures around the world.

PictureThis helps more than 70,000,000 users identify, learn, and enjoy all kinds of plants: flowers, trees, succulents, cacti and more!

When you take a walk during sunny days, have you ever come across a beautiful flower you would know more about? When you’re doing gardening work, have you ever needed tips on plant caring? Simply take a photo of the plant, PictureThis answers all the questions for you.

PictureThis is capable of identifying 17,000+ plant species with accuracy of 98%. With revolutionary artificial intelligence engine, it’s constantly learning from experts and specialists, identify more and better everyday. And now it’s all at your fingertips! Picture this plant, and enjoy!

Key Features:

- Instantly identify thousands of plants, flowers, and trees with advanced artificial intelligence
- Learn about plants and discover beautiful plant pictures taken by our users around the world
- Get suggestions and advice from a network of friendly horticulture specialists
--Plant care tips and water reminders, help you better grow your lovely plants
- Easy-to-use interface with friendly guides, help you get the best photo
- Quickly and easily share your photos with a growing community of plant lovers
- Keep track of all the plants, trees, and flowers you identify in your own personal collection

PictureThis team hopes to build a vibrant community for plant lovers and help more people know more about plants.

CONNECT WITH US
Facebook.com/PictureThisAI
Twitter.com/PictureThisAI
Instagram.com/PictureThisAI\",\n \"scoreText\": \"4.7\",\n \"score\": 4.65892,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=cn.danatech.xingseus\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/cn.danatech.xingseus/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/cn.danatech.xingseus/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/cn.danatech.xingseus/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/cn.danatech.xingseus/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"MLB Ballpark\",\n \"appId\": \"com.bamnetworks.mobile.android.ballpark\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.bamnetworks.mobile.android.ballpark\",\n \"icon\": \"https://play-lh.googleusercontent.com/lEMGi4Nc93dRbA8vS1fIUyBjlqJQ-UBVUSgg_tQvaf4K0Jlf4IuEEMN52u06oMVc6EmB\",\n \"developer\": {\n \"devId\": \"MLB Advanced Media, L.P.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/MLB%20Advanced%20Media%2C%20L.P.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The MLB Ballpark app is your mobile companion when visiting your favorite Major League Baseball ballparks. The official MLB ballpark application perfectly complements and personalizes your trip with digital ticketing functionality, mobile check-in, offers, rewards and exclusive content. Select MLB ballparks also offer mobile food and merchandise ordering.

**** Ballpark Features ****
• Access and manage your tickets
• Team schedule, ticket information and sales and promotional event listings
• Interactive map with directory of food, beverage, merchandise and other amenities
• Check In for offers and rewards, redeem from the Tickets tab
• View scores and photos from all your ballpark visits
• Customize your experience by designating a favorite MLB team
• Social media clubhouse, including social rewards for select clubs
• Directions and parking information

© 2022 MLB Advanced Media, L.P. All Major League Baseball trademarks and copyrights used herein are the property of the applicable MLB entity. All rights reserved.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4941945,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bamnetworks.mobile.android.ballpark\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.bamnetworks.mobile.android.ballpark/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.bamnetworks.mobile.android.ballpark/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.bamnetworks.mobile.android.ballpark/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.bamnetworks.mobile.android.ballpark/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"dfndr security: antivirus\",\n \"appId\": \"com.psafe.msuite\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.psafe.msuite\",\n \"icon\": \"https://play-lh.googleusercontent.com/xO85hcnf9Ew-PpHCY1Zv2mhXH-N1L3ddcDXgLPEM3nzcQxKMehjN1kvF7Zu6BXmZkp_0\",\n \"developer\": {\n \"devId\": \"PSafe\",\n \"url\": \"http://gplayapi.srik.me/api/developers/PSafe\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"dfndr security is the complete antivirus you need to keep your phone safe and optimized. Available for free download on Android, it serves to protect and optimize your device performance continuously with remarkable ease-of-use .

The PSafe app is #1 in digital security, installed over 200 million times worldwide. It protects you against scams, viruses, Wi-Fi theft, fake news, identity theft and much more. It also makes it possible to track your cell phone in case of loss or theft. In addition to protecting your device, dfnd security is lightweight and offers powerful optimization features such as charge booster,memory data usage monitor, memory booster, quick clean-up and CPU cooler.

Download dfndr security for free right now!

Key features of dfndr security:
✔ Full AV Scan: Antivirus Scan Protects Your Apps
✔ dfndr assistant: Optimize Phone Performance
✔ ID Theft Report: Protect Your Credentials
✔ Charge Booster: Power Up
✔ Memory Booster: Save More Memory
✔ Quick Clean Up: Free Up Phone Memory
✔ Data usage monitor: Monitor Internet Data Flow
✔ CPU Cooler: Never Overheat

Full AV Scan: Antivirus Scan Protects Your Apps
dfndr security provides real-time protection against scams, fake websites and fake news, as well as privacy risk scanning in your apps. Antivirus detects and removes malware and other threats automatically. Prevent identity theft by monitoring all your digital credentials 24/7. Receive alerts whenever there is a leak involving your data.

dfndr assistant: Optimize Phone Performance
dfndr assistant protects and improves the performance of your phone with just one click. It notifies you when you need to enable protection and cleaning, for example.

ID Theft Report: Protect Your Credentials
Register multiple emails and receive reports on the security of your accounts. You can monitor your credentials 24 hours a day, 7 days a week, and receive real-time alerts if any of your emails have been leaked.

Charge Booster: Power Up
The dfndr security charge booster closes background apps that are consuming battery power, so you can charge your phone faster.

Quick Clean Up: Free Up Phone Memory
Remove junk files and caches from your smartphone's internal memory and your SD card. Junk files are created whenever you use an app. Therefore, it’s ideal to perform a daily cleaning of your device.

Data usage monitor: Monitor Internet Data Flow
Save your mobile data package. With this feature, you can find out how much each app consumes from your 3G/4G/5G and receive alerts when an app uses too much internet data.

CPU Cooler: Never Overheat
Identify application tasks that are consuming a lot of your phone's resources. This function is able to reduce the heating of the device and increase its performance.

dfndr security Pro and Ultra
Also get to know the Pro and Ultra versions, which offer access to exclusive security features, in addition to 24-hour monitoring of your credentials

Try Pro plan free for 3 days. If you love it, sign up for a one year plan.

-> Visit our website: www.psafe.com

-> Do not sell my personal information:
https://www.psafe.com/do-not-sell-my-personal-information/
-> License Agreement:
http://www.psafe.com/license-agreement/
-> Terms of Use:
https://www.psafe.com/terms-of-use\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3714266,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.psafe.msuite\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.psafe.msuite/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.psafe.msuite/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.psafe.msuite/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.psafe.msuite/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Amazon Music: Discover Songs\",\n \"appId\": \"com.amazon.mp3\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.amazon.mp3\",\n \"icon\": \"https://play-lh.googleusercontent.com/c0uMGe9aLRQxGtAXB_9xnKnG83VOGRD7NtglvnzPj9SYS3_ZYA_EYhtP86nePn0vjI0\",\n \"developer\": {\n \"devId\": \"Amazon Mobile LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Amazon%20Mobile%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \" Limited time offer. Get 3 months of Amazon Music Unlimited for free.

We're changing the way you find and play music you love. Listen free to music and podcasts with ads—no credit card required. If you're a Prime member, you can enjoy 2 million songs, ad-free, included with your membership. Or, get unlimited access to 90 million songs with Amazon Music Unlimited.

Included with Prime
• 2 million hand-curated songs
• Ad-free music
• Unlimited skips and offline listening
• Millions of podcast episodes

Amazon Music Unlimited
• Over 90 million songs, ad-free and on-demand
• Play the latest new releases and stream music videos
• Enjoy the highest quality streaming audio
• Access 7 million songs in Ultra HD (up to 10X+ bitrate)
• Exclusive Ultra HD remastered albums
• Experience our fast-growing collection of spatial audio
• 10 million podcast episodes, including Amazon Originals

Or listen to free streaming music, no credit card required
• Play what you love and discover something new
• Thousands of stations and top playlists
• Listen on your favorite devices
• Millions of podcast episodes

Import your playlists
• Move existing playlists from other music platforms to Amazon Music in a few quick steps. Learn more at http://www.amazon.com/playlistimport

My Music
• Listen to music you’ve purchased from Amazon – MP3s or AutoRip CDs/Vinyl. Your Amazon purchases are stored for free in the Amazon cloud

Visit us at:
www.amazon.com/music/unlimited
www.amazon.com/music/prime
www.facebook.com/amazonmusic
www.twitter.com/amazonmusic
www.instagram.com/amazonmusic\",\n \"scoreText\": \"4.0\",\n \"score\": 4.0019183,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.amazon.mp3\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.amazon.mp3/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.amazon.mp3/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.amazon.mp3/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.amazon.mp3/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Minecraft: Education Edition\",\n \"appId\": \"com.mojang.minecraftedu\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.mojang.minecraftedu\",\n \"icon\": \"https://play-lh.googleusercontent.com/0WdJcrmcNVbh5I5yJ15CoZmSLcyx2zT-t7eSTjSFwLVtvDPzy0LuzvC-WFUV_Sy55A\",\n \"developer\": {\n \"devId\": \"Mojang\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Mojang\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"THIS APP IS FOR SCHOOL AND ORGANIZATIONAL USE:

Minecraft: Education Edition is a game-based platform that inspires creative, inclusive learning through play. Explore blocky worlds that unlock new ways to tackle any subject or challenge.

Designed to engage all learners, Minecraft: Education Edition provides lessons and fun challenges across subjects, from math and literacy to digital citizenship and sustainability. Get started today!

DISCOVER WORLD-CLASS CONTENT 
- 700 standards-aligned lessons in in-game Library
- 200 hours of K-12 Computer Science curriculum 
- 50 creative build challenges 
- 10 how-to-play tutorials 

SPARK A PASSION FOR LEARNING
Develop critical skills like problem solving, critical thinking, collaboration, and communication in the interactive game environment. Explore ancient civilizations, cell biology, outer space, and bring the periodic table to life with in-game Chemistry. Spark a passion for STEM and Computer Science.

SUPPORT INCLUSIVE EDUCATION
Engage students in meaningful learning and social-emotional development. Accessibility features like chat-to-text and Immersive Reader support different player needs. Learning content is available on culturally relevant topics like climate change and active citizenship.

KEY FEATURES 
- Multiplayer mode enables collaboration in-game across platforms, devices, and hybrid environments
- Code Builder supports block-based coding, JavaScript, and Python with intuitive interface and in-game execution
- Camera and Book & Quill items allow documentation and export
- Immersive Reader helps players read and translate text
- Integration with Microsoft Teams and Flipgrid supports assessment and teacher controls

Minecraft: Education Edition licenses can be purchased separately by individuals with Office 365 Education, Office 365 Commercial, or Microsoft 365 Admin Center accounts. Talk to your teacher or IT administrator for information on academic licensing.

Terms of use: The terms that apply to this download are the terms that were presented when you purchased your Minecraft: Education Edition subscription.

Privacy policy: https://aka.ms/privacy\",\n \"scoreText\": \"4.0\",\n \"score\": 3.971489,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.mojang.minecraftedu\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.mojang.minecraftedu/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.mojang.minecraftedu/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.mojang.minecraftedu/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.mojang.minecraftedu/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Wholee - Online Shopping App\",\n \"appId\": \"com.wholee\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.wholee\",\n \"icon\": \"https://play-lh.googleusercontent.com/Kr5ZIfZ7-rEB995UElO0neZoKlz6ECbNoG7kzvrcLFHWnS1NBaRXKesdP_vY2-3CHM4\",\n \"developer\": {\n \"devId\": \"Wholee\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Wholee\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Online shopping with wholesale prices shouldn’t feel like a risk. At Wholee it doesn’t. With over 100,000 manufacturers supplying inexpensive shopping, we’ve carefully selected the quality products and ensured the lowest prices. And our cutting-edge 3D tech even offers you a brand new shopping experience. Downloaded by 3 million+ customers in just our first year, our app provides a variety of trendy fashions, including high-quality women’s & men's clothing, blags, shoes, accessories, jewelry, home decor, baby kids & mom, electronics, sporting goods, beauty and everything else you want, all at affordable prices. Consider our app as a shopping paradise for everything fashion and style to inspire you! We even offer the lowest prices from $1.



Perks:
- Quality products at wholesale prices
-3D actual product views
- Browse by New Arrivals, Trends, Categories, Best Sellers and more
- Fun, easy shopping that's 100% secure
- Shorter shipping times and better tracking information
- Exclusive 7/24 Customer Service

Please kindly contact us if you have any questions or advice, we highly value your feedback and we will take time and effort to offer you a better shopping experience at Wholee. Follow us on Facebook, Instagram, Youtube&TikTok to find more!

Email: customerservice@wholee.sale
FB:https://www.facebook.com/wholeeglobal
IG:https://www.instagram.com/wholee_official/
YTB:https://www.youtube.com/channel/UCNYzL7Ao6VLI8j6oOtuV7Pg
TT:https://www.tiktok.com/@wholeeofficial\",\n \"scoreText\": \"4.6\",\n \"score\": 4.595815,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.wholee\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.wholee/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.wholee/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.wholee/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.wholee/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Rent. Apartments & Homes\",\n \"appId\": \"com.rent\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.rent\",\n \"icon\": \"https://play-lh.googleusercontent.com/ZG7xUuDaIoLp71Eno_jZkKmSALnsAj5ViAIhqtpBIJGF_BDgtQuPDbi-Vu1JYOluug\",\n \"developer\": {\n \"devId\": \"Rent Group, Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Rent%20Group%2C%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Find Your Next Home With Rent.com Apartments Finder App.

Your new home is just a click away. Start your home rental search with our app. Listings are updated daily with new rental homes & properties across the country - including rental apartments, condos, house rentals, townhouses and more.

Find a home to rent today - rental apartments finder. Browse our huge apartment list for rent & houses for rent. You can even read reviews from real residents so you know whether a property is right for you.

Find houses and apartments for rent near me. Rental apartments near me that are affordable and close to where I want to be - all on the rental apps.

Looking for rental homes or rental apartments? We have more than just apartments, we also offer condos and houses for rent near me, you can stop looking for other rental apps.

Find apartments for rent in any city on the apartment list with our apartments finder. Search millions of listings by filters like pet friendly, cost per month, or availability date. Then, explore properties in virtual tours, watch HD videos, or browse photos. You’ll know your way round properties before the viewings even begin!

Find cheap apartments for rent in minutes with a complete apartment list. We have a huge collection of affordable apartments in every price range with more being added every day. Filter by budget to find houses, apartments, condos, townhouses and more.

The Rent. apartments finder app makes you forget about all the other rental apps. Get access to rental homes listings & houses for rent near me today! All different types of apartments for rent.

Find the perfect rental property for you.

You need to find the right rental apartments - like, yesterday. It’s got to have specific amenities and be within your budget. Rent. is here to help. Find cheap apartments, luxury condos or anything in between, and save your favourite properties straight to your phone.

The Rent. - rental homes mobile app allows you to:
• Find a home to rent with our property search tools and filters
• Find out what residents think of the property - read real ratings and reviews you can trust from actual residents.
• Explore trusted listings from sources that are verified by Rent.
• Take a virtual tour with our exclusive HD videos and panoramic tours with 360-degree views of the exteriors, interiors, and amenities of select apartments.
• View HD apartment photos and floor-plan images for a glimpse of what each unit has to offer.
• Use advanced search tools and filters to narrow in on your perfect rental.
• Find apartments in specific locations using a map or text view of listings.
• Save your favorites to easily access them again and again.
• Call or email apartments directly from the app.
• Send your Renter Card to apartments and stand out from other renters.

The perfect apartment within your budget is out there. Use the Rent. app to help you find it.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3902917,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.rent\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.rent/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.rent/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.rent/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.rent/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Dollar General\",\n \"appId\": \"com.dollargeneral.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.dollargeneral.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/hbNUtRhjaetizmzPz3kIl1i5jCoK3XsTuWhsKbKl3s_tC2Gou38oKpRFJL_LeHnb50X3\",\n \"developer\": {\n \"devId\": \"Dolgencorp, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Dolgencorp%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Your favorite ways to save. Now in one place.

- Digital Coupons – Save on hundreds of items every week.
- DG Pickup - Dollar General’s buy online pickup in store program.
- Cart Calculator – In-store budgeting that helps you save as you shop.
- Shopping List – Keep your checklist and add coupons.
- Weekly Ads – See what’s on sale at your store.
- DG GO!* - A quicker, scan-and-go checkout option.

*Available in select stores only\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6883144,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dollargeneral.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.dollargeneral.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.dollargeneral.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.dollargeneral.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.dollargeneral.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Planet Fitness Workouts\",\n \"appId\": \"com.planetfitness\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.planetfitness\",\n \"icon\": \"https://play-lh.googleusercontent.com/OICnkECAhWjgkWSy2oBo4DJVE1myjJ5TC1YfdQJi6MMPQgEHvyg2YbuSnM4ENJy1t1ok\",\n \"developer\": {\n \"devId\": \"Planet Fitness\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Planet%20Fitness\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to the Planet Fitness App – The Gym In Your Pocket!

Bring the Judgement Free Zone® anywhere with workouts and features for anyone, with the FREE PF App. Check out our exclusive features including trainer-led on-demand workout classes, hundreds of exercises that you can do at home or in-club, equipment tutorials, progress tracking for in and out of the gym, a crowd meter so you can pick the best time to visit and so much more!

Key Features:

Crowd Meter: Coming into one of our clubs? See how many people are at your club before you go to find the best time to visit! Just tap the Crowd Meter at the top navigation to view how busy your club is.

Workout Videos & Filtering: Access on-demand trainer-led workouts that will get you motivated and moving! Whether you're starting your fitness journey, or you just want to try something new, we’ll help you make the most out of your in-club or at home workouts. From beginner to advanced, there are workouts for everyone!. PLUS, it’s easier than ever to find workouts you love with our workout filter. You can search workouts by the type, time, target and more to find what fits for you.

Member Perks: Check out exclusive discounts and deals from Planet Fitness partners. Start exploring now.

Exercise & Equipment Tutorials: View hundreds of easy-to-follow exercise and equipment tutorials. If it’s your first time using a piece of equipment in one of our clubs or need a reminder, you can just scan the QR code in the app and your video guide will help you get started.

Workout Tracking: Every minute matters, whether you set a new personal best, or took a stroll on the treadmill. Track your activity and watch those minutes and good vibes add up.

Digital Keytag: Quick and easy touchless check-in at your Planet Fitness with your digital keytag in the app or through your Apple Watch.

Download the Planet Fitness App today - You got this!\",\n \"scoreText\": \"3.6\",\n \"score\": 3.648527,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.planetfitness\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.planetfitness/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.planetfitness/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.planetfitness/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.planetfitness/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Audiomack: Music Downloader\",\n \"appId\": \"com.audiomack\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.audiomack\",\n \"icon\": \"https://play-lh.googleusercontent.com/4zXhkPkaVyWr-1jyOSw63KXVJSoeJRUOasy9x9Lsr2FBFc1RXHI9hZ-Dioud0hmSlYIv\",\n \"developer\": {\n \"devId\": \"Audiomack Music Apps\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Audiomack%20Music%20Apps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Stream and download the best new trending music (full tracks offline data-free) and listen to your MP3s!

Browse music from top categories like Hip-Hop, Rap, R&B, EDM, Afropop, and Reggae on the Audiomack music app. Download songs and listen offline, without using your data, or listen to your personal MP3 collection! Audiomack provides download access and unlimited streaming to the newest and hottest tracks, right at your fingertips. Our music download feature allows you to play your favorite songs offline, and our “Trending” section shows you the best albums and songs that are hot right now. Plus, you can listen to all local MP3s, WAV, M4A, AAC, and other local files right from the app.

KEY FEATURES • Stream unlimited full music tracks and mixtapes that are new or trending. Be the first of your friends to be up on what’s next. • Download full songs and albums for offline, data-free listening, no wifi. • Unlimited listening & streaming - play as many Hip-Hop, Afrobeat, Electronic, Reggae & dancehall full tracks as you want. • Favorite tracks, albums, and playlists and easily search, browse, and shuffle your favorites collection on demand. • Listen to local music like MP3s, AAC, M4A, WAV, and other files from the local file player. • Browse expertly curated playlists by mood, genre, and much more. • Create unlimited playlists of your own. • Follow your favorite artists, producers, and tastemakers including 21 Savage, Youngboy, Kevin Gates, and more. • Go ad-free for just $4.99 per month.

STREAM AND DOWNLOAD SONGS FROM TOP ARTISTSHip hop, rap, and trap from Migos, 21 Savage, Young Thug, NBA Youngboy, Gunna, Juice WRLD, Chance the Rapper, 6IX9INE, Future, 2 Chainz, Kodak Black, Lil Baby, Ynw Melly, Kevin Gates, Moneybagg Yo, Famous Dex, A Boogie Wit Da Hoodie, Hoodrich Pablo Juan, Flipp Dinero, Youngeen Ace and more • Afrobeats, Afro-Caribbean, Reggae, dancehall, and soca from Shatta Wale, Ade Gold, Chronixx, DJ Frass, Kranium and more • Latin, urbano, latin trap, musica urbana, reggaeton, and dembow from Quimico Ultra Mega, La Insuperable, Melymel, Musicologo, Don Miguelo, Juhn, Mark B, Bad Bunny • R&B and soul from August Alsina, PnB Rock, Brent Faiyaz, SiR, Alina Baraz, Lloyd, and more •

Electronic, EDM, house, and bass from Diplo, Mad Decent, Whethan, NGHTMRE, Poppy, Cheat Codes, Krewella, Snails, Lowly Palace, Dim Mak, Fool's Gold, Trap Nation and more Use of the Audiomack App and download feature is subject to your agreement with our Privacy Policy/TOS. Privacy Policy: http://www.audiomack.com/privacy-policy TOS: http://www.audiomack.com/about/terms-of-service\",\n \"scoreText\": \"4.8\",\n \"score\": 4.766677,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.audiomack\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.audiomack/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.audiomack/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.audiomack/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.audiomack/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Wells Fargo Mobile\",\n \"appId\": \"com.wf.wellsfargomobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.wf.wellsfargomobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/uNMFKMGDZcSEyoAX4bGbDB0qBes0gdqFLCE4lFdOwtTgYfZ3YMfvqmun0XWuIRgd1AY\",\n \"developer\": {\n \"devId\": \"Wells Fargo Mobile\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Wells%20Fargo%20Mobile\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Manage Your Accounts
•\\tQuickly access your cash, credit, and investment accounts with Fingerprint Sign On¹ or Biometric Sign on¹
•\\tReview activity and balances in your accounts
•\\tView your credit card transactions and manage your rewards program
•\\tEasily activate or turn cards on or off², add cards to digital wallets³, view recurring payments, and manage account access with Card Settings

Deposit Funds⁴
•\\tDeposit checks with ease using your AndroidTM camera
•\\tInstantly view the processing deposit in your account

Make Transfers and Payments
•\\tTransfer funds between your Wells Fargo accounts and to other financial institutions⁵
•\\tSecurely send and receive money with friends and family using a U.S. mobile phone number or email address with Zelle®⁶
•\\tPay your bills with Wells Fargo’s Bill Pay service

Track Investments
•\\tMonitor balances, holdings, account activity, and open orders for your Wells Fargo Advisors and WellsTrade® accounts
•\\tGet real-time quotes, charts, market data, and news

Help Stay Secure
•\\t Visit the Security Center to report fraud and learn how to help keep your accounts safe
•\\tConfigure and receive alerts⁷
•\\tGet notified of suspicious card activity with text or email alerts
•\\tGet easy access to your FICO® Credit Score

Contact Us
•\\tEmail appstorefeedback@wellsfargo.com
•\\tLocate one of our more than 12,700 ATMs to get cash or find one of our approximately 4,800 retail banking branches near you via GPS
•\\tSet up an appointment to meet with a Banker
______________________________________________________________________________
1. Only certain devices are eligible to enable Fingerprint Sign On or Biometric Sign On.
2. Turning your card off is not a replacement for reporting your card lost or stolen.
3. Not all smartphones are enabled to use a digital wallet. Your mobile carrier's message and data rates may apply.
4. Some accounts are not eligible for mobile deposit. Deposit limits and other restrictions apply.
5. Terms and conditions apply. See Wells Fargo’s Online Access Agreement at wellsfargo.com/online-banking/online-access-agreement/ for more information.6. Mobile numbers may need to be enrolled with Zelle before they can be used. Available to U.S.-based bank account holders only.
7. Sign-up may be required.

Android, Chrome, Google Pay, Google Pixel, Google Play, Wear OS by Google, and the Google Logo are trademarks of Google LLC.

FICO is a registered trademark of Fair Isaac Corporation in the United States and other countries.

Zelle and the Zelle related marks are wholly owned by Early Warning Services, LLC and are used herein under license.

Investment and Insurance Products are:
•\\tNot Insured by the FDIC or Any Federal Government Agency
•\\tNot a Deposit or Other Obligation of, or Guaranteed by, the Bank or Any Bank Affiliate
•\\tSubject to Investment Risks, Including Possible Loss of the Principal Amount Invested

DEPOSIT PRODUCTS OFFERED BY WELLS FARGO BANK, N.A. MEMBER FDIC.

Wells Fargo Private Bank provides products and services through Wells Fargo Bank, N.A. and its various affiliates and subsidiaries. Wells Fargo Bank, N.A. is a bank affiliate of Wells Fargo & Company.
Brokerage services are offered through Wells Fargo Advisors. Wells Fargo Advisors is a trade name used by Wells Fargo Clearing Services, LLC (WFCS) and Wells Fargo Advisors Financial Network, LLC, Members SIPC, separate registered broker-dealers and non-bank affiliates of Wells Fargo & Company. WellsTrade(R) and Intuitive Investor(R) accounts are available through WFCS.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7392383,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.wf.wellsfargomobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.wf.wellsfargomobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.wf.wellsfargomobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.wf.wellsfargomobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.wf.wellsfargomobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Police Scanner - Scanner Radio\",\n \"appId\": \"police.scanner.radio.broadcastify.citizen\",\n \"url\": \"http://gplayapi.srik.me/api/apps/police.scanner.radio.broadcastify.citizen\",\n \"icon\": \"https://play-lh.googleusercontent.com/KQiJhBOZ8fwz1JMWmEKFEpujWpMsRrbc0I5-F8q3rt0-kYEh8vKmAIxVN6ym39WZwRuA\",\n \"developer\": {\n \"devId\": \"Police Scanner, Scanner Radio App\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Police%20Scanner%2C%20Scanner%20Radio%20App\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Download Police Scanner and be the first to listen to the live audio of public safety, breaking news, major events and crime waves near you anytime.

Police Scanner Radio is the police scanner app of live audio streams including police scanners, public safety alerts, fire alarms, wildfires map and info, railroad radios, severe weather warnings, hurricane, marine, aircraft, emergency, news, and amateur radio. Police Scanner Radio always keeps listeners updated with the latest news when major events are happening, such as riots, protests, and other violent behaviors.

Join with listeners worldwide to discover the local live police scanner radio, fire alarm, wildfire map and updates, railroad radios, air traffic control, weather alert radios, hurricane scanner frequencies, marine radios, emergency alerts, and amateur radio station. Save your favorite scanners for quick access. Turn on notifications and keep updated. You're able to hear local news, emergency, events, weather warnings and public safety affairs near you all the time!

Browse the directory through thousands of scanner radio feeds from all over the world. Listen to top live audio feeds that have the most listeners including Chicago Police Zone 10 - Districts 10 and 11, Portland Police and Multnomah County Sheriff Dispatch, Cleveland Police Dispatch and Metro Housing Authority, Buchanan County Sheriff and EMS, St Joseph Police/Fire, Fresno City Police, Fire and EMS, Springfield Police and Fire, Greene County Sheriff and Fire.

Filter scanners by location. Don't just list all nearby local audio feeds in your county or other states located nearest you. Switch location, and discover what is happening around citizens in other states.

Turn on notifications, receive alerts anytime and know about the ongoing major events, public safety issues, local activity, breaking news, traffic, severe weather such as hurricane season, emergency happening right now.

- Search feeds through the directory via keywords and access your favorite scanner audio feeds.
- Mark your favorite live audio feeds with one click, save them and add them to your list of Favorites for quick access.
- See the popularity of each feed in the directory and find the feeds with the most listeners. Each feed lists the number of listeners and citizens who are listening to the same scanner feeds along with you.
- Browse nearby scanners. Location services permission is required.
- In-app police, fire, and emergency codes alphabet. On-hand books for listeners and citizens to understand what situation the police are referring to without any training.
- View the scanner map and find out the location of the live audio feed that you can access within a certain distance. The app will determine the location of the scanners located nearby via the network or GPS if you select nearby scanners.
- Listen to the scanner radio before bedtime and set a sleep timer to stop the station at a particular time.
- Real-time updated statistics for all live audio feeds from broadcastify.
- New audio stream feeds are being added every day.


Follow Us on Twitter: https://twitter.com/Police_Scanner_
Privacy policy: https://www.policescanner.us/policy.html
Terms of use: https://www.policescanner.us/termsofservice.html\",\n \"scoreText\": \"4.8\",\n \"score\": 4.813879,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=police.scanner.radio.broadcastify.citizen\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/police.scanner.radio.broadcastify.citizen/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/police.scanner.radio.broadcastify.citizen/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/police.scanner.radio.broadcastify.citizen/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/police.scanner.radio.broadcastify.citizen/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Microsoft Edge: Web Browser\",\n \"appId\": \"com.microsoft.emmx\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.microsoft.emmx\",\n \"icon\": \"https://play-lh.googleusercontent.com/VYvJqGnrQiKkbbyLyMeiL-GM3go4tBIA64uVEGQazLXD4p_M3F45kHyt42o_6d5VXA\",\n \"developer\": {\n \"devId\": \"Microsoft Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Microsoft%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Choose the web browser that puts you first. Microsoft Edge is the fast and secure browser that helps you protect your data and save time and money.

Browse the web anywhere with one seamless experience from your phone to your computer and other signed-in devices.

Microsoft Edge is a safe browser that gives you the tools to protect your privacy and security online. Microsoft Edge offers tracking prevention, AdBlock, InPrivate browsing, and InPrivate search. Use our secure Web Browser to help keep your browsing history safer and protect your privacy online.

Our secure and fast browser helps you organize the web in a way that cuts through the clutter. Microsoft Edge makes it easier to find, view, and manage your content on the go. Browse the internet, save your favorite items and keep things handy.

Microsoft Edge features:

Save Time & Money
• Microsoft Edge is the best browser for shopping, with built-in tools to help you save time and money.
• Browse the web and earn rewards while you search with Microsoft Bing and find shopping deals online and in nearby stores*
• Our coupons feature makes finding coupons faster and easier, helping you easily apply to your order while shopping on Microsoft Edge.

Private Browser: InPrivate browsing
• Privacy matters. InPrivate tabs won't store your private browser history (like cookies, history, autofill information, or temporary files)
• Microsoft Edge InPrivate feature protects your privacy online.
• Private Browser: Microsoft Edge InPrivate feature protects your privacy online.
• Enjoy a private browsing experience when you browse using InPrivate mode, your search history will not be saved to Microsoft Bing or associated back to your Microsoft account.

Secure Browser
• A safe web browser that lets you take control of your data.
• A secure browser that protects you and your family online.
• A safe browser that protects your sensitive information from trackers.
• Tracking prevention is enabled by default, so you don’t have to take any action to start having a more private browsing experience.

Web Browser with a more productive and secure browsing experience
• A private browser that securely syncs your favorites, passwords, Collections, and other saved data across your signed-in devices.
• Browse the web on the go with visual and voice search powered by Microsoft Bing.
• Browse the web with a redesigned navigation helps you get to your Favorites, Reading list, and more in fewer taps.
• With Immersive Reader users can remove distracting content from articles and blog posts for a more streamlined reading experience.

Ad Blocker:
• Secure browser with additional perks.
• AdBlock Plus helps\\u202fblock unwanted ads from your browsing experience
•\\u202fUse a secure browser and block ads by turning on AdBlock: Visit\\u202fSettings and click Content Blockers.
• Use our secure browser to remove distracting content

Organize & Collect: Organization on the go
• A more productive experience every time you browse.
• Collections makes it easier than ever to collect and organize content you find on the web across your signed-in devices.

Get Microsoft Edge, the fast and secure web browser that helps protect your data and save time and money when you browse.

*This shopping feature is currently only available in the United States.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6464376,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.microsoft.emmx\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.microsoft.emmx/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.microsoft.emmx/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.microsoft.emmx/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.microsoft.emmx/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"LinkedIn: Jobs & Business News\",\n \"appId\": \"com.linkedin.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.linkedin.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/kMofEFLjobZy_bCuaiDogzBcUT-dz3BBbOrIEjJ-hqOabjK8ieuevGe6wlTD15QzOqw\",\n \"developer\": {\n \"devId\": \"LinkedIn\",\n \"url\": \"http://gplayapi.srik.me/api/developers/LinkedIn\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome professionals! Find jobs on one of the largest social networking apps and online jobs market with LinkedIn, the most trusted network and business community. Build connections with industry leaders in your community, follow business news, get salary insights and discover a new career. Start your job search and find the workplace for you - whether in a welcoming office setting or from the comfort of your house when you work from home.

Find part-time, freelance, or full-time, local or remote jobs hiring, and everything in between – you can search for jobs easily with LinkedIn.

LinkedIn is one of the largest social networking apps. Grow your network of business contacts, get the latest industry news, stay up to date with companies, and follow industry thought leaders.

Get all the information you need, instantly. Find business insights on salary, company size and job responsibilities. Safely apply to any position with your resume or professional profile acting as your application in a few taps, straight through the app.

Take your first step by searching for jobs, developing business contacts, connecting with recruiters, and apply for your next job today with LinkedIn!

5 reasons why you’ll love the LinkedIn app:
- Job search & recruiting: Find positions suited to your skills, get salary insights and apply to a new workplace with your LinkedIn profile, CV, or resume when you fill out a job application
- Job finder: Research companies you’re interested in for local and remote job opportunities
- Business networking: Network, request referrals and stay up to date on your contacts- Business news: Get relevant news delivered to you via your Daily Rundown and write your own
- Social network: Create your profile, keep an up to date resume online and highlight your skillset

LinkedIn App Features:

JOB SEARCH APP & CAREER FINDER
• Find jobs & connections through the new connections you'll make through LinkedIn
• Find jobs & fill out applications through recruiters
• Jobs Hiring: Apply for jobs for every type of profession
• Find local jobs in your area or online jobs that give you flexibility & let you work from home
• Job salary details, job responsibilities & more are available
• Job App: Conduct multiple job searches easily and set up job alerts for any full-time or part-time job you might be interested in
• Careers can be found in every field

BUSINESS NEWS & INSIGHTS
• Business news from related industries to stay up to date
• See what connections are saying in posts & conversations
• Share articles with the LinkedIn community & business contacts

SOCIAL NETWORKING
• Leverage LinkedIn’s social networking tools to increase your connections & enhance your career
• Connect to the largest social networks for members from around the globe
• Business Networking: Import contacts for a quick & easy way to grow your network with integrated social apps feature

BUILD YOUR COMMUNITY
• Find your group or your community easily through LinkedIn
• Network on the go; connect with new contacts & easily find industry experts
• Follow companies, influencers & professionals
• Social networking for businesses: showcase your company or product to find new opportunities

RESUME & PROFILE
• Jobs Hiring: Apply for jobs using your LinkedIn profile to complete applications
• Easily submit your resume for any job
• Resume App: Build your profile and use it as a resume for job applications

Job seeker looking for new employment? Business networking? Business news and industry buzz? No matter where you're at or what you're looking for, LinkedIn makes job searching easy.

Want to make the most of LinkedIn? Upgrade to a Premium subscription for exclusive tools.

We ask for a few permissions when you use this app. Here’s why: http://linkd.in/1l0S8Y\",\n \"scoreText\": \"4.3\",\n \"score\": 4.31056,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.linkedin.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.linkedin.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.linkedin.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.linkedin.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.linkedin.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"VPN Proxy Master - Safer Vpn\",\n \"appId\": \"free.vpn.unblock.proxy.vpn.master.pro\",\n \"url\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.vpn.master.pro\",\n \"icon\": \"https://play-lh.googleusercontent.com/Mf5aPVgpFRga4CL9ySdAEK-bnSsBoxSTpg7NpJveH9yagrk-2yS3jR7YKuJwM10myg\",\n \"developer\": {\n \"devId\": \"LEMON CLOVE PTE. LIMITED\",\n \"url\": \"http://gplayapi.srik.me/api/developers/LEMON%20CLOVE%20PTE.%20LIMITED\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"VPN Proxy Master - super secure and unlimited free VPN! With VPN Proxy Master, you can go online anonymously, access the blocked websites and apps privately, accelerate mobile games and watch online videos smoothly! Best VPN for Netflix and any ohter streaming!

Everything you need is in VPN Proxy Master:
• Worldwide stable and fast VPN servers
• Access Netflix, YouTube, Hulu iPlayer cross-regionally
• Hide your ip address and location
• Stay secure connecting to Wi-Fi hotspot
• High-level encryption protocols: OpenVPN, IPsec
• Strict no-log policy
• Simple to use, one tap connect to VPN
• Unlimited free vpn service

Why VPN Proxy Master?
✔Unlimited free VPN proxy service
- Connect to free vpn proxy servers anytime and anywhere.
- One tap to set up the stable and fast connection without paying.
- Enjoy private internet access with best free vpn proxy master on your device!

✔Military-grade secure vpn protection for online security & privacy
- AES 128-bit encryption to secure your online activities, no one can track your browsing history.
- IPsec protocols and OpenVPN protocols (UDP / TCP) to hide your ip address under WiFi hotspot or any other network condition.
- Protect your 5 devices simultaneously, compatible with other device systems (iOS/ Mac/ Windows).

✔Go online freely with 6700+ fast vpn proxy servers
- Bypass blocking restrictions and firewalls to unblock websites, apps, iplayer, social network, streaming services.
- Watch videos, movies, TV shows, series and live broadcast on any video platform, enjoy your favorite show at home and abroad.
- Reduce game's latency and accelerate mobile games. Improve the gaming experience for PUBG, FreeFire, Mobile Legends, Roblox, etc.
- Smartly select the optimal free vpn server for you. Surf Tiktok, Twitter, YouTube anonaymously at fast speed.

✔Access to streaming via VPN Proxy Master
- VPN Proxy Master provides multiple vpn streaming servers. There are netflix us server, netflix uk server, hulu server, Disney+ server and so on. Connect to vpn streaming server, you can enjoy Netflix, Youtube, Spotify, Hulu, Peacock TV or any streaming service wherever you are.


What can you do with VPN Proxy Master?
- Set up the safest protection for online security and privacy to enjoy a secure, private and anonymous browsing experience even under public WiFi hotspot.
- Bypass regional restrictions and firewalls with best free vpn proxy. Set up unlimited access to blocked videos, streaming services, games, social network, apps and websites no matter where you are.


What is VPN? What does a vpn do?
A VPN is the acronym for Virtual Private Network. This technology is used for ciphering the internet connection. It helps to protect your private information and transmit it confidentially between two different locations so you will get a private internet access.


Download VPN Proxy Master - the trusted and unlimited free VPN proxy! Start a secure and private browsing with this free online vpn! Enjoy the best free vpn service for android.

User Terms:
By downloading and using this product, you acknowledge and agree to the end user license agreement and Privacy Statement at: https://vpnproxymaster.com/static/privacy_policy.html
We value every user’s feedback please contact us whenever you need: vpnproxymaster-support@inconnecting.com\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7689543,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=free.vpn.unblock.proxy.vpn.master.pro\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.vpn.master.pro/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.vpn.master.pro/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.vpn.master.pro/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/free.vpn.unblock.proxy.vpn.master.pro/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Fly Delta\",\n \"appId\": \"com.delta.mobile.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.delta.mobile.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/QhkICgvXHugQCRG67ncdgJLcnAsmTCQ4q6m_RJ-0O2lVoz--DzqJP7OoBkDAvq5D8w\",\n \"developer\": {\n \"devId\": \"Delta Air Lines, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Delta%20Air%20Lines%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to Fly Delta, Delta’s award-winning Android app that makes travel easier than ever before.

Planning Your Trip
• Shop and book domestic and international flights
• Track and pay for upgrades using your SkyMiles®
• Manage travel preferences and payment methods
• Save a companion to your profile
• Need Help? Chat with one of our agents via Live Chat messaging
Use at the Airport
• ”Today” has everything you need for your day of travel
• Check in to your flight and receive your digital boarding pass
• ”Notifications” stores your flight updates and gate change notifications
• Use Airport Maps to navigate through the airport
• View your place on the upgrade/standby list
• Scan your passport during check-in
• View, change or upgrade your seat
• Reserve Preferred Seats in the bulkhead or aisle
• Access boarding pass offline
• Pay for and track your checked bags
• Add Trip Extras like a Wi-Fi pass or Mileage Booster
• Monitor flight status and read details about our fleet and partners
• Rebook canceled flights or missed connections
During & After Your Flight
• Get real-time bag tracking alerts
• Map your flight en route
• Find Delta Sky Club® info
• Store and use mobile drink vouchers


When downloading the Fly Delta app, you agree that your personal data will be processed in accordance with Delta’s Privacy Policy which can be accessed via the link below or on our website at delta.com.\",\n \"scoreText\": \"2.5\",\n \"score\": 2.458498,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.delta.mobile.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.delta.mobile.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.delta.mobile.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.delta.mobile.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.delta.mobile.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"CamScanner - PDF Scanner App\",\n \"appId\": \"com.intsig.camscanner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.intsig.camscanner\",\n \"icon\": \"https://play-lh.googleusercontent.com/_E2ivkL62vx7FpVmFUlrQbFGvPSZuwOzTWIKGzhMOJjW4BX7mX5b5w0H-kpgCVTzqQ\",\n \"developer\": {\n \"devId\": \"CamSoft Information\",\n \"url\": \"http://gplayapi.srik.me/api/developers/CamSoft%20Information\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Looking for an efficient scanner app?
Try CamScanner! CamScanner is an all-in-one scanner app. It turns your mobile device into a powerful portable scanner that recognizes text automatically (OCR) and improves your productivity to save your time. Download this scanner app to instantly scan, save, and share any documents in PDF, JPG, Word, or TXT formats.

Would you like to keep your entire office in your pocket and increase your productivity at work?
Use the CamScanner scanner app to handle your paperwork with ease. Say goodbye to huge and heavy copy machines and get this ultra-fast scanner app now.

* CamScanner has over 500 million installs across over 200 countries and regions worldwide.
* Over 500,000 new registrations per day

FEATURES

* Quickly Digitize Documents
The CamScanner scanner app uses the camera on your mobile device to scan and digitize all kinds of paper documents: receipts, notes, invoices, whiteboard discussions, business cards, certificates, etc.

* Optimize Scan Quality
Smart cropping and auto enhancing ensure the text and graphics in your scans are clear and sharp with premium colors and resolutions.

* Extract Text
The optical character recognition (OCR) feature of this scanner app enables you to recognize text in images or PDFs. You can extract the text for later searching, editing, or sharing.

* Share PDF/JPEG Files
With this PDF scanner, you can easily share documents in PDF or JPEG format with friends in multiple ways: share with social media, send attachments or download links through email, etc.

* Wireless Printing & Remote Fax
Instantly and wirelessly print out any documents in the CamScanner scanner app with a nearby printer without installing any applications or drivers. You can also select documents from the app and remotely fax them to over 30 countries and regions.

* Advanced Document Editing
Make annotations on documents using a full set of editing tools in this PDF scanner. You can also add a customized watermark to mark your own documents.

* Quick Search
Have trouble finding the documents you want? With the CamScanner scanner app, you can tag your documents and find them with ease. Besides, the OCR feature enables you to search for images based on their content. With this PDF scanner, you can quickly find the document you want.

* Secure Important Documents
If you want to protect confidential content, you can set a password for viewing. You can also set a password to the document download link to ensure better security.

* Sync Across Platforms
Sign up to access documents on all your devices. You can sign in on your smartphone, tablet, or computer (visit www.camscanner.com) to sync your documents. In this way, you can view, edit and share any document with the CamScanner scanner app on the go.

UNLIMITED ACCESS MEMBERSHIP SUBSCRIPTION
* You can subscribe to get unlimited access to all features of the scanner app.
* Subscriptions are billed weekly, monthly, quarterly, or annually at the rate based on the subscription plan.
* Payment will be charged to Google Play Store at confirmation of purchase.
* Subscription renews automatically unless auto-renew is turned off at least 24 hours before the end of the current period.
* Account will be charged for renewal within 24 hours prior to the end of the current period. The cost depends on the selected plan.
* Subscriptions may be managed by the user, and auto-renewal may be turned off by going to the user's Account Settings after purchase.
* Any unused portion of the free trial will be forfeited when the user purchases a subscription.

We'd love to hear your feedback: asupport@intsig.com
Follow us on Twitter: @CamScanner
Like us on Facebook: CamScanner
Follow us on Google+: CamScanner\",\n \"scoreText\": \"4.8\",\n \"score\": 4.843718,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.intsig.camscanner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.intsig.camscanner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.intsig.camscanner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.intsig.camscanner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.intsig.camscanner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Amazon Fire TV\",\n \"appId\": \"com.amazon.storm.lightning.client.aosp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.amazon.storm.lightning.client.aosp\",\n \"icon\": \"https://play-lh.googleusercontent.com/qqqiN28cwhj-N3PUAw5x0AqzgVRt7Gy_rH7ftO7rhSqwyv44B3oFtm4m74NeR104gA\",\n \"developer\": {\n \"devId\": \"Amazon Mobile LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Amazon%20Mobile%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The free Amazon Fire TV mobile app for iOS/Android/Fire OS enhances your Fire TV experience with simple navigation, a keyboard for easy text entry (no more hunting and pecking), and quick access to your favorite apps and games.

It features:

Voice search (not available in all countries)
Simple navigation
Playback controls
Keyboard for simple text entry
Quick access to your apps and games
Fire TV Recast support

Compatibility:

• Multicast-enabled router required
• Designed for simple navigation and playback control of Fire TV streaming media players
• For gameplay, use the remote included with your Fire TV or the optional Amazon Fire TV Game Controller\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9633,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.amazon.storm.lightning.client.aosp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.amazon.storm.lightning.client.aosp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.amazon.storm.lightning.client.aosp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.amazon.storm.lightning.client.aosp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.amazon.storm.lightning.client.aosp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"T-Mobile Internet\",\n \"appId\": \"com.tmobile.homeisp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.tmobile.homeisp\",\n \"icon\": \"https://play-lh.googleusercontent.com/Pn80btq-PoX9EiTgAvYPPE7SI4kxeLd142NLHlklbLUL3YxeVALwZPPqCsLxDwPZwl8\",\n \"developer\": {\n \"devId\": \"T-Mobile USA\",\n \"url\": \"http://gplayapi.srik.me/api/developers/T-Mobile%20USA\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Set up your T-Mobile Internet service in just 15 minutes with the T-Mobile Internet app.
Once you’re up and running, the app is all you need to take control of your internet experience.
• Find the strongest signal
Use the app’s interactive placement assistant to find the sweet spot for your T-Mobile 5G Gateway.
• Manage your connected devices
Monitor and remove unrecognized devices for even more control of your network.
• Update your password
Change the name and password of your network with ease for more personalization and control.
• Schedule screen-time
Set screen-time limits for the non-stop scrollers and bedtime rule breakers in your family.

Getting started is easy, just download the T-Mobile Internet app today and enjoy high-speed internet on your terms.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.135524,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.tmobile.homeisp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.tmobile.homeisp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.tmobile.homeisp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.tmobile.homeisp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.tmobile.homeisp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"BURGER KING® App\",\n \"appId\": \"com.emn8.mobilem8.nativeapp.bk\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.emn8.mobilem8.nativeapp.bk\",\n \"icon\": \"https://play-lh.googleusercontent.com/4nS614DkX7HHs3s8lSe2Yl9uz7ENvYjXCcGz7PY5xydtOD0OxlwUUVv7OfmPn7TgblU\",\n \"developer\": {\n \"devId\": \"Burger King, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Burger%20King%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get secret deals and exclusive mobile coupons with the official BURGER KING® app and save like a king! Explore our menu and find your nearest BK® restaurant anytime, anywhere. And in most locations, you can even order ahead.
Specific features include:
- Mobile Coupons: Get VIP access to the hottest mobile-only coupons and secret deals right from your phone.
- Mobile Ordering: For select locations, order with the app and skip the line to enjoy your meal even faster.
- Find Your BK®: Locate your nearest BURGER KING® restaurant and never leave those flame-grilled cravings unfulfilled.
- Menu: Explore your BK® favorites and discover our hottest new menu additions. Plus, you can browse item descriptions and nutritional information at any time.\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9407353,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.emn8.mobilem8.nativeapp.bk\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.emn8.mobilem8.nativeapp.bk/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.emn8.mobilem8.nativeapp.bk/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.emn8.mobilem8.nativeapp.bk/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.emn8.mobilem8.nativeapp.bk/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"TickTock-TikTok Live Wallpaper\",\n \"appId\": \"com.zhiliao.musically.livewallpaper\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.zhiliao.musically.livewallpaper\",\n \"icon\": \"https://play-lh.googleusercontent.com/H_TXtCT2J6itwj_hv9VPLvTCv4E8Vxkz-LisZGKZ2IhculiFIincvOlubxYavj5zkRw\",\n \"developer\": {\n \"devId\": \"TikTok Pte. Ltd.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/TikTok%20Pte.%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"TikTok Wall Picture is the BEST & FREE Video Wallpaper Maker for TikTokers. All types of VIDEOS ON TIKTOK, from Dance, Comedy, Food, Sports, DIY, Animals, to Funny Memes and everything in between, can be easily converted to LIVE WALLPAPERS in seconds! We hope to bring you joy every time you unlock your phone😍

Convert Video to Live Wallpaper in 5 Easy Steps
✔ Install TikTok Wall Picture
✔ Open TikTok and find the video you like
✔ Save VIDEO as LIVE PHOTO
✔ Set the LIVE PHOTO as your Lock Screen & Home Screen
✔ Enjoy your personalized screen!

If You Saved More Than One Live Photo on TikTok, You Can.....
✔ Open TikTok Wall Picture
✔ Go set wall pictures
✔ Choose one LIVE PHOTO from the album
✔ Set as wallpaper

Please note: If you delete TikTok Wall Picture APP, the live wallpaper will be removed as well

* Any feedback? Contact us at feedback@tiktok.com or tweet us @tiktok\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7376566,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.zhiliao.musically.livewallpaper\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.zhiliao.musically.livewallpaper/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.zhiliao.musically.livewallpaper/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.zhiliao.musically.livewallpaper/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.zhiliao.musically.livewallpaper/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"RAR\",\n \"appId\": \"com.rarlab.rar\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.rarlab.rar\",\n \"icon\": \"https://play-lh.googleusercontent.com/K4ZQnK2FafXDnaAu5TPWWEDVR-ZhR9AiriJ-nUuMUy-9LHafa8VwJhY_UJLRPJzGbmKh\",\n \"developer\": {\n \"devId\": \"RARLAB (published by win.rar GmbH)\",\n \"url\": \"http://gplayapi.srik.me/api/developers/RARLAB%20(published%20by%20win.rar%20GmbH)\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"RARLAB's RAR is an all-in-one, original, free, simple, easy and quick compression program, archiver, backup tool, extractor and even a basic file manager.

RAR can create RAR and ZIP and unpack RAR, ZIP, TAR, GZ, BZ2, XZ, 7z, ISO, ARJ archives. List of functions include repair command for damaged ZIP and RAR files, benchmark function compatible with RARLAB's WinRAR benchmark, recovery record, usual and recovery volumes, encryption, solid archives, utilizing multiple CPU cores to compress data.

Additionally to standard ZIP files, unzip function supports ZIP and ZIPX with BZIP2, LZMA, PPMd and XZ compression also as password protected ZIP. Unrar command is available for all versions of RAR archives including the latest RAR5, password protected and multipart files.

File management functions include copying, deleting, moving and renaming files and folders, creating new folders and installing applications from APK packages.

If you wish to help us translating RAR to your language, please download RAR for Android language files in "RAR extras" section of www.rarlab.com and follow instructions in readme.txt. Thank you.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3425827,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.rarlab.rar\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.rarlab.rar/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.rarlab.rar/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.rarlab.rar/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.rarlab.rar/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"SONIC Drive-In - Order Online - Delivery or Pickup\",\n \"appId\": \"com.sonic.sonicdrivein\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.sonic.sonicdrivein\",\n \"icon\": \"https://play-lh.googleusercontent.com/6MRQeQp9b93izVa-boIQSKzhpvvrkuHYP9nSF_gYe_Mqle_4Yb-PnTaZqaPc3JP2I7vv\",\n \"developer\": {\n \"devId\": \"Sonic Industries Services, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Sonic%20Industries%20Services%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The SONIC Drive-In app lets you order and pay with your phone, get rewards, find out about new items and offers, browse the menu, check nutritional information and more!

• Order Ahead and be first in line every time! Plus, get Happy Hour Any Time (1/2 Price Drinks & Slushes) when you order ahead through the app. Limited time only. See app for details.
• Get exclusive rewards you can redeem when you use Order Ahead.
• Find the closest SONIC Drive-In locations in your area and see their hours.
• Browse the menu. Check out what’s new and view nutritional info for each item.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6874623,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.sonic.sonicdrivein\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.sonic.sonicdrivein/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.sonic.sonicdrivein/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.sonic.sonicdrivein/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.sonic.sonicdrivein/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Fabulous Files - Clean&Booster\",\n \"appId\": \"com.fabulous.files\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.fabulous.files\",\n \"icon\": \"https://play-lh.googleusercontent.com/yRdDIHlvMLPJjo2EJcJZN2e3qPpFFOmVn7ZMQpRqDjrqL5QFV5pIK0gONxJQKE9qFSw\",\n \"developer\": {\n \"devId\": \"Mobnet Team\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Mobnet%20Team\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Fabulous Files, a lite BUT powerful file manager with desktop-grade features, helps you handle ALL your files efficiently in one tap without even thinking. With Fabulous Files, you can easily manage files on local device, and free up space to boost phone performance. Besides, you can easily know memory usage like apps & files at a glance and manage them in 10 sec.

📂Manage Files All in One
- Browse, Create, Multi-Select folders and files
- Remove files you don't need quickly in 5 sec

⚡️Quickly Free up Storage
- Scan large files that take up valuable storage space
- With one tap, free up more space and speed up your device

Key Features:
★ File Cleaner: Make your phone clean is our top priority. We have several features to help you improve your device. No more bust and freeze.
✔ Clean cache trash – clear system cache and apps’ cache junk files to reclaim the space.
✔ Clean apps' installation package – clean the installation APKs of apps
✔ Clean uninstall remains-clean residual junk file from deleted apps.
★ CPU Cooler Cooling the CPU heat by detect and close apps that are likely to cause temperature rise.
★ Speed Booster No more auto-start application in the background. Phone Master boosts processing speed, clean unnecessary apps that running in background and save battery.
★ Battery Saver The battery saver can analyze battery usage and monitor all apps that drain power while not in use. Hibernating the apps to stop battery draining and promote battery life.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.304762,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.fabulous.files\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.fabulous.files/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.fabulous.files/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.fabulous.files/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.fabulous.files/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Experian\",\n \"appId\": \"com.experian.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.experian.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/hB6LHJAf2JtQGKeOBlUbxsxH0ugzxIMdty8PbLj6D9dG9Bz2zc0uMaLKhM0yMFCghIs\",\n \"developer\": {\n \"devId\": \"Experian\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Experian\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get your Experian credit report and FICO® Score*—all free, no credit card needed. Instantly raise your FICO Score with Experian Boost™†, get notified about changes to your credit with monitoring and alerts, and explore personalized credit card, loan and auto insurance options to find the best fit for you.

WHAT’S INSIDE

• Experian credit report and free FICO® Score*
Check your FICO Score and credit report in the app anytime, anywhere. It doesn’t hurt your credit, and no credit card is required. Sign in for automatic updates every 30 days.
Plus, get to know your credit in a whole new way—see what factors are helping or hurting your FICO Score, track changes to your credit over time, and learn actions to take for better credit.

• Experian Boost
Instantly increase your FICO® Score by getting credit for bills you already pay, like your cell phone, utilities and streaming services.

• Credit monitoring and alerts
Always be in the know with credit monitoring and alerts. Turn on push notifications to find out if your FICO® Score changes, new accounts are opened in your name or new inquiries appear on your credit report.

• Marketplace‡
Choose the credit card, loan or auto insurance that’s right for you. Compare personalized options matched to your unique credit profile and FICO® Score.

• Experian CreditLock§
Protect yourself against identity theft by locking your Experian credit file. We’ll send you real-time alerts if someone tries to apply for credit in your name while your file is locked.

ABOUT EXPERIAN®
Experian is the first company and credit bureau to offer online credit reporting services in the U.S. We empower consumers to manage and improve their financial status, while helping protect against fraud and identity theft.

Privacy Policy: https://usa.experian.com/login/#/publicPrivacyPolicy
Terms & Conditions: https://usa.experian.com/login/#/publicTermsAndConditionsFree

*Credit score calculated based on FICO® Score 8 model. Your lender or insurer may use a different FICO Score than FICO Score 8 or another type of credit score altogether. To learn more: https://www.experian.com
†Results may vary. Not all payments are boost-eligible. Some users may not receive an improved score or approval odds. Not all lenders use Experian credit files, and not all lenders use scores impacted by Experian Boost. To learn more: https://www.experian.com
‡Based on FICO® Score 8 model. Approval is not guaranteed. Some may not see savings from improved interest rates. Offers are not available in all states. To learn more: https://www.experian.com

§Experian CreditLock is a separate service from Security Freeze: https://www.experian.com/freeze/center.html. To learn more about the differences between CreditLock and Security Freeze, please visit https://www.experian.com/blogs/ask-experian/whats-the-difference-between-freezing-or-locking-my-credit/

© 2022 Experian. All rights reserved. Experian. Experian and the Experian trademarks used herein are trademarks or registered trademarks of Experian and its affiliates. The use of any other trade name, copyright, or trademark is for identification and reference purposes only and does not imply any association with the copyright or trademark holder of their product or brand. Other product and company names mentioned herein are the property of their respective owners. Licenses and Disclosures.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.71495,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.experian.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.experian.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.experian.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.experian.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.experian.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Brave Private Web Browser\",\n \"appId\": \"com.brave.browser\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.brave.browser\",\n \"icon\": \"https://play-lh.googleusercontent.com/I1foi2Irrv7tW9ee9kgP0wfnMzaVb6y17muvpKsFcUrKYsDlmCyWuTRh5m93KJZ24dY\",\n \"developer\": {\n \"devId\": \"Brave Software\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Brave%20Software\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Privately browse the internet without being tracked by ads. With over 50 million users, Brave Browser is a lightning fast, secure and private browser with adblock and pop-up blocker. Now with Firewall + VPN, Brave Search, and night mode!

App Features
* NEW: Firewall + VPN
* NEW: Brave Search. Private, independent search engine.
* NEW: Night Mode. Easily view and read in low light.
* Free incognito private internet browser
* Free built-in Ad Blocker
* Private internet browser with pop up blocker (blocks ads)
* Safe incognito private browsing
* Saves data and battery
* Invasive ad-free web browser
* Sync Bookmarks securely
* Free tracking protection web browser
* Https Everywhere (for security)
* Script Blocker
* 3rd party cookie blocker
* Private bookmarks
* Browsing history
* Recent and private tabs

🔎 NEW: Brave Search
Brave Search is the world’s most complete, independent, private search engine. It doesn’t track you, your searches, or clicks.

🙈 Private Browsing
Enjoy fast, secure, private browsing. Get free adblocker to block ads, anonymous browsing history, personalized private search, and private tabs. Browse the internet without saving your history.

🚀 Browse Faster
Brave is a fast web browser! Brave reduces page loading times, improves web browser performance and blocks ads infected with malware.

Privacy Protection
Be protected with leading privacy and security features such as HTTPS Everywhere (encrypted data traffic), script blocking, cookie blocking, and private incognito tabs. All other browsers fall short of the level of the privacy and security protection that Brave provides.

Brave Rewards
With your old web browser, you paid to browse the internet by viewing ads. Now, Brave welcomes you to the new internet. One where your time is valued, your personal data is kept private, and you actually get paid for your attention.

About Brave
Our mission is to save the web by making a safe, fast, and private browser while growing ad revenue for content creators. Brave aims to transform the online ad ecosystem with micropayments and a new revenue-sharing solution to give users and publishers a better deal, where secure, fast browsing is the path to a brighter future for an open web.

To learn more about Brave Private Web Browser, which has a free built-in 3rd party Ad Block and pop up blocker and security protection, please go to www.brave.com.

Questions/support?
Contact us at http://brave.com/msupport. We love hearing from you.

Terms of Use: https://brave.com/terms-of-use/
Privacy Policy: https://brave.com/privacy/

Are you enjoying our fast, private internet browser? Please leave us a 5 star review!

Download the best private web browser app for Android today! Securely browse the internet with confidence.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7002397,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.brave.browser\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.brave.browser/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.brave.browser/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.brave.browser/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.brave.browser/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Face Dance: AI Photo Animator\",\n \"appId\": \"com.codewaystudios.facedance\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.codewaystudios.facedance\",\n \"icon\": \"https://play-lh.googleusercontent.com/619AyuvgMn7FL1FOlu84JsZeqxuF7Aosy88L0yBDAdAbTsegCmZ6aONoR3ymQNcoWUo\",\n \"developer\": {\n \"devId\": \"Codeway Dijital\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Codeway%20Dijital\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Take a selfie, lip sync, and make it dance with the AI Photo Animator. Animate photos with hundreds of face animations to choose from. Try FaceDance today for free!

Don't limit yourself with selfies! Here's how to level up the fun with FaceDance:
- Say your baby's first words
- Make your boss dance to a hilarious song
- Let your pet speak up
- Make your boyfriend sing a love song

【 MAKE YOUR PHOTOS SING 】

Just upload a photo, pick your favorite song, and make your photo sing to it!

【 ANIMATE OLD PHOTOS 】

Animate old photos with the Nostalgia mode. Bring black & white photos back to life.

【 CREATE A FACE DANCE OF YOUR OWN 】

Show off your Face Dance skills! Record yourself while lip-syncing to your favorite sound, and let other users perform your moves with their own selfies!

【 TURN FRIENDS INTO MEMES 】

Upload a picture of a friend and make it...
—> SING your favorite song
—> DANCE to trending beats (and yes, TikTok challenges too!)
—> ACT as your favorite movie character

【 SHARE VIDEOS WITH ONE TAP 】

FaceDance gives you a perfectly optimized video that's ready to share & go viral on TikTok, Instagram, or your favorite chat group!

【 KEEP UP WITH TRENDS & GO VIRAL! 】

We release new dances every day; check in once a day to try new animations on your favorite selfies!

***Copyright***
Codeway attaches great importance to confidentiality, intellectual property rights including copyrights and personal data; takes care to be transparent about them.

If you believe in good faith that materials transmitted or created through Facedance App infringe your copyright, your personal right or privacy; you may send us a notice requesting that we remove the Material or block access to it by filling out the Rights Policy Form. For more information, please kindly refer to the Rights Policy Form within the app.

**Privacy**
Your privacy is our concern. We won't save any of your pictures or animated videos. Check out our privacy policy here: codeway.co/facedance-privacy

**Terms of Use**
Please check our terms of use here: codeway.co/facedance-terms

**Contact**
If you have any questions, or if you'd like to recommend a new song, email us at facedance@codeway.co

Payment & Subscription Terms:
Choose between the following subscription options for unlimited access to all features:
1. Weekly Subscription
2. Annual Subscription

FREE TRIAL FOR 3 DAYS - OFFERING UNLIMITED AD-FREE PHOTO ANIMATION FOR A LIMITED TIME

**You may cancel your subscription at any time**
FaceDance's free trial allows you unlimited ad-free access to all features for three days. Your account will be automatically charged for renewal, based on the annual subscription plan, within 24 hours before the end of the three-day free trial period.

You can cancel auto-renewal at any time, given that the cancellation is at least 24 hours before the end of the current period. Any unused portion of a free trial period will be forfeited when purchasing an auto-renewing subscription.

**Manage your subscription directly from your iPhone**
You can cancel the auto-renewal from the Account Settings:
- Open the Settings app
- Tap your name
- Tap Subscriptions
- Tap the subscription that you want to manage

Terms & Conditions: codeway.co/facedance-terms
Privacy Policy & EULA: codeway.co/facedance-privacy\",\n \"scoreText\": \"4.1\",\n \"score\": 4.117347,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.codewaystudios.facedance\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.codewaystudios.facedance/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.codewaystudios.facedance/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.codewaystudios.facedance/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.codewaystudios.facedance/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"AllTrails: Hike, Bike & Run\",\n \"appId\": \"com.alltrails.alltrails\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.alltrails.alltrails\",\n \"icon\": \"https://play-lh.googleusercontent.com/Y8Fe2rRuRsUXx9JIyQ9xyYX9pwfFT0_tfudqgO8f_yvZJQICmN-rLIMPU6_IZTqNYg\",\n \"developer\": {\n \"devId\": \"AllTrails, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/AllTrails%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Explore the outdoors with AllTrails! Discover nature with hiking, biking, backpacking and running trails around the world. Log your hike, walk, run or mountain bike ride with our GPS activity tracker. Looking for a good spot for camping or backpacking? The AllTrails community is a great place to get inspired.

View trail maps to find that kid friendly or dog friendly trails that you’ve been searching for. Take the mountain biking, horseback riding, or backpacking trip you’ve always wanted to do. Explore national parks or discover new running maps, biking and hiking trails in your area. Download offline maps, get to the trailhead and start your outdoor adventure.

Whether it’s a hike or a cycling ride you’re after, AllTrails inspires you with trail maps for your next outdoor adventure.

Explore 300,000+ Hiking Trails and Mountain Bike Routes
• AllTrails has the largest collection of GPS trail maps, topo maps, and downloadable offline maps for trails in national parks and your own neighborhood
• Discover the outdoors with new mountain biking, running or hiking trails, with reviews and ratings from a community of hikers, cyclists and trail runners like you
• Find a hike, mountain bike ride, or trail run that’s perfect for your fitness and experience level
• Filter by dog friendly, kid friendly, and wheelchair friendly walking trails

Record Your Outdoor Adventures with the AllTrails GPS Activity Tracker
• Turn your phone into a GPS activity tracker and follow your trail so you don’t get lost while exploring the outdoors
• View your hiking, running and cycling stats at a glance
• Share your latest backpacking, hiking, running and mountain biking activities with friends on Facebook, Instagram, and WhatsApp

Save Your Favorite Trails
• Explore all the hiking and cycling trails on your bucket list and add new ones to check out
• Easily save your favorite trails to run, hike, camp or bike again and again
• Follow the hikers, cyclists and runners that inspire you

Get GPS Driving Directions to the Trailhead
• With just one tap, get GPS driving directions so you can get to the trailhead in no time

Hike across the most beautiful national parks and nature preserves on the planet. Whatever your fitness or experience level, AllTrails will help you explore new trails with confidence.

---

Get More with AllTrails Pro!
• Download offline maps - track your exact GPS location as you navigate the trail, even when you don’t have a signal
• Never miss a turn with off-route notifications
• Stay safe with Lifeline - assign safety contacts who know your plan and can track your progress
• Know what to expect with real-time map overlays including air quality, satellite weather, pollen, and light pollution
• Always have a backup - design and print stunning custom topo maps
• Experience AllTrails ad-free - remove the distraction of ads and focus on the journey
• 1% for the Planet - feel good knowing that part of your subscription will be going directly to helping the environment

AllTrails Pro is available as an annual subscription. You can subscribe and pay through your Google Play account. Your annual subscription will automatically renew unless cancelled at least 24 hours before the end of the current period. Auto-renew can be turned off anytime by going to your My Subscriptions page on Google Wallet. Access more AllTrails Pro features on our website: https://www.alltrails.com

---

COMPATIBILITY
Sign up required to favorite trails, record your activity, or follow users

SUPPORT
We love hearing from our users! Email us here: android-support@alltrails.com

LEGAL
Terms of Use: https://www.alltrails.com/terms\",\n \"scoreText\": \"4.8\",\n \"score\": 4.813673,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.alltrails.alltrails\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.alltrails.alltrails/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.alltrails.alltrails/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.alltrails.alltrails/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.alltrails.alltrails/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Tapchamps\",\n \"appId\": \"com.tapchamps.tap\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.tapchamps.tap\",\n \"icon\": \"https://play-lh.googleusercontent.com/umLbLFYDTsr3FPk-FLQwl31qAeL-cIC65o1mNiKg8ryNQM34vUy7gODc9idZiuS0_DI\",\n \"developer\": {\n \"devId\": \"TAPCHAMP\",\n \"url\": \"http://gplayapi.srik.me/api/developers/TAPCHAMP\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"PLAY and WIN with TapChamps! Play the games you love and win prizes.

Win gift cards and other prizes just by doing something you already do everyday! Rewards card of your choice? Check. Your favorite games? Check. TapChamps is the rewards app that has everything you need to take your gaming experience to the next level.

💎TapChamps is playable by all mobile game enthusiasts alike! Go from just playing games to paying games with TapChamps – the rewards app that awards you to play the games you already love and introduces you to new ones – all in one app! So what are you waiting for? Find fun games to play and earn rewards from anywhere!

🎮 Play and Win! With a growing list of some of the most amazing games around, you can play so many of your favorite casual games like Yahtzee, Wordscapes, Cooking Madness, Solitaire, Bingo, Word Connect and more. We make it easy for you to play your favorite games while you earn rewards!

🎁 Rewards! Play games and redeem prizes like a VISA gift card, Amazon rewards and so much more. With TapChamps, the more you play the more game rewards you can collect!

🏆 Rewards earning is more fun with a community! With the TapChamps rewards app, you invite your friends and the gaming community to play and earn rewards, too!

The TapChamps game rewards app is simple to use, so you can start playing the games you love and earn rewards anytime, anywhere:

1. Download our rewards app and start playing games new or familiar
2. Accumulate rewards points instantly when you start playing
3. Redeem your points for VISA gift cards and other amazing rewards and prizes or get paid directly through PayPal.
4. That’s it – No forms or additional tasks are required!

TAPCHAMPS FEATURES

🎮 GAMES & TOURNAMENTS 🎮
● Play and win rewards and tournaments with friends and the online gaming community
● If you love casual games you’ll love our vast library of games from all types of genres
● Play the games you’re playing like Solitaire, Yahtzee, Dice Dreams, Cooking Madness, Woodoku, Brain Test and so much more!

🥇 REWARDS 🥇
● Win rewards right through the TapChamps rewards app
● Earn gift cards from Paypal, Amazon, or VISA gift cards and more - there are so many prizes for you to choose from!
● Play and win even bigger prizes in TapChamps Tournaments!

💳 TapChamps EGIFT CARDS & REWARDS 💳
● Amazon Rewards
● VISA Gift Card
● PayPal Prepaid Gift Card
● Blizzard Gift Card
● eBay Gift Card
● Play Store Gift Card
● Visa Gift Card
● PS Store Gift Card
● Nintendo Gift Card
● Gamestop Gift Card
● Xbox Gift Card

Play and win with the rewards app, TapChamps. Download today to start playing games with rewards!

TapChamps rewarded play is not endorsed, licensed or sponsored by Amazon Visa, Play store, Nintendo or any other gift card providers.\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9568965,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.tapchamps.tap\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.tapchamps.tap/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.tapchamps.tap/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.tapchamps.tap/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.tapchamps.tap/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Bible Offline-KJV Holy Bible\",\n \"appId\": \"com.offline.bible\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.offline.bible\",\n \"icon\": \"https://play-lh.googleusercontent.com/2vbob1Knz2piGnjL1hgY1P4xdsO092dYPHGLCLUql2gf9b7OnQbtkM7wNN_u0LQqF3eU\",\n \"developer\": {\n \"devId\": \"Bíblia Offline\",\n \"url\": \"http://gplayapi.srik.me/api/developers/B%C3%ADblia%20Offline\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"-We offer a unique offline Bible study tool that you can learn and share the Holy Bible on your own or with your trusted bible study group. Compared to the traditional Holy Bible, our e-bible allows you to access Holy Bible easily on your digital devices without carrying the paper books around, listen to audio Bible verses while driving and running, or take challenges of biblical quizzes and crosswords.

-Our KJV Bible App is a Fast, light, offline bible for your daily study. To customize your Bible App experience, It allows you to quickly locate Holy Bible verses with a simple tap and create your own Holy Bible verse highlights, bookmarks, verse images, and notes. Explore the Holy Bible with your closest friends. Grow together and share what you discover from Holy Bible with each other!

-Please join our virtual bible study group to explore Holy Bible with more than 10 million people who have downloaded and recommended our KJV Holy Bible App worldwide. Get yourself closer to God and listen to God's word at any time by using our pocket Holy Bible App.

----Feature ----

BEST AUDIO FOR BIBLE PLAN

-Various Bible verse audio of King James Version KJV.
-Classic Bible plan audio that you can listen to God's word.
-Listen to your favorite Bible verses whenever you are unable to read while driving, running, and strolling.
-Let God's word put you to sleep at night.

THE BEST BIBLE STUDY TOOL

-Access to Holy Bible anytime & anywhere just by swiping the screen.
-Offline Bibles: Read and study Bible verse WITHOUT internet access.
-Search the Bible with keywords.
-Quickly locate verse.
-Share Bible verses with your friends anytime & anywhere with ease.
-Highlight verses you like for future Bible study.
-Note your inspirations.
-Have fun with our selected Bible quizzes and crosswords challenges.

CUSTOMIZE YOUR BIBLE

-Font adjustment: choose any font size and line spacings you want in order to get the most suitable Bible reading experiences.
-Night mode: change to night mode when you read the Bible at night.
-Share Bible verses with your friends via social platforms with ease.
-Verses Image: Customize fantastic Bible verse images.

READ BIBLE DAILY

-Connect to God's word with our one-of-a-kind pocket Holy Bible App.
-Fantastic Bible reading experience.
-Use this Bible for your daily devotional study and Christian Bible reading.
-Read with your religious community and share your thoughts together.

CONNECT WITH US

-Five-star us if you like our app. Please leave us reviews if you have any thoughts or suggestions!
-Check out our website
https://www.bibliaconsigo.com/
-Like us on Facebook
https://www.facebook.com/bibliasagradacomigo
-Send us an email
bibliaconsigo@gmail.com\",\n \"scoreText\": \"4.8\",\n \"score\": 4.8217173,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.offline.bible\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.offline.bible/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.offline.bible/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.offline.bible/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.offline.bible/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"NFL\",\n \"appId\": \"com.gotv.nflgamecenter.us.lite\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.gotv.nflgamecenter.us.lite\",\n \"icon\": \"https://play-lh.googleusercontent.com/aJid7LFfO4qTtH8u2lzU_dwjAnmAnpv7a7EAk9YBRupWyYyghj5OoapiVSNMN9w0CeLe\",\n \"developer\": {\n \"devId\": \"NFL Enterprises LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/NFL%20Enterprises%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Just tap into the NFL App to get the latest NFL news, highlights, stats & more.

Brand new for 2022: Fans can access NFL+ content within the NFL App (NFL+ subscription required).

NFL+ Features:
• Live out-of-market Preseason games across devices
• Live local and primetime Regular Season games on your phone and tablet
• Live Playoffs & Super Bowl LVII on your phone and tablet
• Live game audio (home, away & national calls) for every game of the season
• NFL library programming on-demand, ad-free
• Full and condensed game replays with an NFL+ Premium subscription

NFL app Phone and Tablet Features:
• Game Center with up-to-the-minute scoring, in-game highlights and drive charts
• Articles and video highlights featuring the latest stories and breaking news from all around the NFL
• Stay up to date with the latest trending news and highlights on the NFL Channel.
• NFL Combine and Draft coverage
• NFL Network 24/7/365 and NFL RedZone are available for eligible subscribers of Charter, Cox, DirecTV, Hulu + Live TV, Optimum, Verizon FiOS, YouTube TV and many more providers.



NFL app Android TV Features:
• Select your favorite team to watch videos directly from that team.
• NFL Network 24/7/365 and NFL RedZone are available for eligible subscribers of Charter, Cox, DirecTV, Hulu + Live TV, Optimum, Verizon FiOS, YouTube TV and many more providers.


NFL+ is a subscription product; content and features vary based on location and device. Learn more at http://www.nfl.com/plus/learn-more.

Learn more about the NFL's digital offerings: nfl.com/apps, twitter.com/nfl, and facebook.com/nfl.

The NFL app allows use of AirPlay and Chromecast when viewing all video-on-demand and select live content. However, the NFL app does not permit outputs from phones or tablets of live games, NFL RedZone or NFL Network to external displays via HDMI, Chromecast, AirPlay, Miracast or other similar streaming functionality due to rights restrictions.

The Services may feature Nielsen proprietary measurement software, which will allow users to contribute to market research, such as Nielsen TV Ratings. Nielsen believes that you should have a choice about whether to contribute to our research and insights. To opt out of Nielsen measurement, you need only to activate the "Opt out of Ads Personalization" (for Android devices) option in your devices settings. For web, please visit: http://www.nielsen.com/digitalprivacy to learn more about the Nielsen digital measurement products and your choices in regard to them.

Data usage applies for app download and use.

Privacy Policy: http://www.nfl.com/help/privacy

Terms and Conditions: http://www.nfl.com/help/terms\",\n \"scoreText\": \"4.0\",\n \"score\": 4.0437875,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.gotv.nflgamecenter.us.lite\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.gotv.nflgamecenter.us.lite/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.gotv.nflgamecenter.us.lite/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.gotv.nflgamecenter.us.lite/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.gotv.nflgamecenter.us.lite/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Dunkin’\",\n \"appId\": \"com.dunkinbrands.otgo\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.dunkinbrands.otgo\",\n \"icon\": \"https://play-lh.googleusercontent.com/jPNEecA32td8q_oO-uG7LdEkKTRQ8Ao7GN5JN_LuKd9WGJYoJc_mAtuSBCS8wumrWA\",\n \"developer\": {\n \"devId\": \"Dunkin' Brands, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Dunkin'%20Brands%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Ordering through the Dunkin’ app is fast, easy and contactless!

Order ahead and skip the wait
All users can place their order ahead through the app and skip the wait in store. Try all of our contactless pickup options - carryout, drive-thru and curbside pickup! Options will vary by store. Check app for details.

Save your favorite menu items to make ordering even faster!

Join DD Perks and earn rewards on every Dunkin’ run
$1 = 5 points. Every 200 points earns you a free beverage. Plus, get exclusive bonus point-offers.

Check out faster
Whether you’re stopping in store to scan your app or ordering ahead, load funds to your account to save time on your run.

*Location and Notifications may be required to receive promotional offers.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7521896,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dunkinbrands.otgo\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.dunkinbrands.otgo/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.dunkinbrands.otgo/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.dunkinbrands.otgo/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.dunkinbrands.otgo/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ExpressVPN: VPN Fast & Secure\",\n \"appId\": \"com.expressvpn.vpn\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.expressvpn.vpn\",\n \"icon\": \"https://play-lh.googleusercontent.com/9cUA5prRw5giaHElxiilJ3Ek2AB1O52BZbJrQAV1TTF3GJVxyP91_vZZMz0csO7HOfg\",\n \"developer\": {\n \"devId\": \"ExpressVPN\",\n \"url\": \"http://gplayapi.srik.me/api/developers/ExpressVPN\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The best VPN for online security and data protection is at your fingertips!

Better than an internet proxy: Get ExpressVPN and stay private on any network, even Wi-Fi hotspots. Secure your connection with the best VPN today. Try the top-rated VPN free now!

7-day free trial
Download the best VPN on your Android phone, tablet, or TV, and enjoy a 7-day free trial.

World’s top premium VPN provider
ExpressVPN is rated Excellent by 9,000+ reviewers on Trustpilot and has been crowned the best VPN by PCWorld, The Verge, TechRadar, and more.

Fast VPN server network
Connect to our fast VPN servers in 94 countries, wherever you want to be with an easy IP address changer.

Safely access your favorite content with an unlimited VPN
Enjoy unlimited bandwidth with secure access to a world of great content and apps, with a fast VPN and unlimited proxy.

Powerful online VPN security
Protect your data and keep online activity more private with our VPN encryption. Secure your connection on public Wi-Fi hotspots and browse more anonymously wherever you go.

Privacy protection with an easy IP address changer
Browse in peace while keeping your IP address and location private with our safe VPN. Under our strict privacy policy, we don’t collect activity logs or connection logs—it has been independently audited to ensure your protection.

Next-generation VPN protocol
Get exclusive access to Lightway, a VPN protocol developed from the ground up by ExpressVPN to offer greater speed, security, and reliability.

Apps for every device
Download and enjoy the best VPN protection on all your devices. Available on Windows, Mac, iOS, Android, Linux, routers, smart TVs, and more.

Wide language selection
Make our VPN app work for you by switching among 18 languages.

Five-star customer service
Get help in seconds, not days. Ask us anything, anytime, through 24/7 live chat support or email.

Android app features
• Our in-built kill switch stops all internet traffic if your VPN connection drops. Kill switch is supported on Android 8 and higher.
• Select which apps will use the VPN and which apps won’t when your device is connected with ExpressVPN’s split-tunneling feature.
• Our convenient widget allows you to easily connect or disconnect from ExpressVPN, change your VPN server location, or check your VPN status.
• ExpressVPN automatically connects whenever you join or rejoin an untrusted Wi-Fi hotspot or network, and it auto-reconnects if your VPN connection is interrupted.
• ExpressVPN’s encryption supports these protocols: Lightway UDP, Lightway TCP, OpenVPN UDP, OpenVPN TCP.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3419003,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.expressvpn.vpn\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.expressvpn.vpn/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.expressvpn.vpn/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.expressvpn.vpn/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.expressvpn.vpn/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Local News - Latest & Smart\",\n \"appId\": \"com.local.news.plus\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.local.news.plus\",\n \"icon\": \"https://play-lh.googleusercontent.com/QvTfA5WH0B4X04u_sxSBdb-PlO7Wj6yjeyJVzwoyUsefJPTXDE75QBKKJr1fyI5CHQq9\",\n \"developer\": {\n \"devId\": \"EASE Group\",\n \"url\": \"http://gplayapi.srik.me/api/developers/EASE%20Group\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Local News is a completely personalised content app that lets you follow trending topics locally and globally, provides rich and comprehensive content for your interests.

What’s the local news in my area? What about weather or traffic? What important events are happening nearby? Join our community and stay informed with local news near you!

Key Features:
• Lastest news from local area
This app helps people live safer, more vibrant and more truly connected lives. Whether it’s your local sports team, lifestyle tips or headlines – you can access local, relevant stories with just a tap.

• For you
\\u2063Read the latest and most popular news articles on politics, crimes, entertainment, business, sports, travel, health, lifestyle... all delivered by top global and national media outlets.
Our artificial intelligence algorithm helps to filter out thousands of articles everyday in order to find the ones that are most relevant and fun to read. You are what you read, that's why we have to be selective.

• News commentary and share
Don’t just read the news, discuss it with other app readers! We welcome all respectful perspectives and points of view.
Share information and conversations directly from the app to notify your friends, family, and loved ones immediately.

• Real-time weather
Local News app also provides you accurate local weather information which includes 72-hour and 14-day forecast and timely alerts. This is YOUR personal companion in this app, that helps you prepare for upcoming severe weather conditions.

• Follow news sources
A highly personalized feed caters your curiosity and reading interests, making you read content that’s what you really interested in. Read news with purpose and value!
FOLLOW is a feature allowing you to personalize your news offering.
Add sources wherever you see the icon for a quick route straight to the news you care about. You can also enter FOLLOW page to manage the news sources.
News from sources you followed will appear in personalized FOLLOW feed.

• Trusted news sources
Local News’s content discovery engine aggregates thousands of trusted sources. Browse news at any time, any location!

From curated local briefing to professionally hand-picked national and world headlines, from emergency alerts to 360 full coverage, Local News is always the free and must-have content app that gives you insights and value.


Disclaimer (For publishers)
Local News is a News/RSS feeds aggregator, its main goal is to make getting fresh content easier and help publishers to reach a larger audience. If you are a news publisher, please read this:

To contact us by email: easemobileteam@gmail.com

• If your website is listed in our apps, this means that we are using your RSS feeds, we think a fair use is beneficial for you and our users. But if you want us to remove your website just contact us and we will do as soon as possible.
• If your website is listed and you want it to be a trusted source in our app, which will give you more visibility and traffic, please contact us.
• If your website, newspaper or blog is not listed, please contact us to add it, which will boost our products.

*Web version: https://topfeed.info/\",\n \"scoreText\": \"4.5\",\n \"score\": 4.463026,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.local.news.plus\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.local.news.plus/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.local.news.plus/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.local.news.plus/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.local.news.plus/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Overstock - Easy Home Savings\",\n \"appId\": \"com.overstock\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.overstock\",\n \"icon\": \"https://play-lh.googleusercontent.com/r1RyQV0Tva6dHjjLQ4xikDyc2uU9OMXxUmnvDM3edGwfBI6tZvDC9XGltno9pH-jkw\",\n \"developer\": {\n \"devId\": \"Overstock.com\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Overstock.com\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Overstock is the app to get exclusive deals on everything home. We’re talking major coupon bump-ups and deals on your favorite home brands - all available only on the Overstock app. All the things you want to improve the look of your home for less. Sign up for price alerts to shop rugs, living and dining room furniture, and garden and patio. You won’t find these home savings anywhere else on the internet. And deals drop daily right here on the Overstock app. We’ll even alert you when they do. Plus, with the Overstock app, get free shipping on EVERYTHING!*\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7145314,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.overstock\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.overstock/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.overstock/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.overstock/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.overstock/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"KFC US - Ordering App\",\n \"appId\": \"com.kfc.us.mobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.kfc.us.mobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/z1cs1Ll7A3iogDJ1XmNeUP5Qsc8fCthym6bB_Gx8rF0YA5O4QKoa3qzcd3UBFWRNfpNr\",\n \"developer\": {\n \"devId\": \"KFC Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/KFC%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Ordering world famous fried chicken has never been easier. Access exclusive deals with the new KFC app.

One-Click Reordering
All your favorites right at your fingertips.

Order Tracking
Get updates on your order along the way.

Faster Checkout
Quick, easy and contactless.

Stay Connected
Never miss out on the latest KFC products and offers.\",\n \"scoreText\": \"3.8\",\n \"score\": 3.7768037,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.kfc.us.mobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.kfc.us.mobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.kfc.us.mobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.kfc.us.mobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.kfc.us.mobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Opera News: Breaking Local & US Headlines\",\n \"appId\": \"com.opera.app.news\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.opera.app.news\",\n \"icon\": \"https://play-lh.googleusercontent.com/k4P3OMHi8g3ofGEYxSWtF95D5Wnumc9VZ_d2FScWr74-K-9XzERHFmDAVwJ3GK2P0rk\",\n \"developer\": {\n \"devId\": \"Opera\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Opera\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"We’re proud to be enjoyed and trusted by over 350 million global users. Why?

Because Opera News’ personalized news aggregator refines the noisy daily news cycle into one powerful feed. In short, we make staying informed easy.

Sorting through hundreds of thousands of stories each day, we find the perfect content to fit you, all in a fast, easy-to-read format. And the more you use it, the better our recommendations get.

Top US & International News Sources
With 15,000+ sources from all the top publishers, we deliver the widest variety of American news and World News content available. You’ll never miss the most important headlines and trending content

Local News For Your City
Get stories from the sites in your neighborhood, county, city and state.

Breaking News Notifications
You can count on our speedy notifications system that tracks breaking stories from every publisher.

Not your pappy’s News Aggregator
Our next-gen personalization system pairs advanced machine learning analytics with an 11-country editorial team with the goal to delight and inform you on the day’s top and trending stories.

. . . And that's not all.
Reader mode for fast loading
Offline reading & safe for later
Data Savings
Search feature
Comment forums
Videos & galleries
Community groups & sharing
Data dashboards
Customizable political content
News bar
… And always continually innovating

Facts, and Fun
Depending on what you like, our channels present a mix of hard-hitting journalism as well as enjoyable articles to share with friends. You’ll find stories on World News, National News, Tech News and more, collected from newspapers, television, magazines, digital publications, blogs, vlogs, and adorable dogs -- all across the media spectrum!

It’s a crazy world, stay sane with Opera News.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.502781,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.opera.app.news\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.opera.app.news/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.opera.app.news/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.opera.app.news/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.opera.app.news/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ArriveCAN\",\n \"appId\": \"ca.gc.cbsa.coronavirus\",\n \"url\": \"http://gplayapi.srik.me/api/apps/ca.gc.cbsa.coronavirus\",\n \"icon\": \"https://play-lh.googleusercontent.com/tcqWL6tSXSQrEkMc9Y8efFgq-krIyDb2SJR_gzUq5BQApb3lg8aLz885Bw4-BxFsr254\",\n \"developer\": {\n \"devId\": \"CBSA-ASFC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/CBSA-ASFC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Use ArriveCAN to submit mandatory health information to the Government of Canada before you arrive in Canada. It is the fastest, easiest and most secure way to show you meet public health requirements.

ArriveCAN now includes the new, optional Advance CBSA Declaration feature for travellers arriving at selected Canadian airports. Use ArriveCAN to complete your optional Advance CBSA Declaration to answer customs and immigration questions up to 72 hours in advance of flying into Canada. At the border, simply review and certify your declaration. Using ArriveCAN’s optional Advance CBSA Declaration feature can save you time and provide a faster border experience.

Travellers with a right to enter Canada, such as Canadian citizens, Canadian permanent residents and persons registered under the Indian Act, will not be denied boarding of their flight or entry to Canada if they do not use ArriveCAN, but may be required to test on day 1 and day 8, quarantine for 14 days, and face fines.

Please refer to the accessibility notice for this app: https://www.canada.ca/en/public-health/services/diseases/coronavirus-disease-covid-19/arrivecan.html#accessibility-notice

This app supports English, French and Spanish (displayed in the language of your device).

For more information: www.canada.ca/ArriveCAN\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5721393,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=ca.gc.cbsa.coronavirus\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/ca.gc.cbsa.coronavirus/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/ca.gc.cbsa.coronavirus/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/ca.gc.cbsa.coronavirus/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/ca.gc.cbsa.coronavirus/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Western Union: Transfer Money\",\n \"appId\": \"com.westernunion.android.mtapp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.westernunion.android.mtapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/AEXjkFjKvuJIxvaWKzUnijpZWTJmSssJ8d1NHdf0thEQc6c-61pJtXH6J-4P1X2edJs\",\n \"developer\": {\n \"devId\": \"Western Union Android Apps\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Western%20Union%20Android%20Apps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Download the Western Union® (WU) money transfer app and start sending money to Mexico and worldwide - with easily viewable exchange rates! Pay for your transfer instantly with a debit or credit card** or start a money transfer and complete the payment in cash at a nearby agent location! Sending money worldwide has never been easier with our money sending app. If you are a new customer: now you can transfer your FIRST money transfer for FREE* until October 31! *.

USE THE TRUSTED MONEY SENDING APP
●Fast money transfers worldwide
●Send money to Mexico and globally from the US, 24/7
●Track a Western Union international money transfers real-time
●Repeat transfers using quick resend
●View live currency exchange rates for global currencies
●Pay bills in the US and internationally to Mexico
●Find hundreds of thousands of agent locations internationally for speedy cash pickup
●Secure access to the app with touch & face ID login
●Schedule transfer reminders weekly, bi-weekly or monthly to never forget to send to your loved ones
●Update the delivery method from cash pickup to bank account whether you are the sender or receiver

TRUSTED INTERNATIONAL MONEY TRANSFERS
Western Union’s international money transfer service allows you to send money directly to someone abroad reliably with our money sending app:
●NORTH AMERICA: Within the US and to Mexico, Jamaica, Haiti, Canada and more
●SOUTH AMERICA: Brazil, Colombia, Ecuador, El Salvador, Dominican Republic, Honduras and more
●EUROPE: France, UK, Spain, Germany, Italy, Russia and more
●AFRICA: Ghana, Nigeria, Ethiopia, Senegal, DRC and more
●ASIA: The Philippines, China, India, Pakistan, Turkey, Thailand and more
●AUSTRALIA & NEW ZEALAND

SEND MONEY WITHIN THE US
Send money within the US to a bank account or mobile wallet, set up a quick cash pickup at a US agent location, or transfer money into a correctional facility account for a county, state, or federal prison inmate.

Don’t forget to refer your loved ones around the world, and you can get rewarded!

SENDING MONEY IS QUICK AND EASY
Pay for your transfer instantly with a debit or credit card or start a money transfer and complete the payment in cash at a nearby agent location! Users can receive the funds directly to their bank account or mobile wallet or pick up the cash at a convenient location near them in their own currency. We have approximately 600,000 locations in over 200 countries and territories.***
●Download our cash transfer app and create a free profile to start sending
●Select the country you’d like to send money to and type in the amount to send
●Select how your receiver will get it (cash, bank account, mobile wallet)
●Select how you will pay for the money transfer (credit** or debit card, bank account, cash at a Western Union agent location)
●Add the receiver’s details, confirm the transaction and your money is on the way
●Customize your transfer with a free e-greeting before sending the MTCN to your loved ones

Want to connect with us directly? Our customer care team is here to problem solve and answer any questions. We’re available by phone, email, or through convenient chat at https://wucare.westernunion.com/.

FEES AND IMPORTANT DISCLOSURES
Western Union makes money from both transfer fees and currency exchange. When choosing a money transmitter, carefully compare the transfer fees and exchange rates. Fees, foreign exchange rates and taxes may vary by brand, channel, and location based on a number of factors. Fees and rates subject to change without notice.
Please use care when providing commissary or bank account information. Funds will be paid into the account corresponding to the account number you provide.
Services may be provided by Western Union Financial Services, Inc. NMLS# 906983 and/or Western Union International Services, LLC NMLS# 906985. See terms and conditions for details.

* Until October 31, 2022. Currency exchange commission applicable.
** 3rd party charges may apply
*** As of September 2021\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5077415,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.westernunion.android.mtapp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.westernunion.android.mtapp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.westernunion.android.mtapp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.westernunion.android.mtapp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.westernunion.android.mtapp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Klarna | Shop now. Pay later.\",\n \"appId\": \"com.myklarnamobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.myklarnamobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/tDXSaAt_I_qx6am_rTcQ1WHaXo6ncfiB-b742DnSXZkJGASvs15yRYnvzogzbYwse0QD\",\n \"developer\": {\n \"devId\": \"Klarna Bank AB (publ)\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Klarna%20Bank%20AB%20(publ)\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"SHOP NOW. PAY LATER.
Discover stores where you can split the cost of your purchase into 4 interest-free payments—paid every 2 weeks. We partner with retailers all over the world so you can experience smoooth shopping directly from their sites. And if anything goes wrong with your Klarna order—whether it’s physical goods or services—we’ve got your back.

- “Definitely the best app I have come across combining finance and shopping..” - Jade

HOW DOES KLARNA WORK?
• Download the Klarna app and sign up or log in.
• Buy now, pay later online and in-store.
• Discover personalized inspiration and exclusive deals and discounts.
• Get a complete overview of all your purchases and finances.
• And much more!

- “This is the best buy now pay later system. It has helped me save money too, thank you Klarna” - D.

NEW DEALS EVERY DAY.
Shop and save money with exclusive deals and discounts from all over the world. Find and claim deals you like with a simple tap. Make sure to check back in tomorrow – we add new deals and discounts all the time.

UNLOCK REWARDS.
Join Klarna rewards club for free to get rewarded for all your shopping. Earn 1 vibe for every $1 spent. Plus, take advantage of member perks like deals and exclusives, and get a $5 welcome reward as soon as you complete your first purchase as a member. Get new rewards after every 500 points.

DISCOVER THE KLARNA CARD.
With Klarna’s physical card, you get up to 30 days to pay when you shop online, in-store, at home or abroad. The Klarna card is a flexible alternative to credit cards that gives you the freedom to make most of your budget. No interest, no sneaky fees. Link it to Google Pay to pay easily by tapping your mobile phone or smartwatch.

- ”This is the best source available to pay over time w/o using a credit card.” - Patrice

- “Better than using my actual credit card” - Marlow

INSTANT ORDER CONFIRMATION.
No one likes to wait. When you buy something through the Klarna app, you’ll see your purchase just seconds after you place your order. Whether you decided to pay later or immediately.

DELIVERY TRACKING.
Get instant delivery information and track parcels from store to door.

HASSLE-FREE RETURNS.
Need to send something back? Report a return right in the app. With pay later, we’ll pause your purchase so you don’t have to pay in the meantime.

PERSONALIZED INSPIRATION.
Get carefully curated suggestions for deals, product collections, complete looks, and editorials tailored to your shopping. It doesn’t matter if you love fashion, beauty, tech, or whatever – we’ve got something for you.

GET PRICE DROP ALERTS.
Save items in collections and save money through price drop alerts. Each time you save an item in a collection, an automatic price drop alert is set. That way, when the price drops you will know. You can also share your collections with family and friends.

MANAGE YOUR PAYMENTS.
With Klarna, you choose exactly how much you want to pay and when. There's a flexible payment method that works with your budget, wherever you shop. Whether you choose to pay now, split your purchase or pay later, you get a complete overview of all your purchases and finances. You can even make early payments or extend your due date.

“Best Buy Now Pay Later App” - Leely

NEVER MISS A PAYMENT.
Stay on top of your finances by activating push notification reminders.

STAY SAFE WHILE SHOPPING.
Shopping is thrilling enough without security risks. Our login is as simple as it is secure – with Face ID, Touch ID or PIN.

* Trusted by 147+ million users *

24/7 CUSTOMER SERVICE.
Get round-the-clock customer service whenever you need it using our chat right in the Klarna app.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5523405,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.myklarnamobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.myklarnamobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.myklarnamobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.myklarnamobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.myklarnamobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Apex News: Breaking & Local\",\n \"appId\": \"com.opera.app.news.us\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.opera.app.news.us\",\n \"icon\": \"https://play-lh.googleusercontent.com/2OwvALCNqzJXIcgjb6A3rQ1sK_VcNw06Xvd6-6ezwmT4WEk4DNfkC6tEjVIwxtpFbwI\",\n \"developer\": {\n \"devId\": \"Opera\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Opera\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Apex News is an industry leading news aggregator which lets you stay informed on national and international breaking headlines. It highlights the latest news and provides the stories that matter to you!

Apex News refines the noisy daily news cycle into one powerful feed. In short, we make staying informed easy.

Sorting through hundreds of thousands of stories each day, we find the perfect content to fit you, all in a fast, easy-to-read format. And the more you use it, the better our recommendations get.

Top US & International News Sources
With 15,000+ sources from all the top publishers, we deliver the widest variety of American news and World News content available. You’ll never miss the most important headlines and trending content

Local News For Your City
Get stories from the sites in your neighborhood, county, city and state.

Breaking News Notifications
You can count on our speedy notifications system that tracks breaking stories from every publisher.

Not your pappy’s News Aggregator
Our next-gen personalization system pairs advanced machine learning analytics with an 11-country editorial team with the goal to delight and inform you on the day’s top and trending stories.

. . . And that's not all.
Reader mode for fast loading
Offline reading & safe for later
Data Savings
Search feature
Comment forums
Videos & galleries
Community groups & sharing
Data dashboards
Customizable political content
News bar
… And always continually innovating

Facts, and Fun
Depending on what you like, our channels present a mix of hard-hitting journalism as well as enjoyable articles to share with friends. You’ll find stories on World News, National News, Tech News and more, collected from newspapers, television, magazines, digital publications, blogs, vlogs, and adorable dogs -- all across the media spectrum!

It’s a crazy world, stay sane with Apex News.

Terms & Conditions:
By downloading this application, you are agreeing to the End User Licence Agreement at https://www.opera.com/eula/mobile.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.511394,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.opera.app.news.us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.opera.app.news.us/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.opera.app.news.us/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.opera.app.news.us/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.opera.app.news.us/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Hotels.com: Travel Booking\",\n \"appId\": \"com.hcom.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.hcom.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/onuxspmiR0fJZRWXZCToyBPht5yZE55drqWqoWWDj9YwJvKpg2AY4lt1LdymRYkRlh0\",\n \"developer\": {\n \"devId\": \"Hotels.com LP\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Hotels.com%20LP\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Our app is even more rewarding for Hotels.com® Rewards members! You can get to your next reward* night faster with app exclusive offers and be sure to opt-in to notifications and say goodbye to FOMO!

When you’re ready to travel, take our Hotels.com app with you, after all, it’s your perfect travel companion.

SAVINGS & LAST-MINUTE TRAVEL DEALS ON OUR APP
• Get instant access to Secret Prices*! Save an extra 10% on thousands of properties (hotels, vacation rentals, etc.) worldwide
• “Tonight’s Local Deals” feature on our app is a great way to save on last minute hotel bookings

• Enjoy the flexibility of free cancellation on most hotels*
• Search and compare travel deals and hotel and vacation rental prices before booking your trip

OUR APP IS EVEN MORE REWARDING
• Collect 10 stamps, get 1 reward night on us
• Love reward nights? You can get them faster on our app with app exclusive offers on hotel and properties alike
• You won’t pay a fee to redeem your reward nights on our app – and there are no blackout dates

• Redeem your reward nights just about anywhere: from major hotel chains and beach resorts to villas, apartments and more
• Silver and Gold members can enjoy extra travel benefits at VIP Access properties

MORE THAN JUST HOTELS
• We do more than just hotels! Easily find vacation rentals, apartments, luxury resorts, B&Bs, motels, hostels and more on our app - we’ve got every kind of property for almost every kind of trip. So, whether it’s a hotel for a short business trip or a vacation rental for a long vacation, choose from over 800,000 properties worldwide.
• Filter by theme for different types of trips
• See the hotel or vacation rental location on a map and read verified guest reviews
• Save your favorite hotels, vacation rentals, resorts and more

FAST, EASY & SECURE BOOKING ON OUR APP
• It only takes a few taps to book your travel.
• Pay now or later on most hotels
• Save your payment details to book future trips even faster

OUR APP IS YOUR PERFECT TRAVEL COMPANION
• Save your confirmation and access your hotel or vacation rental booking details anytime – even offline
• Easily manage your hotel or vacation rental booking on the go
• Contact us or the hotel or vacation rental owner directly from the app
• Opt-in for push notifications and we’ll send you updates about your stay

* Hotels.com® Rewards Members 18+. When you book and stay 1 night at eligible properties, you’ll get 1 stamp. Collect 10 stamps and get a reward night. Reward night value based on average daily rate of 10 stamps (excluding taxes/fees). Taxes/fees payable on reward night. Booking exclusions apply. Free cancellation on most hotels. Some hotels require you to cancel at least 24-48 hours before check-in. See property pages on app for details. Secret Prices are available to Hotels.com app users, members and email subscribers. Available on selected hotels and selected dates only. Subject to the full terms and conditions https://www.hotels.com/customer_care/terms_conditions.html

The Hotels.com app uses information for analytics, personalization, and advertising. By downloading our app, you agree to our privacy and cookies policies https://hotels.com/customer_care/privacy.html.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4611325,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hcom.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.hcom.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.hcom.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.hcom.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.hcom.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Taco Bell – Order Fast Food\",\n \"appId\": \"com.tacobell.ordering\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.tacobell.ordering\",\n \"icon\": \"https://play-lh.googleusercontent.com/wWXePJtJwa8slrpch_scAqld5hNDAQKx-KSLDo5uo69yfQv-_k6o5OPPjEQrdRHFHOo\",\n \"developer\": {\n \"devId\": \"Taco Bell Mobile\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Taco%20Bell%20Mobile\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Download the official Taco Bell® app and your taste buds will officially thank you. Earn points on every qualifying order and reward yourself with free food. Gain access to exclusives only available on the app. Order tacos for delivery or pickup.

Features Include:
1. Order and pay ahead for delivery or pickup
2. Customize and save your favorite menu items to make ordering easy
3. Track your order seamlessly on the app to know when it’s ready for pickup or being delivered
4. Earn points on every qualifying order so your tacos can earn you more tacos
5. Redeem exclusive rewards and special offers only available on the app

Terms and conditions apply.\",\n \"scoreText\": \"3.9\",\n \"score\": 3.923697,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.tacobell.ordering\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.tacobell.ordering/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.tacobell.ordering/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.tacobell.ordering/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.tacobell.ordering/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Pizza Hut - Food Delivery & Takeout\",\n \"appId\": \"com.yum.pizzahut\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.yum.pizzahut\",\n \"icon\": \"https://play-lh.googleusercontent.com/jGw2IsVM2f6jXDI9bVneLLHogRPjwwSrFYSQ_Pv8Zczmmx-Y_o56TzOJiwOwetOJM_Q\",\n \"developer\": {\n \"devId\": \"Pizza Hut Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Pizza%20Hut%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Download the official Pizza Hut app for the easiest way to order your favorite pizza, wings, desserts and more! We’ve added contactless ordering features, so you and your family can get the pizza you love without worry. Our app is designed for pizza lovers, making fast food delivery and takeout even easier. Check out our menu, find deals, save orders and earn free pizza with Hut Rewards®.

•\\tOrder contactless delivery, takeout or curbside pickup
•\\tCheck in for curbside pickup with one simple click
•\\tAccess the full Pizza Hut menu, discover new menu items and view local deals
•\\tStay up-to-date with your Hut Rewards® points and redeem free pizza, wings and more with ease
•\\tCustomize your own pizzas with the easy-to-use Pizza Builder
•\\tReorder in three easy taps
•\\tTrack your order with the Pizza Hut Delivery Tracker
•\\tPlace future orders up to 7 days in advance
•\\tUse guest checkout to easily order without an account
•\\tFind Pizza Hut locations near you
•\\tPay with cash, card or Pizza Hut gift card
•\\tOrder within the 50 United States territories and possessions excluding Puerto Rico and the U.S. Virgin Islands\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2293406,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.yum.pizzahut\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.yum.pizzahut/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.yum.pizzahut/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.yum.pizzahut/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.yum.pizzahut/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Afterpay - Buy Now. Pay Later\",\n \"appId\": \"com.afterpaymobile.us\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.afterpaymobile.us\",\n \"icon\": \"https://play-lh.googleusercontent.com/GmpU8D8u2BTjzRmKAjnLPsIbrQHRZsUXf4rdncbcvIf2nJ5eFVYBH9J2IeIMwbWto8I\",\n \"developer\": {\n \"devId\": \"Afterpay\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Afterpay\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Buy now, pay later - with 4 simple pay over time installments. With thousands of stores & brands to choose from, you can find great shopping deals on a range of beauty, fashion, homeware & more. Download Afterpay now!

Manage your buy now, pay later payment plan easily through the app & enjoy interest-free payments - no fees when you pay on time. You're always in control - Afterpay helps you stay on top of your spending & keep an eye on your budget.

Our shop directory lets you browse all retailers, split payments & get all the inspiration & shopping deals you need. New brands are added weekly! See an ever expanding list of retailers now accepting Afterpay in stores. Pay in 4 split payments to manage your budget better.

Buy now, pay later - your easy pay in 4 payment plan:

• Download the mobile app & sign up: the app is your key to unlocking our shop directory & buy now, pay later deals.
• Browse retailers & shopping brands: find your favorite beauty & fashion brands & stores
- Shop in stores: See retailers now accepting Afterpay in stores
• Shopping on a budget? You can still get it now and pay over time by spreading payments!
• Payment plan: Shop now & pay the first installment straight away - then pay the remainder every two weeks. Remember - it's interest-free, and no late fees when you pay on time.
• Stay up to date: know when new retailers launch & manage existing orders on the go

TOP STORES & BRANDS
We add new retailers & shopping brands every week! From Anthropologie to MAC, Gymshark to Urban Outfitters, find deals & the latest trends with Afterpay. Whether you’re looking for skincare, haircare, furniture, food & drinks or fashion, the Afterpay app has everything you need! You can browse all our partners and shopping deals in one place then easily track orders so you never miss one of your 4 payments.

SHOP IN STORES
You can even shop now, pay later in your favorite stores. Pay in 4 split payments with Afterpay! Just open the app, see retailers offering Afterpay in stores, and shop confidently knowing how much you are pre-approved to spend. Simply tap to purchase and start spreading payments. You'll pay 25% upfront and split the rest over the next six weeks. Shop now, pay later, and take your purchase home today.

BUY NOW, PAY LATER
Want it now? Pull out your phone and use the app to shop and keep track of all your orders and your payment plan. The Afterpay app puts you in control of your finances and spending by splitting 4 payments over six weeks - and as long as you pay on time, you’ll pay no interest and no fees. Plus, you can now add Afterpay to your Google Wallet to make buying in store even easier.

CONTROL YOUR FINANCES
Afterpay helps you stay on top of your shopping budget and finances by letting you split payments. Use the app to shop now, pay later or view all your current and past Afterpay orders as well as your payment history. If you need to be more flexible with your finances, you can change your payment card for future payments - or even pay off any upcoming installments early - all on the app.

SUPPORT SMALL BUSINESSES
Afterpay is now partnered with hundreds of small businesses. Shop handmade gifts, clothing and more and pay over time with the Afterpay App.

SHOP THE LATEST TRENDS
Afterpay makes responsible spending easy by spreading payments. Shop on a budget and still get the latest fashion and beauty. We’re adding new stores every week to give you even more choice. Explore shopping deals now, track order history and split payments over four installments with Afterpay’s payment plan. More and more stores are being added to Afterpay every week so keep checking your app to make sure you get all the best deals!

PULSE REWARDS
You can now turn on-time payments into points & track your progress with Pulse Rewards to unlock special offers when you get enough points. With every new tier you unlock you’ll get access to exclusive offers, gift cards & more!


Afterpay it. Because life doesn’t wait.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.677368,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.afterpaymobile.us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.afterpaymobile.us/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.afterpaymobile.us/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.afterpaymobile.us/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.afterpaymobile.us/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"NFL Fantasy Football\",\n \"appId\": \"com.nfl.fantasy.core.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.nfl.fantasy.core.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/WPLDOYnBp9iaTHnC3pHCVydZ0my9bOMChgv5WW92SUPqYS_0OVqHS-Ils77BDHD5sFJI\",\n \"developer\": {\n \"devId\": \"NFL Enterprises LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/NFL%20Enterprises%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"This season, there's a new NFL team competing for a chance in the Super Bowl — yours! With NFL Fantasy, the official fantasy football game of the NFL, you're in control of your very own NFL team. Are you ready to build the next football dynasty?

Start your season by drafting a roster of real NFL players to join your team. Then, prepare for a new head-to-head matchup every week by setting your lineup and tuning in to NFL games to watch your player's action on the field turn into fantasy points for your team.

In a work league with a real hotshot? NFL Fantasy comes equipped with the tools you need to make it to the top, including NFL Fantasy-exclusive features like Next Gen Stats and all-new player comparison tools.

Looking to be the next Commissioner? Start your very own league and customize the rules however you want. Invite friends and family to compete with you and start your own football tradition.

Get closer to the game than ever before with the official fantasy football game of the NFL.

There’s a lot to look forward to:

+ Our brand-new draft client makes drafting easy and fun.

+ Track your fantasy scores while streaming the NFL Network and live local and primetime games. It's the ultimate fantasy game day experience.*

+ Fantasy Stories - See a ring around a player’s headshot? Click to watch exclusive player analysis and sideline footage.

+ Use Compare Players to quickly find the best player for your roster.

+ Waiver Report - learn the outcome of all of your waiver claims.

+ A weekly Matchup Recap gives you a customized report of your and your opponent's performance.

+ Celebrate your league's history and achievements in Hall of Fame.

Plus, all of the fantasy football features you expect from the NFL:

+ Create a league in minutes to start your own fantasy football tradition, or compete against other NFL fans in a public league.
+ Draft players live in-app.
+ Perfect your draft strategy by participating in a Mock Draft.
+ The NFL Fantasy-exclusive Optimize Lineup feature makes fantasy football approachable for players of all skill levels.
+ Best in class Player Profiles include all of the data and expert analysis fans need to make informed roster decisions, including NFL Fantasy-exclusive features like Next Gen Stats and game video recaps.
+ Catch up with official stats and injury updates direct from NFL experts.
+ The same great features and design on your Android phone and tablet.

…and more!

*Geographic and device restrictions apply. Local & primetime games only. Data charges may apply.

This app features Nielsen’s proprietary measurement software which contributes to market research, like Nielsen’s TV Ratings. Please see http://priv-policy.imrworldwide.com/priv/mobile/us/en/optout.html for more information.\",\n \"scoreText\": \"3.3\",\n \"score\": 3.3241823,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.nfl.fantasy.core.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.nfl.fantasy.core.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.nfl.fantasy.core.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.nfl.fantasy.core.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.nfl.fantasy.core.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"iFunny - cool memes & videos\",\n \"appId\": \"mobi.ifunny\",\n \"url\": \"http://gplayapi.srik.me/api/apps/mobi.ifunny\",\n \"icon\": \"https://play-lh.googleusercontent.com/Wr4GnjKU360bQEFoVimXfi-OlA6To9DkdrQBQ37CMdx1Kx5gRE07MgTDh1o7lAPV1ws\",\n \"developer\": {\n \"devId\": \"iFunny Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/iFunny%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Love and iFunny - the only two things you can enjoy without being good at. And if for some reason you are not having much of the first one you can still indulge yourself in the world of fun.

Some scientifically proven facts about iFunny:
- nobody wants to miss a fresh set of features.
- iFunny is not the same without you.
- be it a boring class or a slow day at work, iFunny is always there for you.
- iFunny users are 146% happier than baby koalas.
- Wait, why are you still reading this? Time to download iFunny!

Twitter: https://twitter.com/iFunny/
Facebook: https://www.facebook.com/iFunny/\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9099066,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=mobi.ifunny\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/mobi.ifunny/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/mobi.ifunny/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/mobi.ifunny/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/mobi.ifunny/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Music Downloader MP3 Download\",\n \"appId\": \"free.mp3.music.downloader.download.music.mp3.song.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/free.mp3.music.downloader.download.music.mp3.song.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/oQuC0N81aw6vh6fouaYg5ZqsT7arOy8JAIwIWWOYY8oBR0fsLOH2aCDAR_LXcJ4aQF4\",\n \"developer\": {\n \"devId\": \"Super Mp3 Music Downloader App\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Super%20Mp3%20Music%20Downloader%20App\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Music Downloader - MP3 Download, free music download is free music app that allows you listen online & offline music, download music for free to play offline anywhere anytime.

Search, download and play offline music wherever you are.

Download and play offline free MP3 music. Music Downloader - MP3 Download, free music download is the most powerful music app for you to search, listen and download favorite music.

Feel free to download free MP3 music and audio files!

Music Downloader - MP3 Download, free music download Key Features:
Download music for free:
-Users can download the music for free, and play offline.
-We are continually adding more and more songs for the users, but some may not come so soon because of the copyright, please wait patiently and support our app.

Easy to Find, Listen to and Download:
-Great data set, more than a million high quality mp3 tracks. One of the biggest free mp3 music storage.
-Search music by title, artist, or album.
-Download high sound quality mp3 fastest and play mp3 music online or offline.
-You will find music for any tastes and of any kind with our app.

You can play and save free mp3 sounds with Music Downloader very easily. This app is an intuitive and easy to use tool to search and download free songs for your music.

NOTICE
⚠️All music available is under CC license, All tracks are verified, and available for personal usage (not for commercial purposes!).
⚠️Mp3 Music Download is provided by "cc free music", in compliance with their API Terms of Service.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7494006,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=free.mp3.music.downloader.download.music.mp3.song.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/free.mp3.music.downloader.download.music.mp3.song.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/free.mp3.music.downloader.download.music.mp3.song.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/free.mp3.music.downloader.download.music.mp3.song.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/free.mp3.music.downloader.download.music.mp3.song.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Yelp: Food, Delivery & Reviews\",\n \"appId\": \"com.yelp.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.yelp.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/3bXqnPjZnVf9FmFsTNSvp2VquiXIKg2LQV7TADGeBSRJ6oHC_PLsWfBvCPtcDNq7ujZg\",\n \"developer\": {\n \"devId\": \"Yelp, Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Yelp%2C%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Yelp connects people with great local businesses! The one-stop travel & local platform to discover nearby favorites. Find what you need! Whether you’re looking for a new restaurant, pet sitter, home services, auto repairs, or something else - Yelp is here!

Support local businesses with reviews, takeout, delivery services, quotes & more

With over 200 million Yelp reviews worldwide, find a local business for any need! Read and post online reviews or browse and share photos. That’s not all! See what else Yelp offers such as discount offers, business information like hours and locations, make a reservation, join a waitlist, request quotes and even contact a business directly on the Yelp app!

Looking for a great restaurant? How about food delivery, order ahead or restaurant reservations for dine in and check-in offers?

Go beyond food apps! In need of home services or auto repair? Look up service providers that have been verified and hire a handyman, contractor, cleaning services, movers, and more!

Do you travel? Or looking for something local? Find things to do and places to go! Get information on hotels, spas and salons, tours, attractions, parks and other activities!

Why millions of people use Yelp to find great local businesses

Find a must-try restaurant for food delivery or use as a reservation app for dine in!
• Restaurant food delivery, order takeout or dine in
• Mobile order food or curbside pickup
• Restaurant reservations- reserve a table or join a waitlist
• Search food places by location, price, rating and more
• Get amazing deals for dining and delivery places nearby, plan dinner reservations for trips in advance
Food delivery services from our partners
• GrubHub
• ChowNow
• EatStreet
• Delivery.com

Need a haircut appointment or other beauty service? Find a salon, barber or even a spa
• Find highly-rated salons, spas, massage therapists, acupuncturists
• Request a quote or a hair appointment
• Find deals and offers around me
Appointment booking available with one of our partners
• Booksy
• Vagaro
• Booker

Home services finder & free price estimates from local service professionals & contractors
• Look up service providers that have been verified
• Message a contractor nearby
• Get quotes from local professionals
• Search by category - handyman, contractor, house cleaning services, repair & more!
• Home repair or home remodel? Hire local professionals for home renovation, maid service or repairs

Find local activities or add to your trip planner
• Discover local events, businesses and services or plan dinner reservations or spa services for a trip
• Look up addresses and phone numbers for things to do near me

Need a pet outing or a dog friendly business?
• Find a local pet sitter or pet store
• Want a pet? Search for pet adoption services nearby
• Look for dog training centers for your pup!

All the best features includes
• Read and write reviews, check-in to local businesses, upload photos and add tips for other Yelp users
• Look up addresses and phone numbers for businesses near me
• Filter searches by distance, rating, price, location, and hours of operation
• Browse photo galleries and add photos to share experiences
• Bookmark to save and collect must-try places and share with friends

Need Help? Contact Yelp at https://www.yelp-support.com/?l=en_US
Note: Continued use of GPS running can dramatically decrease battery life. Your location data also may be used in our analytics.

Find top local restaurants, bars, hotels, events and other things to do around me, read customer reviews, order pickup or delivery, and search for services near me, all from the Yelp app.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.39106,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.yelp.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.yelp.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.yelp.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.yelp.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.yelp.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Crumbl Cookies\",\n \"appId\": \"crumbl.cookies\",\n \"url\": \"http://gplayapi.srik.me/api/apps/crumbl.cookies\",\n \"icon\": \"https://play-lh.googleusercontent.com/DQaSGr06w7TmSEdcD1I6wnaWjZ_9D9O89W9YWnopQZ5dciuBv877uUQtQvcSvAUALC8\",\n \"developer\": {\n \"devId\": \"Crumbl, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Crumbl%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Crumbl App is your one-stop shop for everything Crumbl! Whether you need cookie pickup, delivery, shipping, or catering, we’ll serve your favorite cookies, your favorite way. Download now to start earning Loyalty Crumbs that can turn into free cookies! That includes goodies like your free birthday cookie and more.



Collect Rewards Points

- Earn Loyalty Crumbs when you order pickup, delivery, and even catering. Once you reach 100 Loyalty Crumbs, that’ll be converted into $10 of Crumbl Cash that you can use for pickup, local delivery, or national shipping.


Pickup

- Order right from your phone and skip the line when your cookies are fresh and ready. Or select curbside delivery and stay in the comfort of your car—we’ll bring it to you.


Delivery

- Cookies without leaving your couch. For a night in, order from the app and we’ll bring warm, fresh cookies to your door.


Catering

- Feed the masses from your phone whether it’s a wedding, office party, graduation, or just a casual get-together. Select your pickup time, your flavors and quantity, and we’ll have it ready when you arrive. Cookie flavors vary by location.


Gifting

- Send a friend a box of cookies or a gift card to let them Crumbl their way. If they’ve got the Crumbl app, we can send it.


Never Miss a Thing

- Receive notifications on occasional promos and stay updated on weekly cookie drops.


Manage Your Account

- Easily manage your account details like preferred payment methods, delivery addresses, and more. Building your account also earns you Loyalty Crumbs toward free cookies!


Available from:

Monday - Thursday 8am - 10pm

Friday - Saturday 8am - Midnight\",\n \"scoreText\": \"4.8\",\n \"score\": 4.8101993,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=crumbl.cookies\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/crumbl.cookies/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/crumbl.cookies/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/crumbl.cookies/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/crumbl.cookies/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"WallO Wallpapers Cool Themes\",\n \"appId\": \"cool.wallpapers.themes.widget.icon.background.pack\",\n \"url\": \"http://gplayapi.srik.me/api/apps/cool.wallpapers.themes.widget.icon.background.pack\",\n \"icon\": \"https://play-lh.googleusercontent.com/TLi7GEg2zezMxX3_OrGHMMkLWMRtSKBWqNjRQNnke7ePyA78HkrCusUetovK8_h_sLJL\",\n \"developer\": {\n \"devId\": \"Kika Tech, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Kika%20Tech%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"WallO Wallpapers means Wow Oh Wallpapers. We create a really Cool Wallpaper offers 10000+ FREE cool 4K, HD wallpapers backgrounds for home screen and lock screen for you, get it now and you'll get a big surprise!

If you want to change your phone backgrounds everyday, WallO Wallpapers will be a good choice! You can personalize your phone with HD wallpapers, live wallpapers, 4D parallax wallpapers and gravity wallpapers. 10000+ exclusive cool wallpapers are designed for you!

Wallo Wallpapers is also a good wallpaper maker, just pick your favorite photos or images, you can create amazing cool backgrounds , exclusive high-quality wallpapers are available for you! A easy way to create cool wallpapers and refresh you phone, come on and try it to impress your friends!

Features:
-10000+ excellent cool wallpapers
-Wallpapers for both lock screen and home screen
-Daily updates! New wallpapers New Day!
-Supports HD wallpapers, 4K wallpapers, Live video wallpapers,4D Parallax wallpapers and Gravity wallpapers to use as backgrounds
-Many different categories
-Custom Cool Wallpaper Maker
-Save battery and resources
-Free wallpapers
-Easy to use

Get the coolest wallpaper to save your day! Install WallO Wallpapers now, stand out from the crowd!\",\n \"scoreText\": \"4.9\",\n \"score\": 4.8782053,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=cool.wallpapers.themes.widget.icon.background.pack\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/cool.wallpapers.themes.widget.icon.background.pack/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/cool.wallpapers.themes.widget.icon.background.pack/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/cool.wallpapers.themes.widget.icon.background.pack/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/cool.wallpapers.themes.widget.icon.background.pack/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Shiftsmart Partner\",\n \"appId\": \"com.shiftsmart.workerapp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.shiftsmart.workerapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/rnjXAM-s-TKBBuaLPRHZmrCVsRViZVFLGL0AASdXmGZCYJbbNZtmk1Owo-LbEgPIiJE\",\n \"developer\": {\n \"devId\": \"Shiftsmart\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Shiftsmart\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Looking to earn more with flexible work? Shiftsmart can help.

Shiftsmart puts you in control of your schedule and your earnings. Find opportunities near you. Add extra shifts to your schedule. Get rewarded for your work & talent. And, make everyday payday!

To get started, sign up in the Shiftsmart Partner app. You'll see new work opportunities in as little as 24 hours.


We love hearing from you! Reach out to our team at community@shiftsmart.com with questions and feedback.\",\n \"scoreText\": \"3.6\",\n \"score\": 3.6397748,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.shiftsmart.workerapp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.shiftsmart.workerapp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.shiftsmart.workerapp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.shiftsmart.workerapp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.shiftsmart.workerapp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Subway®\",\n \"appId\": \"com.subway.mobile.subwayapp03\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.subway.mobile.subwayapp03\",\n \"icon\": \"https://play-lh.googleusercontent.com/A9_9_JpCe_K0bNUJ8ZZfHT_TqgqwOynVXjZ7L06ZKY6E4-nZOTsVFXYy3sTIGAeNLpM\",\n \"developer\": {\n \"devId\": \"SUBWAY Restaurants\",\n \"url\": \"http://gplayapi.srik.me/api/developers/SUBWAY%20Restaurants\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"●\\tCustomize Your Way: Like extra cheese? Us too. Build your own Footlong just like you do in the restaurant. Swap your condiments, pick your toppings, or toast your bread — the opportunities are endless.
●\\tFind Rewards: Join MyWay and earn every time you order. You’ll get access to exclusive deals, promos, and member-only rewards. Saving is easier than ever.
●\\tRapid Re-Order: Find your favorites in a snap. Get your last order in a single tap, right from the dashboard.
●\\tGet Fresh Fast: Choose Pick Up, Curbside, or delivery. What are you waiting for?\",\n \"scoreText\": \"4.5\",\n \"score\": 4.454796,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.subway.mobile.subwayapp03\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.subway.mobile.subwayapp03/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.subway.mobile.subwayapp03/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.subway.mobile.subwayapp03/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.subway.mobile.subwayapp03/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Wide Clean: Cleaner & Booster\",\n \"appId\": \"com.widestudio.clean\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.widestudio.clean\",\n \"icon\": \"https://play-lh.googleusercontent.com/gv-MT0f-wQ_6lCKk9sULKDv12S8VuHFnBPmf4NI8At7F4OpQ2mwUROe10Bn-o6ploBsH\",\n \"developer\": {\n \"devId\": \"Wide Clean Studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Wide%20Clean%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Wide Clean is a smart, fast and lightweight mobile phone optimization tool. It can clear junk files, remove cache, release storage space hence boosting phone performance and speed.
Wide Clean with features: Junk Clean, Phone Boost, Power Saving, CPU cooler, and Notification Blocker.

Main feature highlights:
【Junk Clean】Delete unnecessary data, cache files, redundancy, and so on with our smart junk clean engine. Help you save more storage space.

【Phone Boost】With just one click, Wide Clean can free up memory to make your phone lighter and faster.

【Power Saving】Analyze battery usage and monitor all apps that drain power while not in use. Hibernating the apps to stop battery draining and extend battery life.

【CPU Cooler】Intelligently detects and closes battery-draining apps to reduce CPU usage hence reducing phone temperature which helps you a lot when watching videos or playing games

【Notification Blocker】 Turn off notifications for some apps to reduce disturbances. Give you a clean and refreshing notification bar, important notifications at a glance!

If you have any question or suggestion, please contact us!
Email: widecleanstudio@gmail.com.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1769233,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.widestudio.clean\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.widestudio.clean/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.widestudio.clean/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.widestudio.clean/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.widestudio.clean/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"MySecurityPal\",\n \"appId\": \"com.coobox.securitypal\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.coobox.securitypal\",\n \"icon\": \"https://play-lh.googleusercontent.com/HfKRJ87iowAIIkivcZ1-xpfdkx9x1KhBPbwCSCBW-TukLVOd2lZp6a_hG0zv5PaxtYQ\",\n \"developer\": {\n \"devId\": \"COOBOX\",\n \"url\": \"http://gplayapi.srik.me/api/developers/COOBOX\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Mobile antivirus and security is the most important thing that we should face to. Lots of sensitive privacy data, bank, contacts, photos, message in our mobile. How can you stay safe from viruses, Spyware, Trojans, malwares, vulnerabilities, adwares, Privacy snoopers, extortion? How to clean viruses and remove viruses ? Antivirus is good at doing this.

Security free antivirus can help you to stay safe, protect your privacy. Warning suspicious, clean viruses , spyware, blackmail and Trojans.

New features:
Security Antivirus & Virus Clean
Protect your Private, Photos, Bank and Account information etc. Keep your android safe and secure, This is Antivirus Master.
Protecting your mobile from any of extortion Virus, malware, adware or Trojans, able to offer the best anti virus protection service globally.

JUNK FILE CLEANING
Max Clean up junk files, clear residual files, no unused apks and cache to free up storage, boost speed and improve the performance of your Android device. Keep your phone clean and fast. This is a master for clean mobile.

MEMORY BOOST
Sometimes launch app need a long time? Irritability and unbearable. Booster can boost and speed up your Android phone! We use a new technology to speed up mobile, free up RAM and save battery, normally 30% of memory can be released, you can get more available memory by booster. We use the features of android system itself to boost, no root privileges are required, safe and efficient. cool boost, right? Create 1 Tap Boost shortcut to speed up android device easily from your home screen.

Privacy Risk Detect
Mobile Security Analyze, WiFi Security Analyze, Browser Security Check, make sure your mobile is protected, away from any of extortion Virus, malware, adware or Trojans.

Fast Security Scan by One Tap
Both Local AntiVirus Security Engine and Cloud Security Service. Fast check out virus, malware, adware or Trojans and clean them.

Security Free with Antivirus ! 100% free download, get the best antivirus NOW !\",\n \"scoreText\": \"4.5\",\n \"score\": 4.482143,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.coobox.securitypal\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.coobox.securitypal/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.coobox.securitypal/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.coobox.securitypal/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.coobox.securitypal/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"GPS, Maps, Voice Navigation & Directions\",\n \"appId\": \"com.maps.voice.navigation.traffic.gps.location.route.driving.directions\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.maps.voice.navigation.traffic.gps.location.route.driving.directions\",\n \"icon\": \"https://play-lh.googleusercontent.com/NrK0b-e6cpj4yYkDuNZJHO9KUAl8pSj9TGi4Xw4GbPZ6UVsnAlLBH2AZuEMpb24Xig\",\n \"developer\": {\n \"devId\": \"AppStar Studios\",\n \"url\": \"http://gplayapi.srik.me/api/developers/AppStar%20Studios\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Find shortest routes and directions to any destination in the world using GPS, Maps, Voice Navigation & Directions app.

It’s never easy to get to the desired destination fast and easy. Without the right Driving Directions it can be very easy to get lost in the city, which is why GPS, Maps, Voice Navigation & Directions app is here to help you. This app provide you Live Maps, Voice Navigation, Traffic Alerts, accurate Driving Directions needed to reach your destination.

Comprehensive Driving Directions, Voice Navigation:
If you want to use GPS, Maps, Voice Navigation & Directions while driving you can totally do that. You can obtain Driving Directions with simple voice commands using GPS Voice Navigation feature. Voice Navigation will help you to find any shortest driving directions with simple voice commands.

GPS Navigation:
With GPS, Maps, Voice Navigation & Directions comes you can easily see where you are located and how to reach desired location by using GPS Navigation on Map. Live Street View Navigation Map will help you to find Street Views to easily understand your current location. Satellite Earth view is best to explore new famous places & draw routes on Map with travel information, safe & fastest route. Real-time GPS transit map is best journey assistance, free navigation and GPS direction maps.

Traffic Alerts: Learn the Traffic conditions.
Before you leaving your current location its better to understand traffic around you so that you can reach your destination on time in shortest route. Traffic alerts will help you to understand live traffic conditions around your current location.

Near By Places:
With the help of GPS, Maps, Voice Navigation & Directions app you can explore various neighborly places on Map like Hotels, Restaurants, Hospitals, Pubs, Clubs, Fuel Stations, Airports, Public Transport, Schools, Theaters, Temples, Church and many more. You can also see neighborly place and their Comments, User Ratings and location details.
Travel History or Mobile Location History:
With help from GPS, Maps, Voice Navigation & Directions you can also see your Travel History and Mobile Location History on regular basis. You get to see what place you have explored.

Digital Compass:
Digital Compass can be accessed on your Maps, Camera and Satellite Maps to have clear view on Directions of GPS.

Live 3D Maps:
GPS, Maps, Voice Navigation & Directions gives you stunning 3D maps and live maps using Maps that you can see right away. 3D Maps will help you to track your exact location around your near by place so that you can track your current location on 3D Maps with pinpoint accuracy. 3D Maps are always a great option to view any location in 3D view.

Street View:
Since GPS, Maps, Voice Navigation & Directions app gives you access to Maps, you also get to see Street View. This way you get to connect with your local area before visiting it. You get a feel for that place and you can access it as well as enjoy it as you see it. Street View is amazing when you want to see un visited locations right from your phone.

Share your location
Be it for safety purposes or not, you can easily share your location with others using GPS, Maps, Voice Navigation & Directions app. This way people will know where you are and they will come to you as fast as possible.

Features:
* GPS Navigation
* Voice Navigation
* Driving Directions
* Live Maps
* Digital Compass
* Traffic Alerts
* Street View, 3D Maps.
* Near By Places.

With help from GPS, Maps, Voice Navigation & Directions app you finally get to find routes and directions in any city. You won’t ever get lost again, as GPS, Maps, Voice Navigation & Directions has live maps, 3D maps and routes to any location.

Follow Us On:
https://twitter.com/AppstudiosGps
https://www.facebook.com/gps.appstudios/
https://in.pinterest.com/gpsappstudios/
https://www.instagram.com/gpsmaps.appstudios/\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0906343,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.maps.voice.navigation.traffic.gps.location.route.driving.directions\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.maps.voice.navigation.traffic.gps.location.route.driving.directions/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.maps.voice.navigation.traffic.gps.location.route.driving.directions/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.maps.voice.navigation.traffic.gps.location.route.driving.directions/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.maps.voice.navigation.traffic.gps.location.route.driving.directions/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Hopper: Hotels, Flights & Cars\",\n \"appId\": \"com.hopper.mountainview.play\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.hopper.mountainview.play\",\n \"icon\": \"https://play-lh.googleusercontent.com/r6tUNKZ1tOURyvZIr5z-5pVfOAerB1hUeOiiY-Tqjrsw0MFv9BnFjijqS5yrfNsANQ\",\n \"developer\": {\n \"devId\": \"Hopper Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Hopper%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Relax — booking travel just got easy.

Hopper predicts prices for flights with 95% accuracy up to 1 year in advance. You can watch a trip right in the app and we’ll send you a notification when it’s the best time to buy — recommending you to book now, or maybe wait just a little longer.

We’ve helped over 30 million travelers book trips around the world, saving them more than $1.8 billion to date. That’s a saving of up to 40%.

Hopper features the major airlines in the US, Canada and around the world such as American Airlines, United Airlines, JetBlue, Alaska Airlines, Air Canada, Frontier, Spirit Airlines, Hawaiian Airlines, Air Transat, WestJet, British Airways, Air France, Lufthansa, KLM & many more.

Search Flights
Millions of flights from around the world, at the best possible price.

Plan Less, Travel More
Instantly identify the cheapest dates with our calendar.

Buy, or Watch and Wait
Book flights straight away, or wait for a better price.

Get Notified
When it’s the best time to buy, our bunnies will let you know.

Book in App
Grab flights quickly and securely, right in the app with a swipe.

Some of the other awesome things you can do with Hopper:
• Find the cheapest days to travel using our color-coded calendar.
• Use filters to get custom predictions that suit your trip — removing long layovers, stops, or basic fares that have extra fees and restrictions.
• Get information and tips about airports.
• Compare prices and amenities from hundreds of airlines around the world.
• Receive personalized recommendations about deals you might like based on previous trips and your budget.
• Save your bunny profile and payment details securely for even faster booking.
• Our gentle Fair Bear will give you an overview of all the important details in the fine print. He’ll let you know about all the bits and pieces, like carry-on allowances to seat selection.
• Get help 24/7 from our support agents, made up of actual, real bunnies, sorry no, real humans.

Hopper has no ads, no spam, and no stress — just accurate predictions and the easiest way to book and save on flights.

So relax — booking travel just got easy. Oh, and it’s free! So download Hopper and let’s start planning your trip.

Hopper Love
• “The 10 Best Free Apps for Air Travel Junkies” - TIME
• "How Well Do Airfare Predictors Work? Hopper: 8/10, Kayak: 6/10, Google Flights: 0/10” - WSJ
• “List reveals a number of apps from lesser-known travel services that bear looking into: Hopper, HotelTonight, trivago, Skyscanner” - AirfareWatchDog
• “Compared to exact searches on Expedia, Kayak, and Orbitz, we regularly found that the best deal quoted on Hopper was the best” - Travel and Leisure
• “Don’t neglect stand-alone airfare apps, including Hopper, Kiwi and Hitlist” - The Washington Post

Say Hello to the Bunnies
Facebook: https://www.facebook.com/hoppertravel
Instagram: @hopper
Twitter: @hopper
Website: https://www.hopper.com

Have a question or some feedback? Give us a shout at help@hopper.com and our bunnies will get back to you.\",\n \"scoreText\": \"3.9\",\n \"score\": 3.8773506,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hopper.mountainview.play\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.hopper.mountainview.play/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.hopper.mountainview.play/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.hopper.mountainview.play/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.hopper.mountainview.play/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Faster Cleaner\",\n \"appId\": \"com.cleaner.fastcleaner.booster.security.clean\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.cleaner.fastcleaner.booster.security.clean\",\n \"icon\": \"https://play-lh.googleusercontent.com/8-8CpoT5xXHsHXDXohVU5Hb5WVqQREpGwUdzG6oyNVq0zEnEWmPYSoyeZ3MXfKpRglY\",\n \"developer\": {\n \"devId\": \"Clean Booster Dev\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Clean%20Booster%20Dev\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Faster Cleaner is a professional management software for phone, Clean up junk files, speed booster and protect against viruses!
Help you free up space on your phone,Keep your personal data safe.Maintain a smooth and secure phone for you!

⭐Faster Cleaner Key features⭐

🚀Junk Files Cleaner
Intelligently scan junk and useless files including system and app caches, release the storage space with just one tap.

⚡Phone Booster
Quickly release the background running program with one tap,Speed up the operation of the device.

👿Free Security
Scan for viruses and other kinds of malware, including spyware, Trojans, and more. Block and remove viruses to keep your phone safe and protect your privacy with Faster Cleaner's free antivirus engine. Our protective engine is certified by TRUSTLOOK!

🔋Battery Saver
Analysis of power consumption applications and sleeping running applications,Reduce power consumption and extend battery life.

❄️CPU Cooler
Dynamically analyze and optimize your CPU usage, reduce CPU temperature to a minimum and improve performance, thus greatly extending the service life of your phone.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.547437,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cleaner.fastcleaner.booster.security.clean\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.cleaner.fastcleaner.booster.security.clean/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.cleaner.fastcleaner.booster.security.clean/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.cleaner.fastcleaner.booster.security.clean/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.cleaner.fastcleaner.booster.security.clean/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Facemoji Emoji Keyboard&Fonts\",\n \"appId\": \"com.simejikeyboard\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.simejikeyboard\",\n \"icon\": \"https://play-lh.googleusercontent.com/NIFe3TbPyJ_QqSLBJCeDMT-1Fzkzady2mRmG7OJMS1AJQmYvTeWSGuZ37wLaEyLB9g\",\n \"developer\": {\n \"devId\": \"EKATOX APPS\",\n \"url\": \"http://gplayapi.srik.me/api/developers/EKATOX%20APPS\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Facemoji Emoji Keyboard is a Free, Fully Customized, All-in-1 Keyboard with super-rich content and powerful features! With 5000+ Emoji, WhatsApp Stickers, Emoticon, Kaomoji, GIF, Cool Fonts, TikTok Emojis, Auto-Paste, Cute Symbols, Stylish Themes on this emoji keyboard, Facemoji Emoji Keyboard spice up your chats and posts on WhatsApp, TikTok, Instagram, Messenger, Facebook, Telegram, Snapchat, Twitter, Pinterest, Discord, SMS, etc. Texting has never been more fun with this hottest emoji keyboard in 2022!

Check out all K-Pop content for you! Type "BTS", "Blackpink" or other groups on this emoji keyboard, you will see a surprise!

Easy to send 5000+ Emoji, Emoticon, Free Stickers, Emoji Art, Text Art, Symbols, GIFs
- All NEW emojis for 2022 is now available on Facemoji Emoji Keyboard, check out the latest trending emojis!
- Best TikTok Keyboard with hidden secret Tiktok emojis
- Special and unique emojis you have never seen in other keyboard!

Whatsapp Sticker keyboard & Tenor GIF keyboard
- Facemoji keyboard’s 2000+ Cute Stickers are all compatible and look very nice in Whatsapp, Messenger and Telegram! We even have Kpop stickers such as BTS stickers and Blackpink stickers.

Custom Keyboard & Photo Keyboard + 1000+ Fancy Keyboard Themes
- Make your own keyboard wallpaper with your favorite photo/picture, DIY keyboard such as customize buttons, colors, fonts, tapping effects(like BTS lightsticks), tapping sound(piano, guitar, dog barking) to decorate your emoji keyboard. Share and your friends can use the same custom keyboard designed by you!
- 1500+ FREE stylish themes such as Japanese anime, Neon keyboard, LED keyboard, RGB keyboard, K-Pop idols, cute animals, Boba milk tea, Avocado, Ironman, Unicorn, Animated themes…New themes are added weekly!

Cool Fonts Keyboard & Unicode Symbol Keyboard
- Enjoy typing with 50+ different aesthetic font style
- Create your stylish message with fancy fonts on your Instagram bio and Tiktok post!
- Do you know how many heart symbols you can type with Facemoji Keyboard? We have over 1000 unicode symbols and nickname templates!

Auto Paste keyboard & Clipboard
- How to send fast messages? We have a paste keyboard where you can just long click and send repeatedly!
- Clipboard keyboard to save your ALL your copied notes and send in 1 click

Kaomoji Keyboard, Text art and more
- Express your emotions with Kaomoji and Emoticon keyboard
- Funny Emoji Art & Text Art to attract followers in TikTok/Instagram
- We create Emoji Art like Minecraft, Demon slayer, Squid Game with just Emojis!
- Funny Quotes / Jokes / Pick up lines / Fairy Comments you can find here

Game Keyboard for Among us, Roblox and Minecraft
We built a special keyboard for Among us! You can Win every game easily by 1 tap on quick message, player color and location in our Among us keyboard! Our game mode also supports Roblox, Free Fire, Pubg, Mobile legends etc.

Fast Typing & Smart Suggestions
- Creative Emoji suggestions and Emoji predictions
- Sticker Predictions in WhatsApp and Messenger
- Swipe keyboard: Type faster with smooth gesture typing
- Smart Autocorrect: Automatically Fix all the Typos for you!

Bilingual Keyboard supports 100+ languages + built-in Translator
- Easily switch language by swiping space bar
- Just type and auto-translate to 25+ languages with our keyboard translator!
- QWERTY keyboard and different keyboard layout for you to choose

Custom Keyboard Themes Community
- Check out the most beautiful emoji keyboard designed by others, and see what ranking your own one can get!

Privacy and security
Facemoji Keyboard will NEVER collect any personal information without your explicit permission.

Connect with us:
TikTok: tiktok.com/@facemojikeyboard (We have over 2 Million followers!)
Instagram: instagram.com/Facemojikeyboard
Twitter: twitter.com/FacemojiApp
This will be the Funniest typing experience you ever have and it is for Free. Let's download and try Facemoji Emoji Keyboard right Now!\",\n \"scoreText\": \"4.8\",\n \"score\": 4.761756,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.simejikeyboard\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.simejikeyboard/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.simejikeyboard/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.simejikeyboard/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.simejikeyboard/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Screen Recorder - XRecorder\",\n \"appId\": \"videoeditor.videorecorder.screenrecorder\",\n \"url\": \"http://gplayapi.srik.me/api/apps/videoeditor.videorecorder.screenrecorder\",\n \"icon\": \"https://play-lh.googleusercontent.com/RX8RBGnnxFgncaU649msEAdLpQmXiSlzAZrjOtdSnvyptB16wWlQNFdRrMWNSdkIQ2tn\",\n \"developer\": {\n \"devId\": \"InShot Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/InShot%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"NO watermark
NO root needed
NO recording time limit

Screen Recorder & Video Recorder - XRecorder helps you capture smooth & clear screen videos, screenshots in the easiest way. Just with a tap on the floating ball, you can record HD video tutorial, video calls and videos that can not be downloaded. And you will never miss live game shows, and important moments anymore.

Download XRecorder to capture anything you like!

🏅TOP FEATURES:
● Capture screen to take a clear Screenshot
● Record Gameplay on your phone
Internal audio recording without noise (ONLY Android 10 or above)
● YouTube & RTMP Live stream: be a gaming streamer to gain fun and popularity
Facecam: express reactions freely with multiple camera switch
Brush Tools: draw on the screen to make your screen capture extra special
Video Editor: trim, remove the middle part, add music and speed control
● Maximum 120 FPS recording support to enjoy the ultimate visual experience
● Export Full HD video with custom settings: 240p to 1080p, 60FPS, 12Mbps


Pro Video Recorder:
● Customize floating ball style & opacity: a tailor-made one only for you
● One-tap Trash control: Enable or Disable it as you like
No watermark: record a clean video & screenshot
● No recording time limits & No root needed
Floating window: One touch to snap the exact moment or hide it when it’s not needed
Custom Floating Window: show recording time or minimize it & replace button function
Countdown timer: to be a fully prepared recorder
Trash Bin: immediately recover deleted photos, videos, etc. within 3 days
● Alternative storage location: internal storage/ SD card
● Easy to pause/resume recording, rotate screen


Video Recorder with multiple editing tools:
● Video trimmer: Trim, Cut and Split video to make it a better artwork
● Crop & Rotate video left, right or any other angle
● VIdeo for all platforms: adjust Ratio and Background fit for any occasion
● Music video maker: add popular music in your video
● Funny Sticker and Text to personalize your screen capture
● Stylish Filters: Story, Vintage, Lomo, etc. always a right for you
● Speed up/Slow down to adjust video pace
● Save as draft to make continuous editing possible


📼Screen Recorder in FULL HD
Screen Video Recorder - XRecorder supports recording game screen in the highest quality, 1080p, 12Mbps, 60FPS. Of course, you can record screen with adjustable resolution(240p to 1080p), quality, and FPS(15FPS to 60FPS).

🎉Screen Recorder with Facecam
Screen Recorder with Facecam helps you record your face and reaction in a small overlay window. It can be dragged freely to any position on the screen and customized to any size.

🏆Game Recorder with no Time Limit
Still looking for a gameplay video recorder to witness glorious moments? Just try XRecorder to enjoy the smoothest gameplay screen capture. It helps you record gameplay video without time limit.

📹Screen Video Recorder with no Watermark
Still find a screen capture tool without watermark? Download this video recorder to capture screen in a cleaner way. If you want to capture screen, record screen or take a screenshot efficiently, it is a must-have screen recorder.

🎧Screen Recorder with Audio
Want to record gameplay, video tutorial with audio? This powerful screen recorder with audio/sound will record your voice & internal audio fluidly and clearly. Download this fantastic screen recorder with audio - XRecorder to record your own video now.

Thanks for downloading Screen Recorder - Video Recorder. If you want to get support and share your ideas with more friends or have any feedback:
Join us at: https://www.reddit.com/r/XRecorder/
Email us at: xrecorder.feedback@gmail.com
\",\n \"scoreText\": \"4.8\",\n \"score\": 4.782576,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=videoeditor.videorecorder.screenrecorder\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/videoeditor.videorecorder.screenrecorder/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/videoeditor.videorecorder.screenrecorder/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/videoeditor.videorecorder.screenrecorder/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/videoeditor.videorecorder.screenrecorder/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"STARZ\",\n \"appId\": \"com.bydeluxe.d3.android.program.starz\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.bydeluxe.d3.android.program.starz\",\n \"icon\": \"https://play-lh.googleusercontent.com/3k9_BX6SKqQOu_jPxGlm8tvI5lKrxOOjUreqoJIGuWS1rBPiLlwBAHfS58j70vxwhNc\",\n \"developer\": {\n \"devId\": \"Starz Entertainment, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Starz%20Entertainment%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"CLAIM YOUR SPECIAL OFFER NOW! ONLY $5/MO FOR YOUR FIRST 3 MONTHS!

Designed to be the ultimate fan experience, the STARZ app lets you download full movies and shows and watch them off-line, anytime, anywhere. That’s premium entertainment you can take with you, at an unbeatable price.

If you’re already a STARZ subscriber through a TV provider, you can download the app right now and enjoy at no additional charge through your TV subscription. Or, subscribe to STARZ direct through the app and claim our special offer ($5/mo for 3 months). No other subscription to any other service is required.

Here’s what you get:
• FULL downloads of original series and movies.
- Getting ready for a flight? Download whatever you need before take off, and watch on your schedule.
- Going somewhere without internet access? No problem. Select the shows and movies you want, download them ahead of time, and watch later at your leisure.
- This is the premium entertainment app that puts you in complete control of your viewing experience.

• New movies and original series are added every week, giving you more choice and greater options.

• A different genre for every mood or occasion. Not only drama, comedy, western, and family, but sci-fi, action, adventure, documentary, film noir, romance, war, suspense, thriller, chiller, horror, fantasy, gangster, historical, musical, urban, mystery, magical, satirical, and, well…you get the picture.

• Ready to get started? Here’s what to do:
1) Download the STARZ app.
2) Claim your special $5/mo for 3 months offer. You can cancel at any time.
3) Create your STARZ profile and stream on Android devices or the web at STARZ.com.
4) Enjoy STARZ at our special price $5/mo for 3 months, then just $8.99 per month

STARZ online services are only accessible through participating partners in the U.S. and certain U.S. territories where a high-speed broadband connection is available. Service automatically rolls to month-to-month after the promotional period. Prices may vary. STARZ and related service marks are the property of Starz Entertainment, LLC.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5709877,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bydeluxe.d3.android.program.starz\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.bydeluxe.d3.android.program.starz/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.bydeluxe.d3.android.program.starz/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.bydeluxe.d3.android.program.starz/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.bydeluxe.d3.android.program.starz/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Southwest Airlines\",\n \"appId\": \"com.southwestairlines.mobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.southwestairlines.mobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/vrjZfz_lztdUB8Aai-hyM7esx1Ru9Jm5pPsvtuHxTub64v4ekRe8RxqnuXhTdiO6vXs\",\n \"developer\": {\n \"devId\": \"Southwest Airlines\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Southwest%20Airlines\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Book a flight in just a few easy steps
Check in, change or cancel your flights. Plus, add extras like EarlyBird Check-In®.

Super-Fast Shopping & Booking
Book a trip in just a few quick taps. Make it even faster when you use your stored credit cards or PayPal® account.

Everything you need to Travel
Get the information you need right at your fingertips on the home screen - gate information, boarding position, flight status and more.

Boarding Pass on the Go
Get mobile boarding passes for all passengers on your trip 24 hours in advance. Southwest passes have rich color and bold font, which makes seeing your Gate and Boarding Position very clear. Find the details you need quickly: Flight Number, Confirmation Number, Boarding Time, Tier Status, and TSA Pre-Check. Don’t forget to add your Mobile Boarding Passes to Google Pay!

Travel Funds
You can now use Flight Credits, Southwest LUV Vouchers and Gift Cards when changing your flight in the app. Your unused Southwest® Flight Credits show up automatically when you tap ‘View Funds’ within ‘My Account’.

Inflight Entertainment*
Use the app to take you to our Inflight Entertainment Portal where you can watch free live TV1, listen to free music from iHeartRadio1, access free on-demand TV episodes, and view free movies.
*Available only on WiFi-enabled aircraft. Limited time offer. Where available. 1Due to licensing restrictions, on WiFi-enabled international flights Free Live TV and iHeartRadio may not be available for the full duration of flight.

Live Chat
Contact our Customer Representatives through Live Chat by scrolling down to Contact Us in the navigation drawer, and then tap on “Chat”.

Airport Pickup and Drop-off
Thanks to our partnership with Lyft®, you can now use the app to help you request a Lyft®! You’ll know key information like estimated time of arrival and estimated price before booking. More of a rental car person? You can do that in the app, too.

Cars, Hotels, and Vacations
Use our app to quickly book all of your travel needs.

Earn Rewards when you Travel
Sign up for Rapid Rewards® and earn points on your flights. Did you forget to add your Rapid Rewards number during booking? – No worries, you can add it after booking your flight and still earn points. You can then use those points to purchase more flights!\",\n \"scoreText\": \"4.7\",\n \"score\": 4.694546,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.southwestairlines.mobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.southwestairlines.mobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.southwestairlines.mobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.southwestairlines.mobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.southwestairlines.mobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Video Editor & Maker - InShot\",\n \"appId\": \"com.camerasideas.instashot\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.camerasideas.instashot\",\n \"icon\": \"https://play-lh.googleusercontent.com/mjmbWruxfo8oYHsBNI7b76KLj1AEJQo7hXwlmi05EvfFwubOjo8nQJrVEHRe4Vbgpo8\",\n \"developer\": {\n \"devId\": \"InShot Video Editor\",\n \"url\": \"http://gplayapi.srik.me/api/developers/InShot%20Video%20Editor\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"InShot - Powerful all-in-one Video Editor and Video Maker with professional features. Add music, transition effects, text, emoji, keyframe, slow motion, make video collage, blur background and etc! As an easy-to-use editing app, InShot helps you record every precious moments of daily life.

Top video maker with music, helps you create fancy video with ease and be an influencer on YouTube, Instagram, TikTok, WhatsApp, Facebook, etc.

InShot is also a photo editor. Edit pictures and selfie, make collage and add text and stickers. Make stories for Instagram.

Features:

Basic video editing
* Trim and cut videos. Split one video into several clips.
* Merge videos. Merge multiple clips into one. Combine and compress video without losing quality.
* Crop. Cut out the unwanted parts of the screen.
* Adjust ratio. Fit your video and photo in any aspect ratio.
* Adjust speed. From 0.2x to 100x.
* Reverse. Rewind the clip.
* Make photo slideshows. And you can also make stop motion video.

Advanced video editor
* Keyframes. Add keyframe animations to text, stickers, and PIPs.
* Picture-in-Picture (PIP). Add video and photo layers above the clip. Make video collage easily.
* Chroma key. Removes the selected color. You can use this tool to create green screen videos.
* Mask. Add a shape mask to the PIP.
* Mixtures. Blend your video with blend mode.
* Color picker. Pick any color on the screen and apply it to the background/text.
* Voice changer. Add voice effect to clip and voice-over, make video editing more fun.

Music, effects & voice-over
* Vlog music video maker. Add InShot featured music or use your own music.
* Extract audio from video.
* Lots of sound effects.
* Add voice-over. Support adding voice effect and make the voiceover more diverse.
* Adjust music volume and music fade in/out option.

Filters & Effects
* Add movie style video filters and full effects such as Glitch effect, stop motion, Retro, RGB, etc.
* Adjust video brightness, contrast, saturation, etc. Customized video filters and video effects.
* Pro editing app with 60+ awesome transitions. Combine two clips with transition effects.

Text & Stickers
* Add text to videos and photos. Many fonts are available. Add subtitles for your vlog.
* Add animated stickers and emoji. Various and unique stickers. Aesthetics, doodle, birthdays, neon, etc.
* Edit the text and stickers with keyframe animation effects.
* Add custom memes and images to videos and photos.

Canvas & Background
* Various background patterns. And you can also upload your own pictures as a background.
* Adjust video ratios. 1:1 for Instagram, 9:16 for TikTok and 16:9 for YouTube.

Photo Editor & Collage
* Add background to your photos.
* Multiple ratios supported. Cute frame.
* 1000+ stickers, add funny memes to your photos.
* Create photo collages. Lots of stylish collage layouts available.

Easy to Share
* Custom video export resolution, HD pro video editor support 4K 60fps export.
* Share your daily life to others on social media. Instagram, TikTok, Whatsapp, etc.

InShot is an editing app for videos and photos. With InShot, you can easily make basic video and even advanced assets like video collage, slow motion, stop motion, reverse video and more. You can share your vlogs to social media to get more likes, or edit video with music and pic for TikTok.

Any questions for InShot (FREE video editor with music & photo slideshow maker)? Please contact us at inshot.android@inshot.com

Disclaimer:
InShot is not affiliated, associated, sponsored, endorsed by, or in any way officially connected with YouTube, Instagram, TikTok, WhatsApp, Facebook, Twitter.

Acknowledgements:
FUGUE Music https://icons8.com/music/\",\n \"scoreText\": \"4.8\",\n \"score\": 4.833151,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.camerasideas.instashot\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.camerasideas.instashot/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.camerasideas.instashot/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.camerasideas.instashot/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.camerasideas.instashot/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"CC Booster\",\n \"appId\": \"com.cherrycoop.andnew.ccbooster\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.andnew.ccbooster\",\n \"icon\": \"https://play-lh.googleusercontent.com/VG8APY5E3NHFT30c-5j5OGorPxJoFFvIuX3pMnl0WjUKTjJYvw8zorxbHV42B5tNNec\",\n \"developer\": {\n \"devId\": \"Ruosi Studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Ruosi%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"CC Booster is a powerful app that can quickly and easily remove junk, clear memory and make your phone run more smoothly. Download CC Booster and enjoy a lighter and speedier Android phone.

Why CC Booster is a MUST-HAVE app?

🔥 Clean Up Phone
CC Booster effectively cleans up junk and unnecessary files with one click, and improves the efficiency of mobile phone operation. With our professional cleaning function, you can quickly clear cache data to free up more space on your phone.

🚀Phone Booster
Free up RAM with one click to speed up your phone. CC Booster will detect and terminate all the processes occupying a huge part of the storage space, boosting memory for better performance, and effectively improve the performance of mobile phones.

🔋 Battery Saver
CC Bootser helps to save battery power by hibernating running applications, and detects the remaining battery power in real time.

📂 Intelligent Classification
Your files are automatically sorted by their types and characteristics so that you can easily find what you are looking for.

👋More features coming soon!

👉 If you encounter any problems during use, please contact us by email: liruoxin68991@gmail.com

If you like it, please rate us 5 stars! ⭐️⭐️⭐️⭐️⭐️\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5544553,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cherrycoop.andnew.ccbooster\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.andnew.ccbooster/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.andnew.ccbooster/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.andnew.ccbooster/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.cherrycoop.andnew.ccbooster/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Chick-fil-A®\",\n \"appId\": \"com.chickfila.cfaflagship\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.chickfila.cfaflagship\",\n \"icon\": \"https://play-lh.googleusercontent.com/yF2S41QGnGWs7JCD-t6L6AJ4KIm2ybwM0lirAiHQZR2ZKjbvYAgQ4e0MFVXYVLQWWA\",\n \"developer\": {\n \"devId\": \"Chick-fil-A, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Chick-fil-A%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"FEATURES
Welcome to the Chick-fil-A® App. Find a restaurant near you and order ahead.
Chick-fil-A One® Members can receive points with qualifying purchases, redeem
available rewards of your choice and reach new tiers with increasing benefits.
1. Find restaurants - Find Chick-fil-A® restaurants near you while searching from home
or out and about.
2. Order Ahead – Place your order through your phone and pay, choose your preferred
pick-up method, and let us know when you arrive.
3. Receive points – Receive points with every qualifying purchase by scanning your QR
code in the Chick-fil-A® App, paying with your Chick-fil-A One digital gift card, or placing
mobile orders at participating Chick-fil-A® restaurants.
4. Redeem rewards – Use your points to redeem available rewards of your choice,
including: free food rewards, birthday rewards, meal donations and more.
5. Personalized menu – We’ll remember what you like and – even better – how you like
it.

Note on Location Services: Continued use of GPS running in the background can dramatically decrease battery life. We ask permission to use GPS only to support local offers and promotions, restaurant location finder, and mobile ordering check-in.

Chick-fil-A, Inc.'s Terms & Conditions of Use: https://www.chick-fil-a.com/legal#terms_and_conditions

Chick-fil-A One® Terms & Conditions: https://www.chick-fil-a.com/legal#chick-fil-a_one_terms_and_conditions

Privacy Policy: https://www.chick-fil-a.com/legal#privacy_policy\",\n \"scoreText\": \"4.5\",\n \"score\": 4.520442,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.chickfila.cfaflagship\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.chickfila.cfaflagship/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.chickfila.cfaflagship/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.chickfila.cfaflagship/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.chickfila.cfaflagship/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Seesaw\",\n \"appId\": \"seesaw.shadowpuppet.co.classroom\",\n \"url\": \"http://gplayapi.srik.me/api/apps/seesaw.shadowpuppet.co.classroom\",\n \"icon\": \"https://play-lh.googleusercontent.com/haooWmFnTmyVo32WsIvzMXCyKVlpZtdqeDbPtKu8cT4TgDtHAOq4rWzWtid9BQGW4xo3\",\n \"developer\": {\n \"devId\": \"Seesaw Learning\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Seesaw%20Learning\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With Seesaw, even our youngest learners can bring their ideas and imagination to life so that teachers, parents, and school leaders have a window into their minds – where phenomenal growth is taking place every day!

Join millions of Seesaw users who have created powerful learning communities with this game-changing educational resource.

For Students:
∙ Multimodal tools to increase engagement– video, audio, drawing, and more!
∙ Class journals to share and celebrate achievements
∙ Gradual increase of learning ownership and agency

For Families:
∙ Communicate easily with teachers–includes instant translation in 100+ languages
∙ Get insight into your child’s progress
∙ View and comment on your child’s work
+REQUIRES A SEESAW SIGN UP CODE FROM YOUR CHILD'S TEACHER+

For Teachers:
∙ Ability to design and share lessons
∙ Over 100k ready-to-teach learning activities
∙ Student grouping and simplified assigning
∙ Individual, group, class, and multi-class communication
∙ Progress monitoring
∙ Year-over-year portfolios

For Administrators:
∙ School or district-aligned activity libraries
∙ Schoolwide announcements
∙ Schoolwide visibility, data, and settings
∙ Additional standards-aligned curriculum options
∙ Regional data storage
∙ LMS and SIS integrations

Seesaw is COPPA, FERPA and GDPR compliant. Learn more at web.seesaw.me/privacy

Need help? Visit our Help Center at help.seesaw.me.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.1378884,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=seesaw.shadowpuppet.co.classroom\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/seesaw.shadowpuppet.co.classroom/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/seesaw.shadowpuppet.co.classroom/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/seesaw.shadowpuppet.co.classroom/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/seesaw.shadowpuppet.co.classroom/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Talking Ben the Dog\",\n \"appId\": \"com.outfit7.talkingben\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.outfit7.talkingben\",\n \"icon\": \"https://play-lh.googleusercontent.com/cvcQMYwlebh23KkUjShTZ4nzq1ubapxjOAjA5cdL41kdfOWKjfR7kgp0DOilfAnxTa8\",\n \"developer\": {\n \"devId\": \"Outfit7 Limited\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Outfit7%20Limited\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Ben is a retired chemistry professor who likes his quiet comfortable life of eating, drinking and reading newspapers. To make him responsive, you will have to bother him long enough that he will fold his newspaper. Then you can talk to him, poke or tickle him or even have a telephone conversation with him.

If you get Ben to his laboratory however, he becomes as happy as a puppy. There you can do chemistry experiments by mixing a combination of two test tubes together and see the hilarious reactions.

HINT: Record a funny video of your telephone conversation with Ben and send it to your friends.

HOW TO PLAY:
- Poke Ben's newspaper to make him fold it.
- Then you can talk to Ben and he will repeat.
- Poke or slap Ben's face, belly, feet or hands.
- Tickle Ben's belly.
- Poke or swipe Ben's graduation picture.
- Press the phone button and have a conversation with Ben.
- Record a funny video of your telephone conversation with Ben.
- Press buttons to make Ben eat, drink or belch.
- Press the chemistry button to switch Ben to the laboratory.
- Mix any two test tubes together and see the hilarious chemical reaction.
- Record videos and share them on YouTube or send them to your friends and family by email.

This app is PRIVO certified. The PRIVO safe harbor seal indicates Outfit7 has established COPPA compliant privacy practices to protect your child’s personal information. Our apps do not allow younger children to share their information.

This app contains:
- Promotion of Outfit7's products and contextual advertising
- Links that direct customers to our websites and other Outfit7 apps
- Personalization of content to entice users to play the app again
- Watching videos of Outfit7's animated characters via YouTube integration
- The option to make in-app purchases

Terms of use: http://outfit7.com/eula/
EEA privacy policy: https://outfit7.com/privacy/eea/
US privacy policy: https://outfit7.com/privacy/
Rest of the world privacy policy: https://outfit7.com/privacy/
Customer support: support@outfit7.com\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2490625,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.outfit7.talkingben\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.outfit7.talkingben/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.outfit7.talkingben/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.outfit7.talkingben/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.outfit7.talkingben/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"SuperVPN Fast VPN Client\",\n \"appId\": \"com.jrzheng.supervpnfree\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.jrzheng.supervpnfree\",\n \"icon\": \"https://play-lh.googleusercontent.com/dQMtsDSpDh9JzPQAxoYyWNQACqyagOUMe-l17uOgzXsU6fYkfGKKRSMTK4Rnz6ybavA\",\n \"developer\": {\n \"devId\": \"SuperSoftTech\",\n \"url\": \"http://gplayapi.srik.me/api/developers/SuperSoftTech\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"SuperVPN, total free VPN Service without any limitation.
Easy to use, one click to connect to VPN server.
Unlimited bandwidth and unlimited free time.
Fast servers across the world.

* Protect your privacy, keep you safe from 3rd party tracking
* Unblock geographically restricted websites
* No registration required, no settings required
* No speed limitation, no bandwidth limitation
* One-click to connect to VPN
* No root access needed
* Encrypt your internet traffic
* Top server speed & reliability
* Using most secure VPN solution

The app is free forever. There is no need to purchase if the free version is good enough for you. Purchasing VIP will remove ADs, give you faster speed and better experience. You can cancel VIP at any time and get a full refund.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6227274,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.jrzheng.supervpnfree\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.jrzheng.supervpnfree/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.jrzheng.supervpnfree/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.jrzheng.supervpnfree/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.jrzheng.supervpnfree/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"PlaySpot - Make Money Playing Games\",\n \"appId\": \"com.moregames.makemoney\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.moregames.makemoney\",\n \"icon\": \"https://play-lh.googleusercontent.com/NZMR39qnpQf4uqwJQ0CYUGenuyrDqtLiaKhKXpLp2-Hp9OiPIbJyDGfiqRez2vymCwtE\",\n \"developer\": {\n \"devId\": \"PlaySpot.io\",\n \"url\": \"http://gplayapi.srik.me/api/developers/PlaySpot.io\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"★★★★★ Discover the best games and MAKE MONEY for playing!

◉ PlaySpot allows you to earn cash for playing games

◉ Do what you do anyways, but make money at the same time!

◉ With PlaySpot you can make money playing games and watching videos.

★ Its super easy:

PlaySpot recommends games to you that you haven't seen anywhere else. You download them and the more you play the more you earn! You can cash out via paypal or amazon gift voucher! The best part about it is that you make money for playing them. This is a unique opportunity to discover the best mobile games AND earn cash. We also offer amazing deals as well as letting you watch videos, complete surveys and check out new apps.

★ Make Money
1. Simply download a game you like in the app PlaySpot. Play and Make Money!
2. You can get either an Amazon voucher or we pay you directly on Paypal!
3. Watch videos and fill out surveys to earn more cash with PlaySpot.
4. Also loads of other easy ways to make money on your phone.

For any questions or comments, feel free to contact us at: support@playspot.io

By downloading this app you are agreeing to our terms of service. These can be found here: > https://www.playspot.io/terms-of-use\",\n \"scoreText\": \"4.3\",\n \"score\": 4.312129,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.moregames.makemoney\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.moregames.makemoney/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.moregames.makemoney/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.moregames.makemoney/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.moregames.makemoney/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Super VPN Pro\",\n \"appId\": \"com.jnlib.devsapp.vppro\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.jnlib.devsapp.vppro\",\n \"icon\": \"https://play-lh.googleusercontent.com/cqp82cMQDAYIklT_1HBdGGFDkMqt3WAcj0HUIfP9iDLu8GvPL1FoE8MbJGDJrDpyqA\",\n \"developer\": {\n \"devId\": \"Beyond Self Studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Beyond%20Self%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Super VPN is the free, fastest and most secure VPN service proxy, providing the best free VPN service and allowing anyone who chooses this free VPN to anonymously access websites and applications to prevent tracking and privacy leakage.

✔ No registration required! ! !
Just a simple step, you can use this best VPN server, and then you can enjoy the safest and fastest Internet environment.


✔ Fast servers all over the world
There are 1500+ stable servers in the world, and you can easily switch the best quality servers in different regions with one click.


✔ Zero log
Never take the initiative to record any of your usage records! ! ! Therefore, you can safely browse any page you want without worrying about their information being leaked.


Come and experience Super VPN!\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9230769,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.jnlib.devsapp.vppro\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.jnlib.devsapp.vppro/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.jnlib.devsapp.vppro/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.jnlib.devsapp.vppro/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.jnlib.devsapp.vppro/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Music Player & MP3 Player\",\n \"appId\": \"musicplayer.musicapps.music.mp3player\",\n \"url\": \"http://gplayapi.srik.me/api/apps/musicplayer.musicapps.music.mp3player\",\n \"icon\": \"https://play-lh.googleusercontent.com/zq8ihIMZKOs9H6tfhKISdMLJxIgCaajxI5nVBqS24zhdJT7FbWBRUvqIiJY5tns2jnk\",\n \"developer\": {\n \"devId\": \"InShot Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/InShot%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Music Player is the best music player for Android. With gorgeous equalizer, all formats supported and stylish UI, Music Player provides the best musical experience for you. Browse all songs on android device, listen to music without wifi, you deserve to get this perfect offline music player for free now!

Equalizer with great sound
This MP3 player with bass boost, reverb effects, etc, built-in equalizer will enhance your music listening experience.

Audio Player for All Type of Audio Formats
Not only an MP3 player, Music Player supports all music and audio formats including MP3, MIDI, WAV, FLAC, AAC, APE, etc. And play them in high quality.

Nice User Interface
Enjoy your music with stylish and simple user interface, Music Player is a perfect choice. You can also choose a color theme or player theme you like in this MP3 player.

Key Features:
🎵 Support all music and audio formats, like MP3, MIDI, WAV, FLAC, AAC, APE, etc.
🎵 Offline music player, songs player, audio player, mp3 player with high quality.
🎵 Powerful equalizer with bass boost, reverb effects, etc.
🎵 Play songs in shuffle, order or loop.
🎵 Scan all the audio files automatically, manage and share songs.
🎵 View by all songs, artists, albums, folders and playlist.
🎵 Favorite songs and custom your playlist in mp3 player.
🎵 Easily search songs by keywords.
🎵 Lock screen controls and plays in notification bar.
🎵 Set songs as ringtone in offline music player.
🎵 Useful for workout.
🎵 Sleep Timer.
🎵 Stylish layout and themes.
🎵 Widget supported in this powerful audio player.

Please Note:
Music Player is for playing local music files, it’s not a music downloader.

Hope you enjoy your music with Music Player.

Any ideas or suggestions? Please feel free to contact us at xmusicplayer.feedback@gmail.com\",\n \"scoreText\": \"4.8\",\n \"score\": 4.8435726,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=musicplayer.musicapps.music.mp3player\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/musicplayer.musicapps.music.mp3player/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/musicplayer.musicapps.music.mp3player/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/musicplayer.musicapps.music.mp3player/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/musicplayer.musicapps.music.mp3player/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Microsoft Word: Edit Documents\",\n \"appId\": \"com.microsoft.office.word\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.word\",\n \"icon\": \"https://play-lh.googleusercontent.com/9kABykeGovHPy-dN19lRxxnCp8IZK3Pkl8qLFNxrEe-hhKVZeiyhTBEIRUt6t-vhxQ\",\n \"developer\": {\n \"devId\": \"Microsoft Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Microsoft%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Microsoft Word is the document editor that you can take with you on the go.

Write and create documents on your mobile device much like you do on your PC. Edit docs, share notes, craft a powerful cover letter, and collaborate on projects using your mobile device. Documents are easy to create, read, edit and share. Convert to PDF from Word and vice versa. Regardless of the format, Microsoft Word is one of the best free writing apps for writing on the go.

Access files and make edits with ease using the Word app. Read documents and open attachments with built-in docs viewer or edit a PDF using Word’s PDF converter feature. Share files and notes in the format you’d like. Create documents on the go with Word’s expert editing tools.

Resume templates, newsletters, brochures and more are accessible in the template gallery. Select the documents you would like and get started.

Blogger, writer, journalist, columnist or project manager: Microsoft Word moves with you.

Write a letter, create templates, read Word documents, edit docs and collaborate with your team anywhere with the docs and PDF app that can do it all.

Create Documents
• Use Microsoft Word as a cover letter creator by leveraging our beautiful templates
• Documents are easily created for any writing task.
• Editing with rich formatting & layout.
• Document editor keeps formats & layouts looking great.
• Docs app with templates for resumes, cover letters, forms & more.

Read, Write and Edit
• Read docs, letters, PDFs & scripts on your device in Reading View.
• Document & PDF App: Edit documents from PDFs by converting to & from Word documents.
• PDF Converter: save as PDF after editing & share the PDF easily.

Collaborate and Share With Anyone, Anywhere
• Collaborate - comment in your document right next to the text using Office Suite.
• View any document using the built-in docs viewer.
• Read & edit documents as a team and stay on top of changes to the text, layout & formatting.
• Editor history: revert to view earlier drafts & edit docs.

Microsoft Word for Anything
• Create documents like letters, blogs, scripts, notes, resumes, & more with beautifully designed modern templates.
• Share documents as a link, email or attachment.
• Write a letter easily using Word’s templates.
• Proofread, check spelling & review any document.

Sharing Simplified
• Share files & collaborate with a few taps.
• File & document permission management: see who is working on what.
• Copy files into the body of an email message with its format intact or attach PDFs & docs to the email.

Download Microsoft Word, a writing app free of restrictions free of hassle allowing you to edit documents anywhere.

REQUIREMENTS
1 GB RAM or above

To create or edit documents, sign in with a free Microsoft account on devices with a screen size smaller than 10.1 inches.

Unlock the full Microsoft experience with a qualifying Microsoft 365 subscription for your phone, tablet, PC, and Mac.

Microsoft 365 subscriptions purchased from the app will be charged to your Play Store account and will automatically renew within 24 hours prior to the end of the current subscription period, unless auto-renewal is disabled beforehand. You can manage your subscriptions in your Play Store account settings. A subscription cannot be cancelled during the active subscription period.

This app is provided by either Microsoft or a third-party app publisher and is subject to a separate privacy statement and terms and conditions. Data provided through the use of this store and this app may be accessible to Microsoft or the third-party app publisher, as applicable, and transferred to, stored, and processed in the United States or any other country where Microsoft or the app publisher and their affiliates or service providers maintain facilities.

Please refer to Microsoft's EULA for Terms of Service for Microsoft 365 on Android. By installing the app, you agree to these terms and conditions: http://aka.ms/eula\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4499097,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.microsoft.office.word\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.word/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.word/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.word/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.microsoft.office.word/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"PlayStation App\",\n \"appId\": \"com.scee.psxandroid\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.scee.psxandroid\",\n \"icon\": \"https://play-lh.googleusercontent.com/zi6QgTtIiAnGqQMizfoj2LnE85kzHyZlgTruSzJ7Zw_79NAmB3fhxuDegwxby7P0yw\",\n \"developer\": {\n \"devId\": \"PlayStation Mobile Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/PlayStation%20Mobile%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Stay connected to your gaming friends and the games you love to play, wherever you go with PlayStation App. See who's online, voice chat and send messages, and discover deals on PS Store.

Connect with friends
• See who's online and what games they're playing.
• Voice chat and send messages to your PSN friends, hang out online, and plan your next multiplayer session.
• View other players' profiles and trophy collections.

Discover new games and the latest news
• Shop for new releases, pre-order games, and check out the latest deals and discounts on PlayStation Store.
• Get your daily fix of gaming news from the world of PlayStation.
• Stay up to date with notifications and invitations on your phone lock screen.

Control your console wherever you are
• Download games and add-ons to your console, so they're ready when you are.
• Manage your PS5 console storage if you run out of space while downloading.
• Get ready to play with quick sign-in and remote game launch on your PS5 console.

Account for PlayStation Network required to use this app.

PlayStation terms of service are viewable at https://www.playstation.com/legal/psn-terms-of-service/.

Some features require PS5 or PS4 console.

Content available on PS App may vary by country/region. Some titles shown above may not be available in your country/region.

“PlayStation”, “PlayStation Family Mark”, “PS5”, and “PS4” are registered trademarks or trademarks of Sony Interactive Entertainment Inc.\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9130774,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.scee.psxandroid\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.scee.psxandroid/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.scee.psxandroid/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.scee.psxandroid/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.scee.psxandroid/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Pixelup - AI Photo Enhancer\",\n \"appId\": \"com.codeway.pixelup\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.codeway.pixelup\",\n \"icon\": \"https://play-lh.googleusercontent.com/FuXe6bWUhN5iVN_Wj2e0clTdjCZMDXQy2bfRMpHUEk9BDTa0ksiLW2BmIuYH8yM2VA\",\n \"developer\": {\n \"devId\": \"Codeway Dijital\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Codeway%20Dijital\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Turn your old, blurry photos into high definition with Pixelup's AI photo enhancer!

With Pixelup's enhanced Artificial Intelligence (AI), you can enhance photo quality instantly. Colorize and unblur old, pixelated, damaged pictures and turn them into crystal clear HD photos and get revitalized.

Pixelup helps you to:

ENHANCE PHOTO QUALITY
Either upload your best selfie or take a photo of an old picture with the camera, Pixelup’s photo enhance feature will make your photos brand new and in HD resolution. Enhanced AI algorithms will give you a flawless face even when zoomed in. You can easily restore old photos now.

COLORIZE BLACK AND WHITE PICS
Colorize your nostalgic, old, black & white family photos and make them new again. Bring color to any photo with only one tap.

ANIMATE PHOTOS
Animate old photos with the ‘Animate’ feature. Enhance & colorize photos and then use the ‘Animate’ feature to bring memories back to life. The best face animator to animate faces, create amazing talking pictures then you can make photos come alive, try it on yourself, your friends, or even your celebrity crush.

SHARE PHOTOS & VIDEOS WITH ONE TAP
Pixelup gives you a perfectly enhanced photo or an animated video that's ready to share & get the most likes on Instagram, TikTok, Snapchat, Facebook, or your favorite chat group!

Let's enhance and animate your blurred photos!

Payment & Subscription Terms:

Choose between the following subscription options for unlimited access to all features:
• Weekly Subscription
• Annual Subscription

***You may cancel your subscription at any time***

Have a feature in mind but you don’t see it in the app? Do not hesitate to contact us at pixelup@codeway.co\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3494983,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.codeway.pixelup\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.codeway.pixelup/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.codeway.pixelup/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.codeway.pixelup/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.codeway.pixelup/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouTube\",\n \"appId\": \"com.google.android.youtube\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube\",\n \"icon\": \"https://play-lh.googleusercontent.com/lMoItBgdPPVDJsNOVtP26EKHePkwBg-PkuY9NOrc-fumRtTFP4XhpUNk_22syN4Datc\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get the official YouTube app on Android phones and tablets. See what the world is watching -- from the hottest music videos to what’s popular in gaming, fashion, beauty, news, learning and more. Subscribe to channels you love, create content of your own, share with friends, and watch on any device.

Watch and subscribe
● Browse personal recommendations on Home
● See the latest from your favorite channels in Subscriptions
● Look up videos you’ve watched, liked, and saved for later in Library

Explore different topics, what’s popular, and on the rise (available in select countries)
● Stay up to date on what’s popular in music, gaming, beauty, news, learning and more
● See what’s trending on YouTube and around the world on Explore
● Learn about the coolest Creators, Gamers, and Artists on the Rise (available in select countries)

Connect with the YouTube community
● Keep up with your favorites creators with Posts, Stories, Premieres, and Live streams
● Join the conversation with comments and interact with creators and other community members

Create content from your mobile device
● Create or upload your own videos directly in the app
● Engage with your audience in real time with live streaming right from the app

Find the experience that fits you and your family (available in select countries)
● Every family has their own approach to online video. Learn about your options: the YouTube Kids app or a new parent supervised experience on YouTube at youtube.com/myfamily

Support creators you love with channel memberships (available in select countries)
● Join channels that offer paid monthly memberships and support their work
● Get access to exclusive perks from the channel & become part of their members community
● Stand out in comments and live chats with a loyalty badge next to your username

Upgrade to YouTube Premium (available in select countries)
● Watch videos uninterrupted by ads, while using other apps, or when the screen is locked
● Save videos for when you really need them – like when you’re on a plane or commuting
● Get access to YouTube Music Premium as part of your benefits\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2054615,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.youtube\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Walgreens\",\n \"appId\": \"com.usablenet.mobile.walgreen\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.usablenet.mobile.walgreen\",\n \"icon\": \"https://play-lh.googleusercontent.com/gK5U3QZnDLSysaBFcsiCOyknNRZpG669NmreEUvGqlamTQwafKoVTUVUoZ8rqdBzlMsw\",\n \"developer\": {\n \"devId\": \"Walgreen Co.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Walgreen%20Co.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"It's your Walgreens - shop and manage your prescriptions.

Prescriptions
• Refill in a snap by scanning your barcode
• Track order status for you and your family
• Stay on track with Pill Reminders to help you manage medications day-to-day***
• Get FREE prescription and general health advice 24/7 from a pharmacy expert in a live chat

Walgreens Find Care®****
Find the right care, right when you need it. Connect with doctors and healthcare providers from your phone or in person at participating locations.

Shop & Savings
• Shop for all your essentials and get your pickup order in as little as 30 minutes**
• Earn Walgreens Cash rewards as a myWalgreens member and clip personalized, exclusive deals just for you*
• Easily clip coupons and save even more with our Weekly Ad
• Scan products in-store to clip coupons and save at checkout
• Find your nearest store, and view store and pharmacy hours

Photo
• FREE Same Day Pickup for faster photos—print from your phone or tablet
• Personalize your Photo Cards and Gifts, and create custom Wall Décor for your home

Android Permissions:
How the app uses device permissions
• Location: Find nearby stores and enable in-store savings
• Storage: Access photos stored on your device that you want to print or share
• Camera: Take photos and to use features that require scanning
• Flashlight: Enhance the lighting in scanning features
• Control vibration: Indicate that a scan is complete
• Microphone: Speak to a healthcare provider over the phone or video, or to search for products and coupons using your voice
• Prevent phone from sleeping: Keep screen from dimming during a live consultation with a healthcare provider
• Change audio settings: Control the volume during a live consultation with a healthcare provider

The Walgreens App is free to download, but specified rates from your wireless provider and other fees as noted in your Walgreens account agreement(s) still apply.


* Must be a myWalgreens™ member. Walgreens Cash rewards are not legal tender. No cash back. Walgreens Cash rewards good on future purchases. Rewards cannot be earned on photo orders not picked up in store, alcohol, dairy, tobacco, gift cards, sales tax and shipping, or items or services sold by third-party partners. Rewards on prescriptions and other pharmacy items and services cannot be earned in AR, NJ or NY. Only prescriptions picked up in store are eligible to earn rewards. Other exclusions apply. Complete details at myWalgreens.com.
** For Walgreens store locations that are not open 24 hours, orders must be placed at least 1 hour prior to store closing in order to be eligible, otherwise order will be ready following business day. Customer will be notified via email when order is ready for pickup, and will be provided instructions for a drive up experience that complies with social distancing guidelines. Orders are not guaranteed to be ready within the 30 minute time window, and may be subject to change or substitution depending on product availability at time order placed. Orders with age restricted items may only be picked up in-store. Prescription orders not eligible but may be ordered through Walgreens Express. To find the location and hours of a Walgreens store near you, visit Walgreens.com/FindAStore or use the Find a store feature in app.
*** Pill Reminder only available on phone
**** Walgreens Find Care® health service options available in select states\",\n \"scoreText\": \"3.8\",\n \"score\": 3.8436422,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.usablenet.mobile.walgreen\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.usablenet.mobile.walgreen/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.usablenet.mobile.walgreen/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.usablenet.mobile.walgreen/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.usablenet.mobile.walgreen/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"PCH+\",\n \"appId\": \"com.pch.pchworld\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.pch.pchworld\",\n \"icon\": \"https://play-lh.googleusercontent.com/wjbfmuzwVh4mpqQpb9lYcP_iI04Oin15fLYvCRNy808qBiJSYhG7TxEuPsbW839MTWY\",\n \"developer\": {\n \"devId\": \"Publishers Clearing House\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Publishers%20Clearing%20House\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to PCH+! Get ready to explore everything PCH has to offer as you play FREE games and discover new and exciting ways to win at each and every turn.

Start your journey now and unlock amazing surprises as you travel through each level. It’s easy, it’s free, it’s fun to play and the best part is it’s powered by Publishers Clearing House – so you know it’s packed with prizes.

Here’s a look at what’s waiting for you...

TEST YOUR SKILLS WITH FUN GAMES

Travel from city to city, stopping at destinations along the way to play exciting Token Games and score lots of PCH Tokens – you’ll get 10X TOKENS on all games every day. Just take aim to see how many Tokens you’ll score (and then, watch them multiply!!!) -- it’s easy. Plus, you can redeem your Tokens for your shot at lots of REALLY BIG PRIZES anytime in the PCHrewards Token Exchange.

CLAIM SURPRISE TREASURES

Make sure you open all your destination envelopes to claim your Tokens and entries. Then, reserved as a reward for completing your mission, each level has its own unique treasure chest with lots of SURPRISE BONUSES inside. Start playing and see what’s waiting for you!

GET BONUS PLAYS

Claim EXTRA ways to win by playing during the day and again at night with the PCH+ App Night World. Unlocks daily from 8PM-6am, ET.

There’s a whole world of fun, excitement and winning waiting inside PCH+ and it all starts with just a tap. Get your FREE DOWNLOAD now and get in on the excitement of this brand-new Publishers Clearing House experience.

Remember, after you install PCH+, turn on your Push Notifications so you never miss your chance to win prizes.


Need Support? Visit http://pch.custhelp.com/app/home/site/apps

To opt out of targeted ads, the DAA AppChoices tool is available at https://play.google.com/store/apps/details?id=com.DAA.appchoices&hl=en\",\n \"scoreText\": \"4.5\",\n \"score\": 4.526655,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.pch.pchworld\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.pch.pchworld/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.pch.pchworld/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.pch.pchworld/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.pch.pchworld/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Drive Safe & Save™\",\n \"appId\": \"com.statefarm.dssm\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.statefarm.dssm\",\n \"icon\": \"https://play-lh.googleusercontent.com/udonRYfClav3rbk_1SeKm3gztFQD_1X7ogOv8ALYLI9on0c1W75tl3GiJHSpcMVf6aM\",\n \"developer\": {\n \"devId\": \"State Farm Insurance\",\n \"url\": \"http://gplayapi.srik.me/api/developers/State%20Farm%20Insurance\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"You’re in control of your auto insurance discount with Drive Safe & Save. Get a discount just for signing up! Then at your next renewal, we’ll tailor your rate based on how you drive.

How it works
•\\t Record your driving habits using your smartphone, along with a free Bluetooth beacon we ship to you
• Review your trips on interactive maps featuring alerts for rapid acceleration, fast cornering and hard braking
•\\t Get tips on how to improve your driving scores based on key driving characteristics
•\\t Trips record automatically. No need to log in or manually start the app each time you drive

Installation instructions for the app:\\u2028
1. Download the Drive Safe & Save app.
2. Once downloaded, log in using your statefarm.com® user ID and password**.
3. We’ll ship you a Bluetooth beacon after you enroll. When it arrives in the mail, come back to the app and follow the “Complete Setup” instructions.

That’s it!
•A trip automatically begins when you start driving, so there is no need to manually start or repeat app login.
\\u2028•Do not use your phone while driving.

\\u2028You’re on your way to a discount* on your State Farm auto insurance premium.

*In some cases, how you drive determines how much discount you may receive. Discounts may vary by state and coverages selected. A discount may not be available in California or North Carolina, depending on individual facts and circumstances. 

\\u2028\\u2028**We use your statefarm.com account for Drive Safe & Save access. No account yet? No worries. You can create a statefarm.com user ID and password in the Drive Safe & Save app. The policy must be in the format of a first and last name. Businesses, trusts, DBA, etc. are not eligible at this time for a statefarm.com account. Contact your State Farm agent for details.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.170143,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.statefarm.dssm\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.statefarm.dssm/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.statefarm.dssm/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.statefarm.dssm/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.statefarm.dssm/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouTube Music\",\n \"appId\": \"com.google.android.apps.youtube.music\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.music\",\n \"icon\": \"https://play-lh.googleusercontent.com/GnYnNfKBr2nysHBYgYRCQtcv_RRNN0Sosn47F5ArKJu89DMR3_jHRAazoIVsPUoaMg\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Connecting you to the world of music:
● More than 70 million official songs
● Music content including live performances, covers, remixes and music content you can’t find elsewhere
● Thousands of curated playlist across many genres and activities

Get personalized music, perfect for every moment:
● Personalized playlists and Mixes made just for you, built around your favorite types of music
● Personalized activity mixes for your Workout, Relax, and Focus sessions
● Create playlists with song suggestions or collaborate with other music fans to create the perfect playlist
● Personalized Library to see all of your liked and added songs, playlists, artists, and albums

Stay on top of the trend and discover new music:
● Check out curated for you mixes such Discover Mix and New Release Mix
● Discover music based genres (Hip Hop, Pop, Country, Dance & Electronic, Blues, Indie & Alternative, Jazz, Kpop, Latin, Rock, and more)
● Discover music based mood (Chill, Feel Good, Energy Booster, Sleep, Focus, Romance, Workout, Commute, Party)
● Explore top charts from all over the world

Enhanced your listening experience with unique features:
● Song lyrics so you can sing along to your favorites
● Switch seamlessly between audio and video
● Listen on your phone, desktop, smart speaker, smart TV, car, smart watch and within your favorite apps.
● Compatible with Google Maps, Waze, Google Assistant, and more.

Upgrade to Music Premium (available in select countries) to enjoy:
● Listen ad-free
● Play music in the background
● Access your downloads, including smart downloads
● Switch seamlessly between audio and video, only with YouTube Music

----------
Only first-time YouTube Red, Music Premium, YouTube Premium and Google Play Music subscribers are eligible for free trials, introductory offers or promotional pricing.

Monthly price: $9.99 USD / $9.99 CAD / $11.99 AUD / $12.99 NZD / £12.99 / €9.99 / $99 pesos MXN / ₩7,900/ 99 kr NOK / 99 kr SEK / 99 kr DKK / 169 ₽ / ARS$99/ ₹99.00 IN / R59.99 ZA / ₡3,190 /$5.99 USD (EC, DO, UY, VE, GT, BO, HN, SV, PY, NI, PA) / 19.99 zł / RON22.00 / 149.00 Kč / Ft1,490.00 / lev8.99 / USD$5.99 (BY) / €5.99 (SK, SI) / €6.99 (GR, MT, CY, LT, LV, EE) / $6.99 (MK) / 13.99 Turkish Lira (TR) / kn59.99 (HR) / $9.99 (IS) / ₪19.90 (IL) / dh19.99 (AE) / Rial19.99 (QA) / $4.99 (BH, KW, OM, LB) / RP49,000 (ID) / NT$149.00 (TW) / ฿129.00 (TH) / ₱129.00 (PH) / $58.00 (HK) / RM 14.90 (MY) / $9.98 (SG) / USD$5.99 (VE) / ₦900.00 (NG) / $9.99 (TC) / £49.99 (EG) / USD$9.99 (AS, AW, GU, MQ, YT, PF, MP, PG, PR, TC, VI)/ USD$5.99 (BM, KY)/ €9.99 (GF, GP, NC)\",\n \"scoreText\": \"4.5\",\n \"score\": 4.539236,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.youtube.music\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.music/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.music/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.music/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.music/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Bitmoji\",\n \"appId\": \"com.bitstrips.imoji\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.bitstrips.imoji\",\n \"icon\": \"https://play-lh.googleusercontent.com/TdM1HpnaHHY3MIGHt_gEzrP85nTdCcWxfqG4S5223aslDu8IzksaDOs72ISMyHRi6V8\",\n \"developer\": {\n \"devId\": \"Bitmoji\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Bitmoji\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Bitmoji is your own personal emoji.

• Create an expressive cartoon avatar
• Choose from a huge library of stickers – all featuring YOU
• Use Bitmoji in Snapchat and wherever else you chat

Using Bitmoji in Snapchat unlocks Friendmoji – 2-person Bitmojis featuring you and your friends!\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6455235,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bitstrips.imoji\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.bitstrips.imoji/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.bitstrips.imoji/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.bitstrips.imoji/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.bitstrips.imoji/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"QR & Barcode Reader\",\n \"appId\": \"com.teacapps.barcodescanner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.teacapps.barcodescanner\",\n \"icon\": \"https://play-lh.googleusercontent.com/-CvY0c-MmYQf2xaJQ6TVj_PZO4lpKG3T-i78UOolkpMxwlUen3KsakPA7I8OOwjOx_Q\",\n \"developer\": {\n \"devId\": \"TeaCapps\",\n \"url\": \"http://gplayapi.srik.me/api/developers/TeaCapps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"QR & Barcode Reader is a modern QR code scanner and barcode scanner with all the features you need.

Scan any QR code or barcode to get additional information including results from popular online services; Amazon, eBay and Google - 100% FREE!

ALL COMMON FORMATS
Scan all common barcode formats: QR, Data Matrix, Aztec, UPC, EAN, Code 39 and many more.

RELEVANT ACTIONS
Open URLs, connect to WiFi hotspots, add calendar events, read VCards, find product and price information, etc.

SECURITY AND PERFORMANCE
Protect yourself from malicious links with Chrome Custom Tabs featuring Google Safe Browsing technology and profit from shorter loading times.

MINIMAL PERMISSIONS
Scan an image without giving access to your device storage. Even share contact data as QR code without giving access to your address book!

SCAN FROM IMAGES
Detect codes within picture files or scan directly using the camera.

FLASHLIGHT AND ZOOM
Activate the flashlight for reliable scans in dark environments and use pinch-to-zoom to read barcodes even from far distances.

CREATE AND SHARE
Share arbitrary data such as website links with the built-in QR code generator by displaying them on your screen as a QR code and scanning them with another device.

CUSTOM SEARCH OPTIONS
Get specific information by adding custom websites into the barcode search (i.e. your favorite shopping website).

CSV EXPORT AND ANNOTATIONS
Manage unlimited history and export it (as CSV file). Import it to Excel or save it to any cloud storage such as Google Drive. Annotate your scans and manage product inventory or implement quality assurance in your small business!

Enjoy one of the best QR code reader apps available for smartphones and tablets running Android 6.0 or higher.

Supported QR codes:
• website links (URL)
• contact data (MeCard, vCard, vcf)
• calendar events
• WiFi hotspot access information
• geo locations
• phone call information
• email, SMS and MATMSG

Barcodes and two-dimensional codes:
• article numbers (EAN, UPC, JAN, GTIN, ISBN)
• Codabar or Codeabar
• Code 39, Code 93 and Code 128
• Interleaved 2 of 5 (ITF)
• PDF417
• GS1 DataBar (RSS-14)
• Aztec Code
• Data Matrix

QR Code is a registered trademark of DENSO WAVE INCORPORATED in the United States and other countries.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.549326,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.teacapps.barcodescanner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.teacapps.barcodescanner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.teacapps.barcodescanner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.teacapps.barcodescanner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.teacapps.barcodescanner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"CVS/pharmacy\",\n \"appId\": \"com.cvs.launchers.cvs\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.cvs.launchers.cvs\",\n \"icon\": \"https://play-lh.googleusercontent.com/9qthLbTPNdS6WiEzRvwTKadyvdoBl7B3BOz2VwQxH1IX6HGaZzcCBibQ_L8DSyvHaCo\",\n \"developer\": {\n \"devId\": \"CVS Pharmacy\",\n \"url\": \"http://gplayapi.srik.me/api/developers/CVS%20Pharmacy\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Staying healthy. Saving time. Spending less. The CVS Pharmacy® app makes them all easier. Here’s how:

Checking out. Easier.
•\\tSave with ExtraCare® and pick up prescriptions with a single scan (just tap “Show Card”).
•\\tEnjoy 1-tap Rx checkout after the first time you prepay for your prescription.

Saving money. Easier.
•\\tGet app-only deals and access all of your offers and rewards when you link your ExtraCare® card.
•\\tMake sure you never miss a deal by opting in to notifications. Get photo and prescription updates too.
•\\tPlan out your shopping and saving with the weekly ad for your local store.

Getting prescriptions. Easier.
•\\tPay for your medications and have them delivered.
•\\tPrepay for your prescriptions then show your barcode for more private pickup. (Turn landscape to sign.)
•\\tOrder refills, check their status and see your prescription history.
•\\tCheck drug interactions and information.

Caring for your health. Easier.
•\\tVideo chat with a health care provider 24 hours a day, 7 days a week.
•\\tFind nearby MinuteClinic® for general care and clinical services.
•\\tView wait times and schedule a clinic visit (restrictions apply).
•\\tCheck available health care services and insurance coverage.

Printing photos. Easier.
•\\tOrder prints and more from your device and online albums for same-day pickup (select stores and products).

To access all of these great features, please be sure your device is running the latest OS. We support Android versions 5.0 and higher.

Please note: Continued use of GPS running in background can decrease battery life.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5274205,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cvs.launchers.cvs\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.cvs.launchers.cvs/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.cvs.launchers.cvs/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.cvs.launchers.cvs/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.cvs.launchers.cvs/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ParkMobile - Find Parking\",\n \"appId\": \"net.sharewire.parkmobilev2\",\n \"url\": \"http://gplayapi.srik.me/api/apps/net.sharewire.parkmobilev2\",\n \"icon\": \"https://play-lh.googleusercontent.com/BwSs3Ac5OeoxU95jbTAOlULfJYuYPeT5FuVnvpzt2YaMRqOX6pOQHUcJF2bFuy5Xwwc\",\n \"developer\": {\n \"devId\": \"Parkmobile, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Parkmobile%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With over 35 million users, ParkMobile is a smarter way to park. Easily pay for street, lot, or garage parking right from your mobile device. You can also reserve parking ahead of time near garages and stadiums across the country. ParkMobile is available in over 500 cities including New York, San Francisco, Washington, DC, Atlanta, Boston, Chicago, Miami, New Orleans, Dallas, St. Louis, Minneapolis, Pittsburgh, and Philadelphia.

Why Use ParkMobile?
• Skip the meter and easily pay for parking right on your mobile device
• Extend your parking time remotely from the app
• Get alerts so you know when your parking session is going to expire
• Reserve parking spots in garages ahead of time to save up to 50% off drive-up rates
• Find areas of the city where there is available parking and avoid areas where there’s no parking
• Available in more than 3,000 locations coast-to-coast including stadiums, airports, universities and more.

How It Works:
• Streets, lots, and garages: Enter the zone number on the posted signs in your area. Select the amount of time you want to park and start your session. Extend time in the app if you are running late.
• Parking Reservations: Search for where you want to park and select the specific parking facility. Choose the date/time and complete your reservation. Follow the instructions in your confirmation to redeem at the parking facility.

App Features:
• Customizable notifications delivered via email, text and/or app
• Save your favorite parking locations for next time
• Store up to five cars in your account
• “Find my car” feature directs you back to the location where you parked
• Turn-by-turn directions to the parking garage where you reserved your spot
• Multiple payment methods available including ApplePay, Google Pay, PayPal and most major credit cards
• Parking Availability feature shows streets with open parking spots in your area

Looking for Help?
At ParkMobile, we’re serious about customer service. We process over 300,000 parking transactions daily and we know that every now and then, something might go wrong. If you have an issue, we will do everything we can to make it right. Our customer service is available 24/7/365. If you need help, here’s how to get in touch with us:

Web: https://ParkMobile.io/
Online Help Center: https://support.ParkMobile.io/hc/en-us/requests/new
Video Tutorials: https://ParkMobile.io/tips-demos/
Twitter: https://twitter.com/ParkMobile
Facebook: https://www.facebook.com/ParkMobile/

Thanks for downloading the ParkMobile app and discovering a Smarter Way to Park.\",\n \"scoreText\": \"3.8\",\n \"score\": 3.7762883,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=net.sharewire.parkmobilev2\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/net.sharewire.parkmobilev2/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/net.sharewire.parkmobilev2/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/net.sharewire.parkmobilev2/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/net.sharewire.parkmobilev2/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Home Workout - No Equipment\",\n \"appId\": \"homeworkout.homeworkouts.noequipment\",\n \"url\": \"http://gplayapi.srik.me/api/apps/homeworkout.homeworkouts.noequipment\",\n \"icon\": \"https://play-lh.googleusercontent.com/Mxu4YhAr45fbX_iBwi4LiRuSDn9G8R-C_i6PF4Oqys6TqQab2Jl7U5w4WGDtoPwhpTk\",\n \"developer\": {\n \"devId\": \"Leap Fitness Group\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Leap%20Fitness%20Group\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Home Workouts provides daily workout routines for all your main muscle groups. In just a few minutes a day, you can build muscles and keep fitness at home without having to go to the gym. No equipment or coach needed, all exercises can be performed with just your body weight.

The app has workouts for your abs, chest, legs, arms and butt as well as full body workouts. All the workouts are designed by experts. None of them need equipment, so there's no need to go to the gym. Even though it just takes a few minutes a day, it can effectively tone your muscles and help you get six pack abs at home.

The warm-up and stretching routines are designed to make sure you exercise in a scientific way. With animations and video guidance for each exercise, you can make sure you use the right form during each exercise.

Stick with our home workouts, and you will notice a change in your body in just a few short weeks. 💪 💪 💪

Features
√ Warm-up and stretching routines
√ Records training progress automatically
√ The chart tracks your weight trends
√ Customize your workout reminders
√ Detailed video and animation guides
√ Lose weight with a personal trainer
√ Share with your friends on social media

Bodybuilding App
Looking for a bodybuilding app? No satisfied bodybuilding app? Try our build muscle app! This build muscle app has effective muscle building workout, and all muscle building workout is designed by expert.

Strength Training App
It's not only just a build muscle app, but also a strength training app. If you are still looking for muscle building workout, muscle building apps or strength training app, this muscle building apps is the best one you can find among the muscle building apps.

Fat Burning Workouts & HIIT Workouts
The best fat burning workouts & hiit workouts for better body shape. Burn calories with fat burning workouts, and combine with hiit workouts to get the best results.

Home Workouts for Men
Want effective home workouts for men? We provide different home workouts for men to workout at home. The home workout for men is proven to help you get six pack abs in a short time. You'll find the home workout for men that most suitable for you. Try our home workout for men now!

Multiple Exercises
Push ups, squats, sit ups, plank, crunch, wall sit, jumping jacks, punch, triceps dips, lunges...

Fitness Coach
The best fitness apps and workout apps. All sport and gym workout in this workout apps and fitness apps are designed by professional fitness coach. Sport and gym workout guide through the exercise, gym workout and sport, just like having a personal fitness coach in your pocket!\",\n \"scoreText\": \"4.9\",\n \"score\": 4.926025,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=homeworkout.homeworkouts.noequipment\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/homeworkout.homeworkouts.noequipment/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/homeworkout.homeworkouts.noequipment/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/homeworkout.homeworkouts.noequipment/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/homeworkout.homeworkouts.noequipment/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Lowe's\",\n \"appId\": \"com.lowes.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.lowes.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/obDVv9YyRTif7M_KKq_0zbJZJyc-Wxhr-7iefMCHGeR-wIlJ5y4BkUdodwVISwPLEIk\",\n \"developer\": {\n \"devId\": \"Lowe's Companies, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Lowe's%20Companies%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"HOME IMPROVEMENT AT YOUR FINGERTIPS

Whether you’re a Pro or a have a DIY project on your mind, you can search and shop thousands of products like kitchen appliances, paint, lumber, tools, outdoor power equipment, grills, outdoor furniture, flooring and more— anytime when you’re on the go. We’ve also included larger, zoomable images and 360° spins so you can see every last detail.

WHAT YOU NEED- FASTER

We have clearly marked aisle and bay information right on the list page, so you know right where to go when you’re in a store. Plus, check the “in-stock” box to only view items that are available for pick up. If it’s not there, no problem. Check other stores with just a tap.

STORE FINDER

Locate the store that’s nearest to you along with the phone number, address, directions and drive time estimates. Then, select your choice to get accurate inventory, product locations and pricing*.

*Remember to allow location services to get the most optimized experience possible.

WEEKLY DEALS

We’ve always got great deals. Check the weekly ad for your selected Lowe’s store right on your phone. View the flyer page by page or by department, it’s that easy.

CUSTOMER RATINGS AND REVIEWS

Read what others are saying. See reviews and star ratings for thousands of products. Plus, you can write your own reviews and upload images right in the Lowe’s app.

COMMUNITY Q & A

Before you buy, make sure a product is right for you. Ask questions and get answers directly from manufacturers or previous customers. You can also browse questions or answer ones for others.

FAVORITE LISTS

Add any product to your Saved Items List and never forget what you need again. Tap the heart on any product page, scan a barcode in the store, or add notes to your list—no sign in required.

CUSTOM WIDGETS

Access your Saved List or mylowes card from a custom widget to shop and checkout without having to open the app.

ORDER HISTORY & DIGITAL RECEIPTS

We make paper receipts a thing of the past. Search order history for specific items you’ve purchased and access entire transactions right on your phone.

ANDROID WEAR OPTIMIZED

Add your virtual mylowes card to your digital wallet and find your closest Lowe’s store. Keep track of your Saved List or start a new one by staying, “Hey Google, start a Saved List.”\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9878445,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.lowes.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.lowes.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.lowes.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.lowes.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.lowes.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Plenty of Fish Dating App\",\n \"appId\": \"com.pof.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.pof.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/3G9eunSGLor1cX2zGzuJo-5bk4iaMYT_hBoav9SaaKLrhEMeEBssL-owI3dB5XDc8Q\",\n \"developer\": {\n \"devId\": \"Plentyoffish Media ULC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Plentyoffish%20Media%20ULC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Best Online Dating Experience - Singles have more conversations on Plenty of Fish (POF) than any other dating app!

POF is designed to help singles find happy relationships! We have the most FREE features to meet singles and include unique icebreakers to start engaging conversations! With POF, you’re 2.7x more likely to enter a conversation within your first 24 hours! Join now, and start chatting with local singles.

Send Messages For Free!

Millions of people have found their match on POF. Now it's your turn! Browse photos of singles near you and never pay to send a message!

Meeting New People Has Never Been This Easy!

❤️ Discover new singles in you area

❤️ Connect with your matches based on common interests

❤️ Find the profiles of people who are similar to your crush

❤️ Search for your Mr./Ms. Right with filters

❤️ Meet someone who voted "Yes" to you

❤️ Spark a conversation: quote someone's profile to break the ice

More Singles Than Any App!

POF is the preferred singles dating app because you can view matches AND communicate for FREE. Unlike smaller dating apps, POF has the most users and thus, the highest chance for you to find your relationship!

The POF Dating App has the most users, generates the best results and is FREE. Tap Install and Join Now!

🎣 Happy Fishing 🎣

POF is part of the Match Group portfolio which also includes Tinder, Match.com, Hinge, OkCupid, Twoo, Meetic, and OurTime.\",\n \"scoreText\": \"3.7\",\n \"score\": 3.740152,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.pof.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.pof.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.pof.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.pof.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.pof.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Citizen: Local Safety Alerts\",\n \"appId\": \"sp0n.citizen\",\n \"url\": \"http://gplayapi.srik.me/api/apps/sp0n.citizen\",\n \"icon\": \"https://play-lh.googleusercontent.com/wB4xKF-NOC-T-4fCsw-T0d7m4bc1ZFwDQ0YRuRYZrmHTrxVUUwFLOAH32UJUzGCSXg\",\n \"developer\": {\n \"devId\": \"Sp0n Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Sp0n%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The most powerful safety app for today’s world. Download Citizen to feel safer at home or out, get real-time safety alerts and live video of incidents happening near you, updates on natural disasters or protests, and know if your loved ones are near a dangerous incident.

Citizen notifications have urged people to evacuate burning buildings, deterred school buses from nearby terrorist attacks and have even led to a rescue of a 1-year-old from a stolen car. Citizen may notify you of a crime in progress before the police have responded. It's meant to protect you and your community — please use it responsibly.

NEW! See friends on your Safety Map: Know their safety status in a glance and find out if (and when) they are near a dangerous incident in real-time. You can turn on Ghost Mode to keep your location private at any time.

Real-time Safety Alerts: Location-based notifications help you avoid potentially dangerous situations.

Live Breaking Video: Watch live video of an incident unfold from different angles or broadcast live from the scene.

Keep Your Community Safe: Report incidents right when they happen to protect the people around you.

Citizen also offers the Protect subscription, to help protect you and your loved ones. You can read the Terms of Use here: https://citizen.com/privacy/protect-supplemental-tos\",\n \"scoreText\": \"4.2\",\n \"score\": 4.201633,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=sp0n.citizen\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/sp0n.citizen/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/sp0n.citizen/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/sp0n.citizen/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/sp0n.citizen/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Bible Home - Daily Bible Study\",\n \"appId\": \"com.home.bible.verse.prayer\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.home.bible.verse.prayer\",\n \"icon\": \"https://play-lh.googleusercontent.com/iR-2cXc_3wChsxK-BM4Q2iQNhYGw0mocRXqUGJWggaymqp8EVwKM6QPkQ3-MPakOLCTR\",\n \"developer\": {\n \"devId\": \"Bible Home\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Bible%20Home\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Bible Home brings the Holy Bible launcher app directly to your home screen for free! Study, pray and read the Word of God which includes many different versions of the bible from the Old Testament to the New Testament - from Genesis to Revelation. Choose different translations so you can easily understand the Word of God and the Gospel. Find a plan to pray and study the Lord’s scriptures that focus on love, finding peace, dealing with anxiety, strengthening marriage, building patience and surviving grief - or customize your own plan! Receive your verse of the day, take notes, bookmark verses, and share with your friends and family! Bible Home is a launcher application that keeps the Bible and the Gospel within reach every day – just a swipe away! Customize your home screen with quick access to your favorite bible verses, bible reading plans, and daily devotionals to aid you in prayer, bible study, and keeping your mind bountiful with God's word and scripture.

READ DAILY



Verse of the day to inspire you

Easy access to the Holy Bible for daily reading of the Word of God

Reading guides to help track your progress and find new insights

Adjust text size to your preference to make it easy to read and study

Bookmark, highlight, and share verses and God’s scripture that inspire you!

BIBLE STUDY



Offline reading of popular Bible versions

Study different Bible versions: King James Version (KJV), American Standard Version (ASV), World English Bible (WEB), Webster’s Bible, Young’s Literal Translation, Bible in Basic English and more!

Side by Side reading of Bible Versions

Take notes, bookmark, and highlight and share verses and scriptures

Search the Bible for a specific verse or keywords

SPREAD THE WORD



Customize and share the verse of the day

Find and share any verse from the Bible with a custom background and font

Share with social media, email, messenger, text, or any way you like

This launcher also includes customizable themes, news, popular videos, and other awesome utilities in order to provide the most feature-rich launcher experience possible!

Explore Bible Home and enjoy a reading experience made to help you study and share God’s word. Are we missing your favorite bible version or feature? Submit some feedback so we can improve!

* Bible Home uses device Accessibility permissions to lock the screen when an in-app gesture is performed. This is optional and disabled by default.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7852,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.home.bible.verse.prayer\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.home.bible.verse.prayer/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.home.bible.verse.prayer/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.home.bible.verse.prayer/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.home.bible.verse.prayer/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"SLING: Live TV, Shows & Movies\",\n \"appId\": \"com.sling\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.sling\",\n \"icon\": \"https://play-lh.googleusercontent.com/4WwzhReFckDaf1Z3ul0CjpheoUa4FcqpjUP-1PNxfUjL67nyI26_wFiusNVGVsNUKrg\",\n \"developer\": {\n \"devId\": \"Sling TV, L.L.C.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Sling%20TV%2C%20L.L.C.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"SLING is a streaming service with the best of live TV, both free and paid, streamed to you on any device. And with 200+ channels, SLING has something for everyone. It’s the live TV you love for half the cost of cable. Plus, watch over 85,000 movies & shows on demand.

Programming Available From SLING TV:

With free channels like ABC News Live and premium cable networks such as CNN, FOX News and MSNBC, Sling keeps you informed while you stay safe inside. Entertainment networks like, Bravo!, LIfetime and HGTV mean SLING TV has something for everyone.

NEWS | Stay up-to-date and informed with plenty of news channels like CNN, FOX News, CNBC, MSNBC and Bloomberg.

ENTERTAINMENT | Stay in & SLING in with entertainment for the whole family. Sign up and get Bravo, Freeform, A&E, Investigation Discovery, TBS and TNT.

LIFESTYLE | With SLING TV, you can get your DIY fix with HGTV and satisfy your cravings for new recipes on Food Network. Plus, we have plenty of other lifestyle channels like Hallmark and Cooking Channel.

KIDS’ SHOWS | Keep the kids happy and the Saturday morning cartoon tradition rolling with Disney and Cartoon Network.

SPORTS | Catch the latest news, analysis and feature films of your favorite sports on ESPN, ESPN2, TNT, and a whole lot more.

INTERNATIONAL | SLING TV is one of the best international streaming services in the U.S., offering programs in 22 languages including Spanish, Hindi & Arabic.

So what’s the hold up? Download the app today and start SLINGing.

Please note: This app features Nielsen’s proprietary measurement software that will allow you to contribute to market research, like Nielsen’s TV Ratings. Please see www.nielsen.com/digitalprivacy for more information.\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9096372,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.sling\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.sling/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.sling/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.sling/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.sling/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Messenger - Texting App\",\n \"appId\": \"messenger.sms\",\n \"url\": \"http://gplayapi.srik.me/api/apps/messenger.sms\",\n \"icon\": \"https://play-lh.googleusercontent.com/fvDqJtYx-Pa9OYep_R55hSmjLcvNbjujSVdd_0um8q7N0xvfUxta1xbM_wDUIP26htE\",\n \"developer\": {\n \"devId\": \"Emoji SMS Messenger\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Emoji%20SMS%20Messenger\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Messenger for Text, a texting app with new Emoji, Stickers, Gifs is here for you now! As a best choice to take place default SMS app, Messenger text app is more than convenient, effective and totally free messenger app. We have emoji, gif, private box and customize wallpaper & bubble and many more unique features waiting for you to explore while messaging. Fully customize by you! Enjoy the most amazing texting experience.

In our text app, you can find:
Emoji Art & Animated GIF :
3000+ emoji, like Emoji One. Animated Gif will bring more fun while you sending a text message. Text can never be so vivid and creative by sharing tons of trending hot GIFs via MMS & SMS

Private Box:
Private box will encrypt your content from being seen. Even further, you can hide private box’s icon to put all messages or contacts privately. Text can never be so safe.

Customized Layout:
You can customize almost everything you want: choose your own photo from gallery or take photos as your wallpaper, change bubble color and bubble style as you like, adjust text color, text font even font size. Text can never be so comfortable.

Backup & Restore:
Backup MMS & SMS messages to your phone or cloud to keep messages from being lost. And if you delete wrong sms, our Messenger texting app can restore them if you backup them before.

Blocker:
Feeling exhausted about spam bombs? Messenger texting app will divide them from those important SMS as you put them in blocker. Just one click to add those messages to SMS blocker.

Driving Mode & Auto Reply:
Once driving mode is on, all message notifications from Messenger texting app will be disabled and auto play to keep you away from distractions. Keep all your trip from being disturbed.

SMS Collection:
Like romantic, flirt and Love SMS, you can use 10+ categories SMS messages.

Schedule SMS:
Set a schedule for your messages. Delay your important messages —— an opportunity to correct wrong messages.

Android Wear Compatible:
Messenger for Text-New Emoji, Stickers, Gifs performs perfectly on Android Wear. Try Messenger texting app on your android wear!

More Features
- Copy and paste text messages easily.
- Quick view and reply in pop up window.
- Send your own signature for each messages.
- All of messages support to send in group.
- Quick search messages history.

Contact Us
Email: smscontactteam@gmail.com
Appreciate for your support.

Privacy Policy: https://adsms.messengerlite.net/policy/privacy_policy.html
User Agreement: https://adsms.messengerlite.net/useragreement/useragreement.html\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3965516,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=messenger.sms\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/messenger.sms/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/messenger.sms/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/messenger.sms/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/messenger.sms/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Rocket Booster\",\n \"appId\": \"com.armour.group.rockbooster\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.armour.group.rockbooster\",\n \"icon\": \"https://play-lh.googleusercontent.com/g0E5Wbhbtp6UaNvM0-kj2-7vjFfDwlSmqy1cjkui8g1he3wYJpB3swGwdT3Fotbvig\",\n \"developer\": {\n \"devId\": \"rocketbooster355\",\n \"url\": \"http://gplayapi.srik.me/api/developers/rocketbooster355\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The main functions of the rocket booster:
- Junk Cleaner
- Phone Booster
- Battery Optimizer
- RAM Optimizer

Rocket Booster is easy to use, have many functions. It works quickly and absolutely free!

Some functions may not work correctly due to the specifics of some versions of the operating system\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2252254,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.armour.group.rockbooster\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.armour.group.rockbooster/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.armour.group.rockbooster/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.armour.group.rockbooster/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.armour.group.rockbooster/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Clean Phone: Booster, Master\",\n \"appId\": \"com.clean.junk.phone.booster.smart.master\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.clean.junk.phone.booster.smart.master\",\n \"icon\": \"https://play-lh.googleusercontent.com/iU-lbONE7appyw8-HePXb2dvkO9BX8ffmZo98wgoDkUz6lH3IqFEwAwaxUAzLpIc8f0\",\n \"developer\": {\n \"devId\": \"Begamob Global\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Begamob%20Global\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Is your cellphone full of junk files and running slowly? Download this one-tap clean master, speedy booster application to make your phone faster than ever.

Clean Phone: Booster, Master is focusing on cleaning junk files, speed booster, CPU cooler, battery saver and photos clean.

Clean Phone: Booster, Master Main Feature:
✔ App Cache Cleaner: clean useless application cache files.
✔ Junk Clean Master: powerful junk cleaner.
✔ Speed Booster: phone booster and RAM cleaner to speed up your android phone.
✔ Memory Booster: release memory and boost phone.
✔ Power Clean Battery Saver: power cleaner kills battery draining apps to save power.
✔ CPU Cooler: cool down phone CPU temperature.
✔ Photo Cleaner: Clean duplicate picture with one-click
✔ 1 tap boost: boost phone as rocket

★ Junk Cleaner Master
• Speed up your phone and clean junk safely
• Clean application cache, download folders, browser history, clipboard content and more.

★ Speed Booster
• Analyze and optimize valuable storage space
• Kill background apps to release memory, and speed up your android phone
• Clear junk, such as obsolete and residual files

★ CPU Cooler Master
• Help cooler master the cpu by closing background apps manager, accounting for more resources, to overload the system.
• Cool down your phone and reduce CPU usage by closing the apps causing temperature rise with your permission.
• Monitor the status of the cpu temperature, clean phone master resources percentage

★ Optimize Photo Storage
• Find and remove similar, old, and poor quality (too bright, dark, or unfocused) photos
• Powerful photo manager and amazing photo optimizer
• Clean duplicate, similar, useless photos to release more space for your junk photo

★ Easy to Use
• Optimize your Android in just a few clicks
• Simple, intuitive user interface which is easy to navigate
• Fast, compact and efficient, with low RAM and CPU usage

Clean Phone: Booster, Master is the excellent app for junk cleaner, cache cleaner, release storage space, photo Clean Master, boosting phone performance and speed. One-tap to clear junk files to save space of SNS apps. With this app of clean master, you will have a better experience in watching videos, playing games, and chatting with your friends. Download this super magic phone clear app now!

If you like our app, please rate us five stars! That's the motivation for us to create more apps to serve you. Thanks for using this application !!!\",\n \"scoreText\": \"4.2\",\n \"score\": 4.19802,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.clean.junk.phone.booster.smart.master\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.clean.junk.phone.booster.smart.master/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.clean.junk.phone.booster.smart.master/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.clean.junk.phone.booster.smart.master/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.clean.junk.phone.booster.smart.master/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Phone Clean - Super Cleaner, Booster & Antivirus\",\n \"appId\": \"com.foqii.phone.clean.booster.cleaner.master\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.foqii.phone.clean.booster.cleaner.master\",\n \"icon\": \"https://play-lh.googleusercontent.com/QwnyKUU-ILBS3QFPhegmnk6rjlcekoxTpynKffDC0U6m2UgZcUXPRtOlinH1_6Wn6A\",\n \"developer\": {\n \"devId\": \"Foqii Pte. Ltd.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Foqii%20Pte.%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Phone Clean is a powerful phone cleaner. Clean your phone with only one tap. Phone Clean is a fast professional cleaner to deeply clean your phone and optimize your phone. Phone Clean will find and clean your junk files, system cache junk, unwanted APK files, app cache, long time unused apps, residual files, unwanted screenshots, which is really a MUST-HAVE android phone cleaner of master; Phone Clean is also a phone booster to boost your phone fast, a notification cleaner to clean junk noisy notifications, a CPU Cooler to cool down your phone, a battery saver to save your battery, a big file cleaner to find out the big files, an app cache cleaner, an fast speed booster, an app manager to find out the unused apps to release phone storage, a virus cleaner to antivirus free. Try this super cleaner and fast cleaner now!

Core Features:
Junk Cleaner: clean your phone junk files and app cache;
Phone Booster: boost your mobile phone;
Big File Cleaner: find and clean big files;
Battery Saver: save battery;
CPU Cooler: cool down CPU and phone;
App Manager: manage your apps;
Notification Cleaner: mute notification messages;

Phone Cleaner & Junk Cleaner
Phone Clean is a powerful cleaner to clean junk files, residual files, app cache, unused screenshot images, and so on. This phone cleaner master will deeply clean your phone and make it light and fast than before. This junk cleaner should be your first choice if you want to clean your phone. Use this phone cleaner, you will never ask how to clean my android phone any more. It is really a phone clean master & professional max cleaner.

Memory Cleaner & Phone Booster
If your phone is slow, Memory Cleaner helps you. Phone booster is a fast memory cleaner, which removes the unused background apps from your RAM to release phone memory. Memory booster boosts mobile phones fast with one tap boost. Also the phone booster has a feature called One Tap Booster which make you easy to boost mobile phone on phone desk windows. Really super RAM cleaner & max booster, try this super fast speed booster now!

Big File Cleaner
The Big File Cleaner finds out the big junk files, like big documents, videos, audios, APK files. You can remove the useless ones to release big phone space. Big File Cleaner is a super cleaner.

Virus Cleaner & Antivirus Free & Security Master
Virus Cleaner helps to protect your phone security. This antivirus cleaner is an phone security master which makes real-time protection against spyware, frauds, fake apps, viruses, and malware. With this virus cleaner, don't worry about your phone safe and security any more, your phone is safer than others. With one virus cleaner, full safe security master for your phone! Use one tap security scan to protect your information and privacy in your android phone. Antivirus free now!

Battery Saver
By analyzing battery usage status, the Battery Saver of Phone Clean helps you to save battery power and extend battery life by hibernating running apps.

CPU Cooler & Phone Cooler
CPU Cooler helps you to cool down your android phone temperature fast.

App Manager
App Manager will list the apps, help you to clean and remove big size apps or long time unused apps to release more phone space if the space is not enough. Also help to remove unused APK files.

Notification Cleaner
Notification Cleaner helps to mute and clean the unwanted noisy notification messages, which makes your phone quiet and clean.

In short, Phone Clean is a super phone cleaner which you can take it as phone cleaner, RAM cleaner, junk cleaner, memory booster, battery saver, CPU cooler, app manager, phone booster, phone cooler, notification cleaner, RAM booster, cache cleaner, speed booster, safe security.

Download the free cleaner now! Clean your android phone with one tap cleaner and booster!\",\n \"scoreText\": \"4.8\",\n \"score\": 4.764096,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.foqii.phone.clean.booster.cleaner.master\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.foqii.phone.clean.booster.cleaner.master/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.foqii.phone.clean.booster.cleaner.master/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.foqii.phone.clean.booster.cleaner.master/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.foqii.phone.clean.booster.cleaner.master/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Hinge - Dating & Relationships\",\n \"appId\": \"co.hinge.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/co.hinge.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/5P5svqXNCWqE0NtHSV91pl2YUGKJ2aitjaUWIVZd-65AtskDVO2o9bpYx1oAV9fr0-nt\",\n \"developer\": {\n \"devId\": \"Hinge, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Hinge%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Download. Delete. Never repeat.
Hinge is an inclusive dating app for people who want to get off dating apps for good. That means we’re for real people like you looking to date and find relationships, in the real world.

-3 out of 4 people on Hinge want to go on a second date
-#1 mobile-first dating app mentioned in the New York Times wedding section
-Fastest growing dating app in the US, UK, Canada, and Australia
-Home of viral Voice Prompts

Dating is hard. We try to make it a little less-hard.
The internet brings people together, but digital dating puts matches before connecting, in person, where it counts. To change that, we built a dating app designed to be deleted. AKA, a dating app built to get you on actual dates.

-We quickly learn your type and only introduce you to your best fits
-Your answers to unique prompts help others see your personality shine brighter than just a profile picture
-We help conversation flow—matches begin with a Like or Comment on a specific part of someone’s profile
-We actually check in to see how dates are going and follow up on how we can make better recommendations

Designed to be deleted
-Put it all out on the table—we ask about religion, politics, future plans, etc.
-Roses to kickstart potential connections and relationships
-Focused, curated Standouts shared with you every day
-Experience team dedicated to maintaining a zero-tolerance, safe, and inclusive environment for online chats and offline dates
-Voice Prompts to get a better sense of people’s personalities off the app

Love for Hinge
-"Hinge’s CEO says a good dating app relies on vulnerability, not algorithms." - Washington Post
-"Hinge is the first dating app to actually measure real-world success" - TechCrunch
-"A great option for those fed up with temporary love." - TheNextWeb

More great dates start with Preferred.
We’re a free app, but for those who want to invest even more into finding their next relationship, we have Hinge Preferred.

-More control over who you see
-See everyone who likes you at once
-Send unlimited likes
-Work with Hinge experts


All photos are of models and used for illustrative purposes only.\",\n \"scoreText\": \"3.5\",\n \"score\": 3.4674368,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=co.hinge.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/co.hinge.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/co.hinge.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/co.hinge.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/co.hinge.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"MOD-MASTER for Minecraft PE\",\n \"appId\": \"com.appblockgames.freecraftexploration\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.appblockgames.freecraftexploration\",\n \"icon\": \"https://play-lh.googleusercontent.com/yQmhlfqYCNwpocSCGV622RYvPvPtTS6I28um-tJVkxIE8OAgrhR4I4lONI8_vOg2lwY\",\n \"developer\": {\n \"devId\": \"Master for Minecraft\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Master%20for%20Minecraft\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"This application requires Minecraft Pocket Edition

MCPE Master for Minecraft PE is a free utility launcher for MC PE where you will find all the newest maps, addons, sideways, servers, wallpapers, skins, mods, as well as crafting and crafting recipes. Download and automatically install into the game through our launcher.

Get ready for the upcoming Caves & Cliffs release in 2022!

MCPE Maps and Seeds
- Free and Best Maps for MultiCraft with multiplayer for multiple players.
- Maps for Survival and Adventure
- Maps for Creative and Creating
- Maps for Mini Games and Parkour
- Maps for PVP and Hide and Seek
And much more Hills, Plants, Houses, Cities, Redstone, Flying Island, Horrors, Escape from Prisons, Cops and Bandits.

MCPE Mods and Addons
- Top popular and best Mod for Minecraft and addons with automatic installation in the game and a launcher.
- Mod Lucky Block
- Mod Pixelmon
- Mods on weapons and cannon
- Mod for cars and transport
- Mod for furniture and houses
And much more (Animals, Pets, Portals, Redstone, Dagon, Technique, Zombies, Mutants, Dragons, Tanks)

MCPE Skins
- The most popular and rare Skins for Minecraft, also additional functions, 3D skin preview and 360 degree rotation.
- Thief Skins (View skins by the player's nickname and the ability to steal it)
- Skin Editor (Create or edit any skin)
- Skins for Boys
- Skins for Girls
- Skins for the Child
- Skins for PVP
And much more (Animals, Military, Monsters, Celebrities, Heroes, Robots, Anime, Yutubers)

MCPE Servers
- Choose from the list and play on the servers or create your own server for multiplayer with multiple players in one game.
- Servers with mods
- Servers with PVP
- Servers with Mini Games
- PocketMine
All servers are tested and work stably on the latest versions of MC PE, the list of servers can be ranked by version and category.

Textures for MC PE
- A variety of texture packs and shaders for a more realistic game. Apply binding, radiance, glare, change the standard textures and lighting.
- Faithful
- 32x32
- 64x64
- 128x128
- Full HD
Realistic shaders and stuff, be careful your game can change beyond recognition.


Craft Guide for MC PE
Crafting recipes and a description of weapons, protection, tools, potions, food, transport, redston, as well as their extraction and crafting.
- Subject Recipes (Identifier, Description, Drop)
- Drink Potion
- Smelting Items
- Description Mob (Health, Attack, Strength, Spawn, specifications) (Creeper, Endermen, Gast, Zombie, Ocelot, Dragon Edge)
- Description of Biomes (Mobs, Objects) (Ocean, Desert, Swamp, Plain, Gorge, River)
All items, mobs and biomes are taken and mobile and computer versions of the game, the database is constantly changing and replenishing.

Buildings for MC PE
Master Builder of buildings and constructions, works without additional launchers. Instant construction in one click without unnecessary actions. All maps are saved and can be restored.
- Buildings
- Mansions
- Houses with furniture
- Constructions
- Statues
- Planes and helicopters
- Spaceship
- Sea ships
- Machinery
- Means of transport
- Medieval castle
All buildings are unique and created by professional builders, but if you have buildings on the map, they can be destroyed!

Some functions of the application may require BlockLauncher.

DISCLAIMER: NOT AN OFFICIAL MINECRAFT PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH MOJANG. All rights reserved. In accordance with http://account.mojang.com/documents/brand_guidelines

All files provided for download in this application are provided under a free distribution license. We (Master for Minecraft) in no way claim copyright or intellectual property.

If you feel that we have violated your intellectual property rights, or any other agreement, please contact us by e-mail multicraft.studio@mail.ru, we will immediately take the necessary measures.\",\n \"scoreText\": \"4.0\",\n \"score\": 4.049191,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.appblockgames.freecraftexploration\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.appblockgames.freecraftexploration/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.appblockgames.freecraftexploration/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.appblockgames.freecraftexploration/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.appblockgames.freecraftexploration/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Family Link\",\n \"appId\": \"com.google.android.apps.kids.familylink\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.kids.familylink\",\n \"icon\": \"https://play-lh.googleusercontent.com/rFAHXzQjUQwLH6vffa9rD_1gjH7dZykH7h6RjthsnoHTKGrJSNqTUw0D_TIQSC3ekg\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Try the Family Link parental controls app from Google. Whether your children are younger or in their teens, the Family Link app lets you set digital ground rules remotely from your own device to help guide them as they learn, play, and explore online. For children under 13 (or the applicable age of consent in your country), Family Link also lets you create a Google Account for your child that's like your account, with access to most Google services.


With Family Link parental controls, you can:

Guide them to good content

• View their app activity - Not all screen time is the same. Help your child make healthy decisions about what they do on their Android device, with activity reports showing how much time they’re spending on their favorite apps. You can see daily, weekly, or monthly reports.
• Manage their apps - Handy notifications let you approve or block apps your child wants to download from the Google Play Store. You can also manage in-app purchases, and hide specific apps on their device, all remotely from your own device.
• Feed their curiosity - It can be hard to figure out what apps are right for your child, so Family Link shows you teacher-recommended apps on Android that you can add directly to their device.


Keep an eye on screen time

• Set limits - It’s up to you to decide the right amount of screen time for your child. Family Link lets you set time limits and a bedtime for their supervised devices, so you can help them find a good balance.
• Lock their device - Whether it’s time to go play outside, have dinner, or just spend time together, you can remotely lock a supervised device whenever it’s time to take a break.


See where they are

• It’s helpful to be able to find your child when they’re on the go. You can use Family Link to help locate them as long as they’re carrying their Android device.


Important Information

• Family Link’s tools vary depending on your child’s device. See a list of compatible devices at families.google.com/familylink/setup
• While Family Link helps you manage your child's purchases and downloads from Google Play, they will not need approval to install app updates (including updates that expand permissions), apps you have previously approved, or apps that have been shared in Family Library. Parents should regularly review their child’s installed apps and app permissions in Family Link.
• You should carefully review the apps on your child’s supervised device and disable those you don’t want them to use. Note that you may not be able to disable some pre-installed apps.
• To see the location of your child or teen’s device, it must be powered on, recently active, and connected to the internet.
• Teacher-recommended apps are only available on Android devices in the US to parents of children of certain ages.
• While Family Link provides tools to manage your child’s online experience, it does not make the internet safe. Rather, it is intended to give parents choices about how their kids use the internet, and encourage conversations about internet use.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.327038,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.kids.familylink\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.kids.familylink/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.kids.familylink/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.kids.familylink/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.kids.familylink/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Blood Pressure App Pro\",\n \"appId\": \"bloodpressure.bloodpressureapppro.bloodpressureapp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/bloodpressure.bloodpressureapppro.bloodpressureapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/J5Is-E9fWPYJLzXo8wx3RoStjXv_3FtPIqVtYuoOqjejbLtcbAZrjAQLYEKAK7oWcUw\",\n \"developer\": {\n \"devId\": \"Hitchhike Tech\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Hitchhike%20Tech\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Blood Pressure App Pro allows you in a fast, simple, and safe way to control your blood pressure, heart rate, blood sugar, weight, etc. You can easily track the evolution tendency of your values, get the meaning of your measurement values, know if you are at a normal level, and be able to discover information and helpful tips on how to improve your lifestyle for better health!️

Why you need Blood Pressure App Pro:
❤️Control blood pressure easily: A simple way to analyze, observe, control your blood pressure and assist your measurements, helping you improve health problems effectively, like hypertension, hypotension, etc.

📊Track all health data: Get clear analysis of your blood pressure, blood sugar, weight, and body mass index trends to control your levels in a healthy range.

🥦Know what you eat: Quick food scanner for you to scan the bar code easily to check if food is healthy or if the amount of fat, calories, sugar exceed the standard.

Key features
🩸Automatically analyze, track and control blood pressure
💖Automatically analyze, track and control blood sugar
🫀Automatically analyze, track and control pulse rate
📉Automatically analyze, track and control weight and body mass index
🔔Schedule smart alarms for health so you won't miss any regular measurement
📈Detailed analysis of short, medium and long term trends for you
📖Comprehensive information to analyze your blood pressure, heart rate, blood sugar levels
🥗Superfast QR code scanning to check if your food is healthy or any ingredients that exceed the standard
📤Export all your health data reports for further analysis and medical consultation
💡Gain knowledge and suggestions on keeping a healthy diet

Designed for people who:
- Still record blood pressure and sugar levels on paper
- Wonder if their blood pressure, blood sugar and pulse are within normal ranges
- Want to easily analyze changes and trends in their blood pressure, blood sugar, pulse and weight
- Need scientific and accurate knowledge and advice on blood pressure, blood sugar and healthy lifestyle
- Have no idea how to display blood pressure condition and changes to their doctor
- Wish to check blood pressure regularly as required but sometimes forget

Easy-to-use Health Data Analysis
This app is ideal for those who wish to take control of their blood pressure, and provides an easier way to check whether their blood pressure values, blood sugars levels and pulse rate are all within a healthy range.

Clear History of All Measurements
You'll be able to quickly and easily access the history of all your measurements anytime, so as to capture subtle changes in very simple way and take actions accordingly for health improvement.

Detailed Tags for Different States
The app also enables you to record tags for your blood pressure values under different measurement states (After / before a meal, lying / sitting / standing, left / right hand, etc.). You can analyze and compare blood pressure under different states. With more detailed and categorized information, it's easy for you to take care of your health better.

Smart Health Alarm
The alarm lets you set reminders to schedule each function, making sure you don't forget any regular measurements. This way, you can better manage your health and avoid potential irregularities early.

Export to CSV & Share
All the health data you've entered may be exported as CSV files, allowing you to share your health readings and changes with your family, physician, or health consultant for further advice and take advantage of your medical appointment.

Health Insights & Knowledges
You'll also find a wealth of scientifically proven knowledge, helpful healthy hints, concerning blood pressure, heart health, blood sugar, etc., and reliable ways to help you achieve health improvements in the short, mid, and long run.

Download the Blood Pressure App Pro to make you healthier and happier than ever!❤️\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7272725,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=bloodpressure.bloodpressureapppro.bloodpressureapp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/bloodpressure.bloodpressureapppro.bloodpressureapp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/bloodpressure.bloodpressureapppro.bloodpressureapp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/bloodpressure.bloodpressureapppro.bloodpressureapp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/bloodpressure.bloodpressureapppro.bloodpressureapp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Calendar\",\n \"appId\": \"com.google.android.calendar\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.calendar\",\n \"icon\": \"https://play-lh.googleusercontent.com/Jsbb0EeesKUbDTl3UyDKO6sNz45RCMh7gnoI6giQcQz1f5Mj0J4TRh7Psyu53vShh-qm\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get the official Google Calendar app, part of Google Workspace, for your Android phone and tablet to save time and make the most of every day.

• Different ways to view your calendar - Quickly switch between month, week, and day view.
• Events from Gmail - Flight, hotel, concert, restaurant reservations, and more are added to your calendar automatically.
• Tasks - Create, manage, and view your tasks alongside your events in Calendar
• All your calendars in one place - Google Calendar works with all calendars on your phone, including Exchange.

Google Calendar is part of Google Workspace. With Google Workspace, you and your team can:
• Schedule meetings quickly by checking coworkers' availability or layering their calendars in a single view
• See if meeting rooms or shared resources are free
• Share calendars so people see full event details or just if you are free
• Access from your laptop, tablet or phone
• Publish calendars on the web

Learn more about Google Workspace: https://workspace.google.com/products/calendar/

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/\",\n \"scoreText\": \"4.2\",\n \"score\": 4.221797,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.calendar\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.calendar/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.calendar/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.calendar/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.calendar/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Akinator\",\n \"appId\": \"com.digidust.elokence.akinator.freemium\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.digidust.elokence.akinator.freemium\",\n \"icon\": \"https://play-lh.googleusercontent.com/rjX8LZCV-MaY3o927R59GkEwDOIRLGCXFphaOTeFFzNiYY6SQ4a-B_5t7eUPlGANrcw\",\n \"developer\": {\n \"devId\": \"Elokence SAS\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Elokence%20SAS\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Akinator can read your mind just like magic and tell you what character you are thinking of, just by asking a few questions. Think of a real or fictional character and Akinator will try to guess who it is.
Will you dare challenge the genie? And what about other themes like movies, animals…?

NEW
Extend your Akinator experience with a user account!
Akinator lets you create your own user account. It will record the Aki Awards you've won, the accessories you've unlocked and your Genizs' balance. They will follow you everywhere now, even if you change your mobile device.

2 ADDITIONAL THEMES BESIDES THE CHARACTERS
Akinator is getting stronger and stronger... The genie has increased his knowledge, and now you have the opportunity to also challenge him on movies and animals!
Will you manage to defeat Akinator?

GO IN SEARCH FOR AKI AWARDS
The blue Genie invites you to think outside the box. As you know, he likes to guess characters and to take on difficult challenges. To do that, make him guess forgotten characters who have not been played for a very long time and you may win the best Aki Awards.

BE THE BEST PLAYER
Challenge the other players on the leaderboards to prove who the best is. You may write your name on the Last Super Awards board or on the Hall of Fame.

KEEP ON GUESSING
Each day, try to find the 5 mysterious characters and win some additional and specific Aki Awards. Complete the full Daily Challenge and earn the Gold Daily Challenge Aki Award, one of the most prestigious Aki Awards.

UNLEASH YOUR CREATIVITY
Using Geniz, you can unlock and play with new backgrounds and customize the blue Genie to your liking. The magical genie will turn into a vampire, a cowboy or a disco man. Unleash your creativity by mixing 12 hats and 13 clothes to create your ideal combination.

PLAY MORE, WITHOUT ANY LIMITS!
THE PREMIUM POTION unlocks all characters and removes all ads from the app, to ensure you get the best gaming experience.

Main features:
-16 languages (French, English, Spanish, Portuguese, German, Japanese, Arabic, Russian, Italian, Chinese, Turkish, Korean, Hebrew, Polish, Indonesian and Dutch)
-Get 2 additional themes: Movies and Animals
-Aki Awards Board to get an overview of your collection
-Hall of Fame with both current and previous ranking
-Last super awards for Black, Platinum and Gold Aki Awards
-Daily Challenges Board
-Add magic by proposing a photo or some questions
-Customize your genie by combining different hats and clothes
-The sensitive content filter
-Video recording feature in-game

---------------------------
Follow Akinator on:
Facebook @officialakinator
Twitter @akinator_team
Instagram @akinatorgenieapp
---------------------------

Genie’s tips:
-Akinator requires an Internet connection to use his magic lamp. Turn on Wifi or be sure to have a data plan.
-Don’t forget to scroll down the list to find and select your language\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5658026,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.digidust.elokence.akinator.freemium\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.digidust.elokence.akinator.freemium/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.digidust.elokence.akinator.freemium/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.digidust.elokence.akinator.freemium/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.digidust.elokence.akinator.freemium/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Macy's\",\n \"appId\": \"com.macys.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.macys.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/ZoyWOa-AcXxkpoPdiZf8-1nPNDnMsko5CRbxtNLd6cVkXM-2XpuVO2fLNqBqdKD2vcg\",\n \"developer\": {\n \"devId\": \"Macy's Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Macy's%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The latest version of the Macy’s app is better than ever! Whether you’re shopping styles for him, her, kids or your home, use the Macy’s app to shop our entire site—anytime, anywhere. Don’t forget to manage your Star Rewards account on the go so you can take advantage of special offers, in-store savings, and more! Plus, check prices, stay organized with Lists & create a style board with fave looks to share with friends for real-time feedback.



SHOP LIKE AN ALL-STAR:

- Enable notifications for early access to new collections & exclusive deals.

- See furniture in your space virtually before you buy.

- Take our Style Inspo quiz to get daily fashion recs in your Style Feed.

VIEW JUST-FOR-YOU UPDATES:

-See your current orders & rewards balance right when you open the app.

-Keep tabs on points & when your rewards expire.

-Quickly find your unique order bar code & store pickup details.

USE STORE MODE:
- Scan bar codes to check prices, read reviews and see more colors & sizes—even order online!
- With Macy’s maps, tell us what you’re looking for & we’ll tell you where to go.

MANAGE ALL THINGS STAR REWARDS
- Easily check your Macy’s Card account balance.
- Schedule & make payments right from the app.
- Track your progress toward the next loyalty status & more!

CHECK OUT FASTER WITH WALLET:
- Find all your Macy’s offers, all in one place. Use them online & in store.
- Check out faster with the best offer, every time.
- Manage your payment info in a secure spot.

CREATE LISTS & GET FASHION ADVICE:
- Collect your faves in one place. Just tap “Add to List.” You can create a List for every occasion!
- Get alerts whenever the price drops on one of your items.
- Make a style board for any occasion, share it with friends & get their feedback.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6398535,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.macys.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.macys.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.macys.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.macys.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.macys.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Screen Recorder - Vidma Record\",\n \"appId\": \"vidma.screenrecorder.videorecorder.videoeditor.pro\",\n \"url\": \"http://gplayapi.srik.me/api/apps/vidma.screenrecorder.videorecorder.videoeditor.pro\",\n \"icon\": \"https://play-lh.googleusercontent.com/YUhRAhondzMY7YX-5ARuMPxao-9-f4ZQCDqpy_pPPLFl9f3PfQx1AE69An40-HJa3XVO\",\n \"developer\": {\n \"devId\": \"Vidma Video Studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Vidma%20Video%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"#1 Screen Recorder with Audio
Vidma Screen Recorder helps you record & take screenshots with ease.

Vidma Screen Recorder makes screen recording more accessible than ever. Record, pause, resume, and screenshot any time with the handy record button. It's never too late to catch a live show again!

Why choose Vidma Screen Recorder?
✅ NO root needed, NO recording time limit
✅ Stable & Smooth video recorder
✅ Screen record with audio & no glitches
✅ Video recorder with face camera
✅ Screen video recorder without FPS drops
✅ Easy screen recorder app with customizable shortcuts
✅ Supports internal sound recording for Android 10 and up systems

🏆 Powerful Video Recorder
• Clear sound screen recorder: screen record with audio and microphone
• Brush tool: enable the brush on the toolbar and add marks on your screen
• Customizable and professional options: record screen in high quality (up to 2K resolution, 60fps)
• Video recorder without lag: running smoothly and stably on Android devices
• Video recorder without root: No need to root for screen recording
• Level up your recordings with professional video editing tools

💡 Recording Tips for You
- For the most seamless recording experience, enable the floating button before you begin.
- The record button can be disabled if necessary. You can turn it off or adjust its opacity in Settings.
- You can stop video recording instantly by shaking your Android device.

🎞 Screen Recorder, Editor
• Quick edit: rotate, cut, and crop videos
• Video trimmer: remove the unwanted part of your recordings
• Add music: it will make your video sound more engaging
• Change speed: Slow down or speed up your screen recording

Most recording features in this screen recorder are totally free to use. Yet you can unblock more powerful video editing tools with Vidma Premium.

Are you a fan of Vidma? Stay connected with us:
Discord: https://discord.gg/NQxDkMH

Disclaimer:
* Vidma Video Recorder is not affiliated with any social media platforms.
* Screen recording features are offered for non-commercial and personal use only.
* Users shall be solely responsible for any intellectual property infringement arising from the recording.
* Vidma Video Recorder will never collect personal data from users without permission. All the recorded files are saved locally on your device. They cannot be accessed by us or by any third party.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6271386,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=vidma.screenrecorder.videorecorder.videoeditor.pro\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/vidma.screenrecorder.videorecorder.videoeditor.pro/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/vidma.screenrecorder.videorecorder.videoeditor.pro/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/vidma.screenrecorder.videorecorder.videoeditor.pro/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/vidma.screenrecorder.videorecorder.videoeditor.pro/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Win Money – Play Game for Cash\",\n \"appId\": \"com.winmoney.real.money.giftcard.gift.cards.free.cash.app.play.make.win.earn.rewards.paid.survey\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.winmoney.real.money.giftcard.gift.cards.free.cash.app.play.make.win.earn.rewards.paid.survey\",\n \"icon\": \"https://play-lh.googleusercontent.com/fALsC6T2wz_Kci9RPTHM8rMQRmJEcP92NPHC8PXxLT56OEIvvVu7gZ2-AeNccPo42wc\",\n \"developer\": {\n \"devId\": \"Make Money Win Real Money Rewards\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Make%20Money%20Win%20Real%20Money%20Rewards\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Win Money provides a fun, exciting way to play the best and top trending games. Discover new games to play, and get paid to play these top games!

No Cashout minimum.

No requirements to cashout.

No fake money. One currency, always converts to cash.

Get paid within 24 hours.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4050345,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.winmoney.real.money.giftcard.gift.cards.free.cash.app.play.make.win.earn.rewards.paid.survey\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.winmoney.real.money.giftcard.gift.cards.free.cash.app.play.make.win.earn.rewards.paid.survey/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.winmoney.real.money.giftcard.gift.cards.free.cash.app.play.make.win.earn.rewards.paid.survey/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.winmoney.real.money.giftcard.gift.cards.free.cash.app.play.make.win.earn.rewards.paid.survey/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.winmoney.real.money.giftcard.gift.cards.free.cash.app.play.make.win.earn.rewards.paid.survey/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Blood Pressure Monitor & Info\",\n \"appId\": \"com.istore.bloodpressuremonitor.bpmonitor\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.istore.bloodpressuremonitor.bpmonitor\",\n \"icon\": \"https://play-lh.googleusercontent.com/J8sXWWw6CmLi6c0oqk3YQ8VEpfqd0qalRUuECbWOwlmnwHVuM-tALURyk3qP6cfaAUg\",\n \"developer\": {\n \"devId\": \"Braly Co., Ltd\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Braly%20Co.%2C%20Ltd\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Blood Pressure Monitor & Info
Blood Pressure app easy track your blood pressure & know reliable BP information

Blood Pressure Monitor is your reliable, safe, and fast assistant to helps you to log and keep track of your blood pressure readings. Start monitoring your blood pressure today and share your recordings with your doctor.

Blood pressure app tracker is an indispensable app which will allow you to log high blood pressure measurements (or low), pulse or heart rate and finally take hypertension or hypotension under control. With this easy-to-use BP Tool, you can find whether your blood pressure is in the healthy zone.

The Blood Pressure App is your reliable, safe, and fast assistant to help you to find BP info, track your BP trends and provide good lifestyle tips to benefit your health. With the help of the cardio journal, you can easily take care of your heart health. All data in the diary can be quickly and easily analyzed on different charts, showing the trends, the changes, the average values for the day, week, 2 week and month periods and etc.
We promise that you will find it fast and easy to pay close attention to your blood pressure and to detect small changes brought by your lifestyle improvements.

Main function of Blood Pressure App: Monitor & Tracker:

📖 Blood Pressure Tracker
✓ BP Tools with one touch tonometer readings adding - monitor and log blood pressure: systolic, diastolic, pulse and weight, add comments and notes for each measurement.
✓ BP Monitor Track your daily well-being - make the dependence between the low or the high track blood pressure and your mood (condition).

📚 Blood Pressure Information
✓ Blood Pressure App can help you know Blood Pressure information about your BP value ranges, tendency and other knowledge you may call for.
✓ BP Tracker with a smart system of tags that allows Blood Pressure Tracker to be helpful. With this system you can find out the trends of pressure changes and understand what it is related to.

📊 Blood Pressure Analysis
✓ Blood Pressure Monitor & Information app can be used to analyze your blood pressure values. Input your blood pressure values and press on the analyze-button. Then the app will mark your blood pressure values with different colors.
✓ BP Monitor view all data in the journal on 11 different charts. You can configure the charts for your needs. See everyday values, or view average values for a day, week, or month. For example, if you have hypertension - do you know what the cause is and what is the effect. And what affects this the most?

💖 And more amazing function and information
✓ Start managing your blood pressure now by using our blood pressure app, especially high blood pressure or low blood pressure patients.
✓ Blood Pressure App has the info and guidelines section to educate and inform the user about blood pressure and how to control the blood pressure.
✓ Track medications your cardiologist recommends and analyze their effectiveness. When you track blood pressure you can add a medication to the measurement and find out its effect.

Using the Blood Pressure App, you can grasp your BP condition fully under different states (lying, sitting, before/after meal, etc.). There is no doubt that your health will be taken care of to yield twice the result with half the effort.
What’s more, when you wish to know more about blood pressure, feel free to contact us and we are here by your side and ready to help.

Note:
⚠️ Blood Pressure Monitor is created to analyze your blood pressure values and does not measure your blood pressure and pulse. All result values are random generated.
⚠️ Blood Pressure Information only saves and maintain Blood Pressure Records it does not calculate or measure anything

Download now and enjoy Blood Pressure Monitor & Info. Hope you have the health and happiness we can bring you 💪! Thank you for using our app\",\n \"scoreText\": \"4.7\",\n \"score\": 4.69,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.istore.bloodpressuremonitor.bpmonitor\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.istore.bloodpressuremonitor.bpmonitor/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.istore.bloodpressuremonitor.bpmonitor/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.istore.bloodpressuremonitor.bpmonitor/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.istore.bloodpressuremonitor.bpmonitor/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"MTV\",\n \"appId\": \"com.mtvn.mtvPrimeAndroid\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.mtvn.mtvPrimeAndroid\",\n \"icon\": \"https://play-lh.googleusercontent.com/Gwo3SLWonob_F_TvDC3jSt86CkoKwpsJE8ShTkZnvQfon3wsAKq_kcPRQ2fF9ONslSk\",\n \"developer\": {\n \"devId\": \"MTV\",\n \"url\": \"http://gplayapi.srik.me/api/developers/MTV\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Watch full episodes of your favorite shows with the MTV app. Enjoy The Challenge, Jersey Shore Family Vacation, Teen Mom 2 and many more, available right in the palm of your hand. You'll also get exclusive content, including cast reactions, bonus clips and deleted scenes.

Watch full episodes from your favorite series the day after they air. Sign in with your TV or cable provider to unlock even more episodes and exclusive content, including:

• Jersey Shore Family Vacation
• The Challenge
• Teen Mom 2
• Ridiculousness
• Video Music Awards (VMAs)
• Catfish: The TV Show
• MTV Floribama Shore
• Double Shot at Love
• Teen Mom OG
• Siesta Key
• The Hills: New Beginnings
• CMT's Dallas Cowboys Cheerleaders: Making the Team
• CMT Music Awards
• CMT's Hot 20 Countdown
• CMT Crossroads

Signing in with your TV provider is simple: Just tap on Settings, select your provider, and log in with your provider user name and password. For more details about signing in with your TV provider, contact mtvappsupport@mtv.com.

APP FEATURES:

• We save your spot, so that you never miss a scene. Can't finish an episode? Continue watching right where you left off. Just tap on the series you were watching, and our video player does the rest.

• Stream Live TV. That's right -- you can even watch MTV in real time when you sign in with your TV provider.

• Chromecast support lets you cast your favorite shows to your TV. Just hook up your TV and your Chromecast device.

• You won’t need to sign in to watch other great MTV and MTV News videos, including select full episodes, after shows, bonus clips, sneak peeks and exclusive digital series.

• Get inside access to the MTV Video Music Awards (VMAs) and the MTV Movie Awards with exclusive clips, backstage interviews and red carpet highlights. Watch real-time livestream coverage from music festivals, San Diego Comic-Con and other events.

For more information about this app and online behavioral advertising, check out http://srp.viacom.com/sitefaq.html.

The Terms of Use for this app include arbitration for disputes -- see http://legal.viacom.com/FAQs/.

Privacy Policy: https://privacy.paramount.com/en/policy

Cookies Policy: https://www.viacomcbsprivacy.com/cookies

Do Not Sell My Personal Information: https://www.viacomcbsprivacy.com/donotsell\",\n \"scoreText\": \"3.1\",\n \"score\": 3.0700622,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.mtvn.mtvPrimeAndroid\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.mtvn.mtvPrimeAndroid/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.mtvn.mtvPrimeAndroid/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.mtvn.mtvPrimeAndroid/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.mtvn.mtvPrimeAndroid/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Six Pack in 30 Days\",\n \"appId\": \"sixpack.sixpackabs.absworkout\",\n \"url\": \"http://gplayapi.srik.me/api/apps/sixpack.sixpackabs.absworkout\",\n \"icon\": \"https://play-lh.googleusercontent.com/F3g--X2roFmKT3CbyWGzq3I3KlI_KyISlVD_gzU8OZVJw0g5WjOQ3LMAX_udGCmBnng\",\n \"developer\": {\n \"devId\": \"Leap Fitness Group\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Leap%20Fitness%20Group\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Want to lose belly fat and get six pack abs for the summer? Start sculpting your abs with this super effective abs workout app. Workouts are suitable for all levels, and you can easily do them at home or anywhere, anytime. Just a few minutes a day to get the abs you have been dreaming of!

💪 Workout Plan with Different Levels
Lose Belly Fat, Rock Hard Abs and Six Pack Abs - these 3 levels of workout plans help you lose belly fat and build abdominal muscles step by step. Whether you are a beginner or a pro, you can find workouts that are suitable for you. Different exercises are prepared every day to keep it fresh and exciting.

🏆 30 Days of Workout Routines
Amazing results will be achieved earlier once you set a clear goal. 6 Pack Abs - Abs Workout helps you set exercise goals by providing systematic and scientific 30-day workout routines. The exercises can help you burn belly fat as well as tone your abs. Exercise intensity increases gradually, so you can easily make exercising a daily habit.

🏠 Your Personal Trainer at Home
Is hiring a personal trainer too expensive? Have no time to go to the gym? 6 Pack Abs - Abs Workout is your personal trainer at home. Based on the high-intensity circuit training principle, these workouts are as effective as gym workouts.

🎥 Animations and Video Guides
6 Pack Abs - Abs Workout has been scientifically proven to help strengthen all your abdominal muscles. With animations and video guides, you can make sure you perform each exercise safely and effectively.

⭐ Features
- 30-day workout routines for six pack abs and a stronger body
- Amazing training for weight management and muscle building
- Exercise intensity increases step by step
- Customize your workout reminders
- Records training progress automatically
- Suitable for everyone, beginners, pro, men, women, teens and seniors

🏡 Workout at Home
Take a few minutes a day to get six pack abs with our workout at home. No equipment needed, just use your bodyweight to workout at home.

🔥 Belly Fat Burning
This app has belly fat burning workouts, core workout, lose belly fat workout. These belly fat burning workouts, core workout, lose belly fat workout proved to help build abdominal muscles. Sweat with our core workout and lose belly fat workout!

👌Home Workout No Equipment
You can use this home workout app anywhere, because all of these home workout no equipment needed.

😎 Home Workouts for Men
Want effective home workouts for men? We provide different home workouts for men. The home workout for men is proven to help you get six pack abs in a short time. You'll find the home workout for men that most suitable for you. Try our home workout for men now!

💦 Fat Burning Workouts & Hiit Workouts
The best fat burning workouts & hiit workouts for better body shape. Burn calories with fat burning workouts, and combine with hiit workouts to get the best results.

🗓 Fitness Coach
All workouts are designed by professional fitness coach. Workout guide through the exercise, just like having a personal fitness coach in your pocket!\",\n \"scoreText\": \"4.9\",\n \"score\": 4.9275823,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=sixpack.sixpackabs.absworkout\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/sixpack.sixpackabs.absworkout/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/sixpack.sixpackabs.absworkout/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/sixpack.sixpackabs.absworkout/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/sixpack.sixpackabs.absworkout/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Brigit: Borrow & Build Credit\",\n \"appId\": \"com.hellobrigit.Brigit\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.hellobrigit.Brigit\",\n \"icon\": \"https://play-lh.googleusercontent.com/CszbFL-MevwL-6EaqaeDmEqrxrAh2yYU8huPNiCir-Nv_Sow9XuQhttk6M9BjH4vI5M\",\n \"developer\": {\n \"devId\": \"Brigit\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Brigit\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get up to a $250* instant cash advance with Brigit. Build credit, save money, get credit score insights, start budgeting smarter & avoid overdraft fees with Brigit Plus.

It’s personal finance, simplified. Our members have saved over $300 million - over $514 annually per member. Plus, 91% of our members report a reduction in their financial stress thanks to Brigit**.

HERE’S WHY MILLIONS OF PEOPLE USE BRIGIT

Instant Cash Advances with Easy Repayment
• Instant Cash Advance: Get cash fast and avoid expensive overdraft fees and charges with up to $250* when you need it
• No interest, transfer fees, processing fees, late payment fees or tips
• No mandatory minimum or maximum repayment time frame. Repay us when you get paid or when you can afford it by setting the term in the app or reaching out to info@hellobrigit.com
• Example $250 cash advance: Sent via debit card instantly and paid back on the date you set with no interest, $0 origination fees, $0 processing fees, $0 transfer fees related to the advance

Build Credit While You Save Money
• Build your credit score*** and save money with Brigit’s Credit Builder
• We arrange a 12-24 month loan for you & store the funds in a new deposit account
• Choose your monthly contribution, even as little as $1 – the rest will be paid from the new account
• When the loan is paid off, the money you put in all comes back to you!
• No credit check or security deposit
• Credit bureau reporting to Experian, Equifax & Transunion
• Build credit easily & affordably with Brigit

Credit Builder Loans
• All Credit Builder Loans are 0% APR
• Loan term is between 1 to 2 years – you can always repay early
• Credit Builder loans issued by Coastal Community Bank, Member FDIC
• Example terms for Brigit's Credit Builder account: a $600 loan, paid back over 12 months with $50 dollar monthly payments and no interest (0% APR). $0 for processing, origination, late payment, transfer, or early payment fees
• Build your credit one step at a time with a Brigit Credit Builder account

Earn Extra Cash & Save Money Now with Jobs & Partner Offers
• Earn extra cash in your spare time
• Find remote work, part-time gigs, & full-time jobs
• Save on everyday expenses with cash back discounts on loans & insurance savings

Credit Score Insights
• Credit score tracker lets you check your credit score
• Get full credit reports and tools to help you grow credit confidence

Easy Sign Up. No Red Tape
• Connect your bank account and that’s it!
• Brigit works with thousands of banks like Bank of America, Wells Fargo, TD Bank, Chase & 15,000+ more
• Two simple plans. No hidden fees, tips or fine print
• Brigit’s basic plan with account alerts and financial insights is free
• Our Plus plan is a flat $9.99 monthly, with instant transfers and extra financial tools to help you build credit, budget better & save

Support is Here 7 Days a Week
If you ever need us, email info@hellobrigit.com

DISCLOSURES
Brigit is not affiliated with Credit Karma, Kikoff Credit Builder Loan, Credit One, Credit Strong, Albert, Earnin, Dave - Banking, Chime, Cleo, Klover, MoneyLion, FloatMe, Empower, Cash Now App, Venmo, Self, or Possible Finance

Brigit Credit Builder (included with Brigit Plus membership) is provided by Brigit and its bank partner, Coastal Community Bank, Member FDIC. Brigit Credit Builder is separate from Brigit Instant Cash. Brigit Credit Builder installment loans and lines of credit are issued by Coastal Community Bank, Member FDIC, subject to approved underwriting practices.

(*) Subject to Brigit’s approval and policies
(**) Analysis conducted by Brigit, assumes an average overdraft fee of $34
(***) Impact to credit score may vary, and some users’ credit scores may not improve. Results depend on many factors including whether your loan payments are on time, the status of your other, non-Brigit accounts, and financial history

Privacy Policy: https://www.hellobrigit.com/privacy\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5856276,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hellobrigit.Brigit\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.hellobrigit.Brigit/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.hellobrigit.Brigit/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.hellobrigit.Brigit/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.hellobrigit.Brigit/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Costco Wholesale\",\n \"appId\": \"com.costco.app.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.costco.app.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/gqOziTbVWioRJtHh7OvfOq07NCTcAHKWBYPQKJOZqNcczpOz5hdrnQNY7i2OatJxmuY\",\n \"developer\": {\n \"devId\": \"Costco Wholesale\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Costco%20Wholesale\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Costco Mobile App is the easiest way to save time and money on the go. We've completely re-thought our mobile app and made it easier for members to access the incredible values found only at Costco.

• New! Your membership card is now available on the Costco app. Enter the warehouse and begin checkout at the register by using the Digital Membership Card on your phone.

• SAVINGS: With the Costco Mobile App you'll always have the latest warehouse savings right on your device.

• SHOP: Members can shop Costco.com’s unique, expanded selection, offering thousands of items not found at your local warehouse, delivered straight to your door.

• WAREHOUSE INFO: See details about your nearest Costco including hours of operation and holiday hours, and navigate straight to the warehouse.

• SHOPPING LIST: Keep track of the items you want to pick up on your next trip to Costco.

• PHOTOS: Order prints, wall décor or photo gifts anywhere, anytime.

• PHARMACY: Order prescription refills & check status on prescriptions. Get refill reminders, track your medications, manage family accounts, transfer prescriptions, and find a Costco pharmacy.

• FEEDBACK: Costco is always looking for ways to improve your experience. Tap Feedback and tell us what you think of our mobile app, website or warehouse.\",\n \"scoreText\": \"3.3\",\n \"score\": 3.2635589,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.costco.app.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.costco.app.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.costco.app.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.costco.app.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.costco.app.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Amazon Freevee\",\n \"appId\": \"com.amazon.imdb.tv.mobile.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.amazon.imdb.tv.mobile.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/YM0D1cV8nmPNKwDse4ClRmsSdarE7xlMk9psP-VgLcSNU1R6yPUjvmztZNMoo84yGfQ\",\n \"developer\": {\n \"devId\": \"Amazon Mobile LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Amazon%20Mobile%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"- Amazon Freevee is a premium free streaming service. Watch thousands of hit movies, shows, Freevee Originals, and live 24/7 entertainment channels to match your mood.
- Freevee Features
- This is your Freevee — enjoy what you like, how you like, and whenever you like.
- Stories to match your mood — Freevee is the destination for Armchair Detectives, Aspiring Reality Stars, Hopeless Romantics, Nostalgia Seekers, and everyone in between. You bring the snacks, we bring the shows.
- Can't decide What to Watch? — We got you. Explore our handpicked favorites through our Live Channels feature. Discover a variety of 24/7 Entertainment Channels like Stories You Love and Crime 360 that cycle through themed movies and episodes. We promise you'll find something new!
- Original shows and movies from the award winning Amazon Studios, with all new exclusive releases added each month that are free to stream.
- No credit cards. No subscription fees. 100% Free. — Log in with your Amazon account to start streaming today. Freevee is supported by Ads to bring you thousands of hit shows and movies with no hidden costs.
- Search by Title, Genre, or Cast — Plus, explore Trending Searches to see this week's most popular titles.
- For our Terms of Use and Privacy Notice, please see https://www.primevideo.com/terms. Amazon, Freevee, Prime Video and all related marks are trademarks of Amazon.com, Inc. or its affiliates.\",\n \"scoreText\": \"3.9\",\n \"score\": 3.887097,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.amazon.imdb.tv.mobile.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.amazon.imdb.tv.mobile.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.amazon.imdb.tv.mobile.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.amazon.imdb.tv.mobile.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.amazon.imdb.tv.mobile.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Word Office - PDF, Docx, Excel\",\n \"appId\": \"com.officedocument.word.docx.document.viewer\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.officedocument.word.docx.document.viewer\",\n \"icon\": \"https://play-lh.googleusercontent.com/XUNglEA-ePe9xgu3fzT9JzY-vvrAbx9bLMYBsspmGk7qZuIEu_jE6wx65xDQpkkH3T99\",\n \"developer\": {\n \"devId\": \"Begamob Global\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Begamob%20Global\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Word Office - PDF, Docx, Excel, Docs, All Document has the ability to convert files .docx to pdf reader. The word office app supports a number of types such as .docx, word, pptx, txt amongst others. All document are fully compatible with word office, docx reader e Word Docx.

The word editor app allows edit your files docx, word office, excel, file .ppt, pptx, txt simple. Main features include the ability to track changes, comments, edit word, .docx, pdf reader, excel, file .ppt, pptx, txt and spell checks.

PDF Viewer and Book Reader is the leading office applications to help you read the document downloaded from the Internet, open files on android, supports ultra fast read pdf files and pdf viewer for android free download.

Word Office, documents viewer for docx :
• Word Office - Docx, Word Viewer and key features of this office document - document excel offline
• Office Document - Docx Excel gives you all the feature to view and read documents offline on office for Android including Docx and Offline Word Files.
• Word Office - PDF, Docx, Excel, Docs, All Document : Help you can create .docx file, edit .docx file and collaborate with others on documents from your Android phone with the Docx app.
• Share Word editor, Docx editor, easily through gmail

Easy to Use and Powerful Functions for PDF Reader, PDF editor
► Word PDF editor document - PDF reader, PDF viewer, office word key features:

- Read all PDF viewer
- Load PDF documents editor
- Word excel Share pdf reader & collaborate in the same document at the same time.
- Open pdf reader, pdf editor.
- Edit pdf viewer, documents viewer fastest and full option Document Editor
- Word PDF reader document can grid or list display
- Search for .docx files and explore more word office
- Edit documents like edit pdf reader
- Word pdf editor share your documents to save
- Office word our free document reader supports everyone and special office users with office word such as : Pdf Reader, PDF Viewer, PDF Viewer is supported formats for document viewer to be used

PDF VIEWER feature:
- Quickly open and view PDF documents.
- A simple list of PDF files
- Search, scroll, and zoom in and out.
- Choose a single page or continuous scroll mode
- Bookmark PDF pages for future reference
- Word excel Go to the page number directly and see the page count and total pages
- Scroll PDF Documents page by page

Excel documents viewer, excel editor, excel reader:
- Word excel read & view excel editor, xls, txt, xlsx files of multiple formats
- Read all excel viewer
- Load excel documents
- Word office share excel reader & collaborate in the same document at the same time.
- Open excel reader, excel editor.
- Directly open for office excel reader for xls, txt, xlsx
- Word office search for .txt files and explore more Excel office
- Edit office documents like edit excel file, txt editor, XLS editor, XLSX editor
- Word excel viewer share your documents to save

Slide documents viewer, file .ppt editor, file .ppt reader :
- Word excel read & view file .ppt editor, PPSX PPTX files of multiple formats
- Read all file .ppt viewer
- Office document load file .ppt documents
- Share file .ppt reader & collaborate in the same document at the same time.
- Open file .ppt reader, file .ppt editor.
- Word office directly open for office file .ppt reader for PPT, PPS, PPSX PPTX or pdf files from file manager, email or web in this docx reader
- Search for PPT, PPTX, PPS, PPSX files and explore more excel office
- Word Slide viewer share your documents to save

This file viewer application is fully compatible with Word Office files, including Word, Excel, Docx, file .ppt and txt documents, PDF file.

■ Supported formats all document
• Word Document : DOC, DOCX, DOCS
• Excel Document : XLS, XLSX
• Slide Document : PPT, PPTX, PPS, PPSX
• Other Word Office reader and files: TXT, ODT, Zip\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4016395,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.officedocument.word.docx.document.viewer\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.officedocument.word.docx.document.viewer/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.officedocument.word.docx.document.viewer/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.officedocument.word.docx.document.viewer/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.officedocument.word.docx.document.viewer/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouVersion Bible App + Audio\",\n \"appId\": \"com.sirma.mobile.bible.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.sirma.mobile.bible.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/03u7ovx5WUvmOWJDIxlNYaQY60hgcNzyRKQ5Bugex_zl-UXrxxXY4ROHEm179xly9OFr\",\n \"developer\": {\n \"devId\": \"Life.Church\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Life.Church\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"On more than 400 million devices around the world, people are reading, listening to, watching, and sharing the Bible everyday using the YouVersion Bible App—completely free. 1,400+ Bible versions, 1,000+ languages. Listen to audio Bibles. Thousands of Reading Plans & Devotionals in 40+ languages. Download the Bible App.

Customize your Bible with Highlights, Bookmarks, and public/private Notes. Access everything online, or download select versions to read offline. Read, study, and share with friends. Enjoy honest conversations about faith in trusted community. Grow together every day with friends, sharing your discoveries. Create shareable Bible art: add Bible verses to your photos.

READ THE BIBLE DAILY
● Experience the Bible App in any of 40+ languages
● Switch between 1,400+ Bible versions, 1,000+ languages
● Popular versions: King James Version KJV, New International Version NIV, New Living Translation NLT, English Standard Version ESV, NASB, New Revised Standard Version NRSV
● Offline Bibles: Read offline even w/o network access (select versions)
● Audio Bibles: Audio for select versions (not available offline)
● Verse of the Day widget

BIBLE STUDY WITH FRIENDS
● Center your Christian friendships around holy Scripture in the Bible App
● Home Feed: See what your friends bookmark & highlight
● Comments: Connect with friends each day as you study Bible truths together, sharing ideas, asking questions

STUDY GOD'S WORD
● Reading Plans: Thousands of Devotionals, Bible Plans. Bible study topics or read portions of the Bible. Read the entire Bible (both One Year® Bible and Bible in One Year)
● Video: Watch clips from the JESUS film, Bible Project, Lumo Project, The Chosen, Spoken Gospel, Streetlights, & more.

CUSTOMIZE YOUR FREE BIBLE
● Verse Images: Create amazing bible verse images
● Highlights: Select custom colors
● Bookmarks: Memorize and finding your favorite Bible verses
● Share verses with friends: social media, email, or SMS/text
● Notes: Keep them private so only you can see them, or public to share with friends
● Cloud Sync: With a free YouVersion account, see your Notes, Highlights, Bookmarks and Reading Plans on any supported device
● Easy Reading: Adjust font, text size, and contrast for bright or low light

CONNECT WITH YOUVERSION
● Contact support from inside the Bible App
● Like us on Facebook
http://facebook.com/youversion
● Follow us on Twitter
http://twitter.com/youversion
● Keep current on our blog
http://blog.youversion.com
● YouVersion online
http://bible.com\",\n \"scoreText\": \"4.9\",\n \"score\": 4.8828354,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.sirma.mobile.bible.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.sirma.mobile.bible.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.sirma.mobile.bible.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.sirma.mobile.bible.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.sirma.mobile.bible.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Screen Mirroring - TV Miracast\",\n \"appId\": \"com.studiosoolter.screenmirroring.miracast.apps\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.studiosoolter.screenmirroring.miracast.apps\",\n \"icon\": \"https://play-lh.googleusercontent.com/RYKy9ugiVvBeIbiCsPOyTzQBwRnnFA4KxmwNw98wRmmDj3TXFw3jmz-zUsQxspw9fQ\",\n \"developer\": {\n \"devId\": \"Studiosoolter\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Studiosoolter\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Screen Mirroring - Miracast for TV allows you to mirror your smartphone on the TV screen in high quality. You will be able to play videos, music, photos, etc to your big TV screen.

Screen Mirroring app helps you cast phone and tablet to TV fast and stably.

This app will assist you to scan and mirror your android phone or tab's screen on smart TV and will get a great big screen phone experience by connecting your phone to a TV screen via This Cast To TV app and easily stream movies from phone to your big TV screen.

Cast to TV support most Smart TVs, DLNA Receivers and wireless adapters.

FEATURES:
* Cast to TV and enjoy the best experience of watching videos and movies.
* Simple & fast connection with just a click
* All media files supported, videos, photos, audios, PDFs, etc.
* Multiple Devices Supported
* Fast and easy to use
* Cast phone screen to big TV screen faster.
* Fast connection and easy to use
* play the mobile games to your TV screen.
* Cast Live video on browser.
* Speed screen share.

Cast to TV is the most powerful mirror technology for screen mirroring in real-time speed.


Stream your favorite movies
Screen Mirroring App can allows you to stream movies, videos, photos and apps on big TV screen.

Cast your best family moments
Screen mirroring app helps to open window in smart TV screen from your phone, Sharing your phone screen With the Television now is easier.

Stream to TV without limitation
You can search your favorite TV shows and series and easily stream them on your TV screen.


if you are searching for a free and stable screen mirroring for casting your screen into larger screen, this useful Screen Mirroring app can do the work to view your phone on your TV.

How To Use:

1. Your TV should support Wireless Display or any sort of Display Dongles.
2. The TV must be connected to WI-FI network same as your phone.
3. Search for your Device.
4. Select and pair the device.


Before you Start:

Before connecting the device, make sure VPN is turned off.
The TV must be connected to WI-FI network same as your phone.

If you face any problems with your device, feel free to contact us at contact@soolterstudio.com\",\n \"scoreText\": \"4.2\",\n \"score\": 4.171389,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.studiosoolter.screenmirroring.miracast.apps\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.studiosoolter.screenmirroring.miracast.apps/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.studiosoolter.screenmirroring.miracast.apps/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.studiosoolter.screenmirroring.miracast.apps/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.studiosoolter.screenmirroring.miracast.apps/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Eventbrite - Discover popular events & nearby fun\",\n \"appId\": \"com.eventbrite.attendee\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.eventbrite.attendee\",\n \"icon\": \"https://play-lh.googleusercontent.com/hfY-55MeAXJj6RQZzE9cLUNhQhdjm8Bt7gxJOYQtE718HjaFL9oFtEQg7RjBhyqByA-v\",\n \"developer\": {\n \"devId\": \"Eventbrite\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Eventbrite\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Discover upcoming events near you and get personalized recommendations. Stay up on the latest for popular events like concerts, festivals, yoga classes, holiday events on New Year’s Eve or Halloween and networking events. Find something fun to hit up by date, time and location. Buy tix and keep ‘em handy on your mobile device to make check-in nice and easy. Ready to explore?

With the Eventbrite app you can:

• Find what’s new and hot nearby at a wide variety of venues
• Stay in the know on what’s going on today, this week, this weekend, whenever
• Get personalized event recos for whatever you’re into
• Share events with your crew and vice versa
• Add upcoming events to your calendar
• Buy tickets and check out easily on your mobile phone
• Store your credit or debit cards for fast, secure checkout
• View event details so you can get there on time and own it
• Check-in with the app, ditch old school paper tix

What does Eventbrite do?

There’s an amazing, fun, interesting world of events going on anywhere at anytime, we help you discover the best.

You can find things to do based on what you’re into, where you want to go or when you want to go out.

We’ll also personalize recommendations based on where you’ve been and what you like.

Let’s get out there and explore.

This app is also available in German, Spanish, French, Italian, Dutch, Portuguese, and Swedish.

INFORMATION SHARING: When purchasing tickets or registering for an event, we provide the information entered to the event organizer so they can manage the event.       

Please review our Privacy Policy :

https://www.eventbrite.com/support/articles/en_US/Troubleshooting/eventbrite-privacy-policy?lg=en_US.  

and California Privacy Notice :

https://www.eventbrite.com/support/articles/en_US/Troubleshooting/supplemental-privacy-notice-for-california-residents?lg=en_US

 for more information on your choices around information sharing.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.613581,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.eventbrite.attendee\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.eventbrite.attendee/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.eventbrite.attendee/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.eventbrite.attendee/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.eventbrite.attendee/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"OnStar Guardian: Safety App\",\n \"appId\": \"com.onstar.guardian\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.onstar.guardian\",\n \"icon\": \"https://play-lh.googleusercontent.com/a2WpRJB_y6g33Ehdgcm2tbVa35yS8EkVNScSFbtN10N7E25LscHwkoOkIg-7j8ZPK88y\",\n \"developer\": {\n \"devId\": \"OnStar, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/OnStar%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"SAFETY SERVICES RIGHT ON YOUR PHONE

Get family safety services — Roadside Assistance, help in a crash, family locator and Emergency Services — with the OnStar Guardian® app. No matter where you are, we're with you and your family – in any vehicle, on your motorcycle, even through your home’s smart speaker. Eligible OnStar Members receive the OnStar Guardian app as part of their plan. If you don’t own a GM vehicle, you can try it for up to 3 months on us, and after that, it’s only $15 a month. Plus, you can share the app with up to 7 friends or family members at no additional cost.

FAMILY SAFETY THAT GOES WHERE YOU GO

Mobile Crash Response
•\\tCrash detection that can send for help automatically
•\\tSmartphone sensors can detect a car accident and alert an OnStar Advisor
•\\tHelp in a crash in any vehicle — or on your motorcycle

Roadside Assistance
•\\tDon't get stranded. Get help on the road, jump a dead battery, get assistance with a flat tire — you can even get fuel delivered
•\\tRoadside Assistance for any vehicle or motorcycle

Location Status
•\\tTogetherness when you're apart. The family locator that lets you share and save real-time locations, view a live map, even send departure and arrival notifications

Emergency Services
•\\tHelp when it's needed. The red Emergency button provides priority access to an OnStar Emergency Advisor 24/7
•\\tGet specially trained assistance with medical issues, severe weather and more — all while our Advisors send First Responders to your exact location

The OnStar Guardian skill for Amazon Alexa
•\\tGet Emergency Services from an OnStar Advisor — right in your home
•\\tAsk for help right from your compatible Amazon Alexa-enabled device
•\\tLink OnStar Guardian with your Amazon account to enable the skill

LIMITATIONS

See onstar.com/us/en/guardian-app/ for details and limitations.

U.S. and Canada only. Available on select Android devices. OnStar Guardian service plan, cell reception, GPS signal and device data connection
required. May not transmit all crash data. You may cancel at any time by calling 1.888.4ONSTAR (1.888.466.7827).

Eligible customers who associate an approved payment method with their account and authorize recurring payments for their service plan within 30 days of activating their 1-month OnStar Guardian trial will receive 2 additional months of that plan at no additional charge. At the end of your trial and the first 2 months of your plan, OnStar will automatically bill the payment method on file monthly at then-current standard monthly rates. Customers with a preexisting OnStar or Connected Services plan are excluded from this offer. Plans may be cancelled at any time by pushing the blue OnStar button or calling 1.888.466.7827. May not be combined with other offers or retroactively applied. One-time redemption of offer per service plan or vehicle, as applicable. Offer is subject to change.

Location Status services designed to locate compatible smartphones with Location Services permission enabled. Functionality varies by mobile device and plan. Data rates may apply. Terms and limitations apply.

Roadside assistance provided by Allstate Roadside Services for vehicles only. Limitations and restrictions apply. Towing services have additional fees.

Up to seven additional individuals can be added to the “My Family” section within the app.

Select service plan required. OnStar Guardian skill and associated OnStar services requires successful account linking with Amazon Alexa, completion of a safety profile including an accurate and up-to-date physical address of the Alexa- enabled device. Physical Address must be confirmed and updated in the OnStar Guardian app. Device data connection is required. OnStar links to emergency services. Amazon, Alexa and all related logos are trademarks of Amazon.com, Inc. or its affiliates. Terms apply.

Amazon, Alexa and all related logos are trademarks of Amazon.com, Inc. or its affiliates.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1946106,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.onstar.guardian\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.onstar.guardian/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.onstar.guardian/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.onstar.guardian/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.onstar.guardian/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Photos\",\n \"appId\": \"com.google.android.apps.photos\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photos\",\n \"icon\": \"https://play-lh.googleusercontent.com/ZyWNGIfzUyoajtFcD7NhMksHEZh37f-MkHVGr5Yfefa-IX7yj9SMfI82Z7a2wpdKCA\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Google Photos is the home for all your photos and videos, automatically organized and easy to share.

- “The best photo product on Earth” – The Verge

- “Google Photos is your new essential picture app” – Wired



The official Google Photos app is made for the way you take photos today and includes essential features like shared albums, automatic creations and an advanced editing suite. Additionally every Google Account comes with 15 GB of storage and you can choose to automatically back up all your photos and videos in High quality or Original quality. You can then access them from any connected device and on photos.google.com.



With the official app, you get:



15 GB OF STORAGE: Back up 15 GB of photos and videos and access them from any device and photos.google.com—your photos are safe, secure, and private to you. All photos and videos you back up in High quality before June 1, 2021 will not count toward your Google Account storage.



FREE UP SPACE: Never worry about running out of space on your phone again. Photos that are safely backed up can be removed from your device's storage in just a tap.



AUTOMATIC CREATIONS: Bring photos to life with automatically created movies, collages, animations, panoramas, and more from your photos. Or easily create them yourself.



ADVANCED EDITING SUITE: Transform photos with a tap. Use intuitive and powerful photo editing tools to apply content-aware filters, adjust lighting, and more.



SHARING SUGGESTIONS: With smart sharing suggestions, giving your friends the photos you took of them is painless. And they can add their photos, too, so you’ll finally get the photos you’re actually in.



FAST AND POWERFUL SEARCH: Your photos are now searchable by the people, places and things in them — no tagging required.



LIVE ALBUMS: Select the people and pets you want to see and Google Photos will automatically add photos of them as you take them, no manual updates needed.*



PHOTO BOOKS: Create a photo book in just minutes from your phone or computer. You can also see suggested photo books based on your best shots from a trip or period of time.*



GOOGLE LENS: Search the hard-to-describe and get stuff done, right from a photo. Copy and translate text, identify plants and animals, add events to your calendar, find products online, and more.



SEND PHOTOS IN SECONDS: Instantly share photos with any contact, email, or phone number.



SHARED LIBRARIES: Grant a trusted person access to all of your photos.



You can also upgrade storage for your Google Account, used for Original Quality photos and videos by subscribing to Google One. Subscriptions start at $1.99/month for 100 GB in the US. Pricing and availability can vary by region.

- Google One Terms of Service: https://one.google.com/terms-of-service

- One Google Pricing: https://one.google.com/about



For additional help visit https://support.google.com/photos



*Face grouping, live albums and photo books are not available in all countries.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5342793,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.photos\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photos/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photos/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photos/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photos/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Amazon Kindle\",\n \"appId\": \"com.amazon.kindle\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.amazon.kindle\",\n \"icon\": \"https://play-lh.googleusercontent.com/48wwD4kfFSStoxwuwCIu6RdM2IeZmZKfb1ZeQkga0qEf1JKsiD-hK3Qf8qvxHL09lQ\",\n \"developer\": {\n \"devId\": \"Amazon Mobile LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Amazon%20Mobile%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"READ ANYTIME, ANYWHERE
On the bus, on your break, in your bed—never be without something to read. The Kindle app puts millions of books, magazines, newspapers, comics, and manga at your fingertips.

FIND YOUR NEXT GREAT READ
- Find your next great read with Kindle. Choose from millions of Kindle books (including books with Audible narration), magazines, audiobooks, and comics. Explore new releases, Amazon Charts best sellers, and titles across genres like romance, science fiction, children’s books, self-help, religion, nonfiction, and more—and try any book with a sample in the app before you buy on Amazon.com

- Kindle Unlimited members can enjoy unlimited reading and listening, with the freedom to explore over 1 million titles, thousands of audiobooks, and current magazines.

- Thousands of books, magazines, comics, and more included with Amazon Prime.

GO BEYOND PAPER
Turn your phone or tablet into a book with the Kindle app—so you can read anytime, anywhere. Explore these reading features in the Kindle app:

- Read your way. Customize your text size, font type, margins, text alignment, and orientation (portrait or landscape)—and choose whether to turn pages from left to right or continuously scroll. Read comfortably day and night with adjustable brightness and background colors. Go to the Aa menu in your book to get started.

- Look up words, people, and places while you read. Breeze through words you don’t know and characters you can’t remember with the built-in dictionary, X-Ray, Wikipedia lookup, instant translations, and search within your book. Simply tap and hold a word to view its definition, or follow links to Google and Wikipedia to get more information.

- Track your reading progress. See what percent of the book you’ve read, real page numbers (for most top titles), and how much time you have left in the chapter or book based on your actual reading speed.

- Bookmark places you want to revisit, and make highlights and take notes throughout your book. Open My Notebook to see all your notes in the same place.

- Hop, skim, and jump with Page Flip. Flip between pages or get a bird’s-eye view of your book with Page Flip—don’t worry, we’ll save your place.

- Zoom in on high-definition color images in Kindle books, magazines, comics, and manga.

- Sync your books across devices. When you’re reading a book, the Kindle app will automatically sync where you left off—along with any bookmarks, highlights, or notes—so you can start reading on one device and pick up where you left off on another.

- When you can’t read, listen. Switch seamlessly from reading your Kindle book to listening to the Audible book, all within the Kindle app.

- Get notified when authors you love have new releases.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.59994,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.amazon.kindle\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.amazon.kindle/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.amazon.kindle/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.amazon.kindle/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.amazon.kindle/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ABCmouse.com\",\n \"appId\": \"mobi.abcmouse.academy_goo\",\n \"url\": \"http://gplayapi.srik.me/api/apps/mobi.abcmouse.academy_goo\",\n \"icon\": \"https://play-lh.googleusercontent.com/O4XbcESYczPA2zYZ_SpI5nD68IZcPx3dz0fNQO-N1WKLpPq9lQit-AGW4d3V7oDZAhEP\",\n \"developer\": {\n \"devId\": \"Age of Learning, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Age%20of%20Learning%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Math and Reading for Kids 2–8

ABCmouse is the award-winning learning program that covers reading, math, art, music, and more for kids ages 2 to 8. Created by teachers and education experts, it has 10,000+ exciting Learning Activities for children at all academic levels.

Key Features

The ABCmouse Early Learning Academy is the research-validated program that kids 2–8 love to play with as they learn:

• Full standards-based curriculum for learning on mobile devices
• Trusted by teachers and designed by early learning education experts
• Used in more than 70,000 classrooms and in nearly half of all U.S. public libraries
• 10 levels, over 850 lessons, and 10,000+ individual Learning Activities
• All academic subjects for toddlers, preschool, kindergarten, 1st grade, and 2nd grade
• Accelerates children’s development of early literacy and math skills
• Helps ensure kindergarten readiness and 3rd grade readiness
• Covers math, reading, science, social studies, art, and music across all levels
• Thousands of books, videos, puzzles, printable activities, songs, games, and animations
• 900+ books and activities in Spanish
• Customizable Avatar, My Room, My Hamster, and Pet Park features
• Step-by-Step Learning Path and independent learning
• Great for homeschoolers and learning on the go
• Easy to track and monitor progress
• Winner of prestigious Mom’s Choice GOLD, Teachers’ Choice, and Parents’ Choice GOLD Awards
• 100% safe and kid-friendly environment!

Subscription Options

• Subscription automatically renews unless auto-renew is turned off at least 24-hours before the end of the current period
• Account will be charged for renewal within 24-hours prior to the end of the current period, and identify the cost of the renewal
• Subscriptions may be managed by the user and auto-renewal may be turned off by going to the user's Account Settings after purchase

See our full Terms and Conditions at:
http://www.abcmouse.com/tandc

View our Privacy Policy at:
http://www.abcmouse.com/privacy\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9582784,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=mobi.abcmouse.academy_goo\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/mobi.abcmouse.academy_goo/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/mobi.abcmouse.academy_goo/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/mobi.abcmouse.academy_goo/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/mobi.abcmouse.academy_goo/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Mobile Antivirus: Norton 360\",\n \"appId\": \"com.symantec.mobilesecurity\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.symantec.mobilesecurity\",\n \"icon\": \"https://play-lh.googleusercontent.com/HRAjnFA_bx0vveMVRTW307l69H-O1COTdcdVyRbgQ5LP1qGGIYbHeb23TGxkIJ4agb8y\",\n \"developer\": {\n \"devId\": \"NortonMobile\",\n \"url\": \"http://gplayapi.srik.me/api/developers/NortonMobile\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"🛡
Norton 360 for mobile provides powerful layers of phone protection and top-level security for your device. It uses antivirus features, like Wifi Analyzer and Ad Blocker, to protect against ransomware, malware, spyware, and other online privacy threats. Encrypt your internet traffic on the go, so you can bank, browse, and shop online with full privacy and peace of mind.

🔐
Protection at home and on the go with bank-grade encryption from our Secure Norton VPN.

👮🏻\\u200d♂️✋
Put a stop to unwanted ads with Ad Blocker, while Wifi Analyzer scans networks for potential threats.

Your partner against cyber threats

✔ Mobile Security: Get real-time antivirus phone protection against ransomware, spyware, malware, and other online threats. 📱⚡️

✔ Norton Secure VPN: access your favourite apps and websites with the reassurance of bank-grade encryption. 🌏 🛰

✔ Split Tunneling: Route some of your device traffic through the encrypted VPN tunnel while allowing other apps or services to access the internet directly. 🌐

✔ Kill Switch: If the VPN connection drops, you’ll be disconnected from the Internet to help maintain your privacy. 🔌

✔ Wi-Fi Security Alerts: Get notified about Wi-Fi networks under attack and protect your online privacy. Avoid cybercriminals who try to eavesdrop on your Wi-Fi connection to steal personal information or infect your device with malware. 🚨👮\\u200d♀️

✔ Internet Security: Helps detect and safeguard you from navigating to fraudulent (phishing) and malicious websites when using your browser. 🔐

✔ Ad Blocker: Stops ads from ruining your browsing experience. Ad Blocker helps mobile to block ads on different platforms. ⛔🙅

✔ App Advisor: Antivirus phone protection scans new and existing apps to help prevent mobile threats like malware, spyware, ransomware, and privacy leaks. 🕵️\\u200d♂️🔍

✔ Dark Web Monitoring: We monitor the dark web and notify you if we find your
personal information.[2] 🐾🔦

✔ SMS Security: filters spam SMS text messages that may contain phishing attacks. 🚫🐟

Suspicious Network Detection: See potentially unsafe Wi-Fi networks in your area with Wifi Analyzer as part of Internet Security and get notified when a network you’re using is compromised 🚨📡

Device Report Card: See a 30-day analysis of previously scanned Wi-Fi networks made by the Wifi Analyzer feature, websites, device vulnerabilities, and risky apps. 📉📈

Subscription details 📃

✔ An annual subscription is required to activate the 14-day trial (see in-app product pricing).

✔ Cancel the subscription from your Google Play account before the end of the trial to avoid payment.

✔ After the 14-day trial, your subscription will start and automatically renew annually unless cancelled.

✔ You can manage your subscriptions and adjust automatic renewal in your Google Play settings after purchase.

✔ The 14-day trial is valid for one subscription only.

Awards🥇

AV-TEST, “Best Android Security 2019 Award”:
https://www.av-test.org/en/news/av-test-award-2020-for-nortonlifelock/

Privacy Statement 📃

NortonLifeLock respects your online privacy and is dedicated to safeguarding your personal data. See http://www.nortonlifelock.com/privacy for more information.

No one can prevent all cybercrime or identity theft.

[1] Secure Norton VPN is not available in all countries. This feature is no longer available for use within India as a result of governmental regulations requiring the logging and saving of user data, but you can still use your subscription when traveling outside of India.

[2] Dark Web Monitoring is not available in all countries. Monitored information varies based on country of residence or choice of plan. It defaults to monitor your email address and begins immediately. Sign in to your account to enter more information for monitoring.

This app uses the Device Administrator permission.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6954803,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.symantec.mobilesecurity\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.symantec.mobilesecurity/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.symantec.mobilesecurity/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.symantec.mobilesecurity/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.symantec.mobilesecurity/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Paired: Couples & Relationship\",\n \"appId\": \"com.getpaired.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.getpaired.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/NoWizDvW4ALw6VDfZmdr5WBFC-f-Gp6znbfT7mr1Pj0THMMTijBbdWrlm6Vp73jmdfk\",\n \"developer\": {\n \"devId\": \"Paired - Relationship Advice & Quiz for Couples\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Paired%20-%20Relationship%20Advice%20%26%20Quiz%20for%20Couples\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Love more. Stress less. Paired is the #1 couples app to improve communication, stay connected, and help you build a happy couple relationship.

🏆 Google Play Awards, 2020 Winner in Personal Growth
🌟 Apple App of the Day, December 2020
🗞️ Featured in BBC News, The Times, Bustle, and more

=====================

With our daily questions feature you get a fun question to answer every day between you and your partner. Each question comes with a research-based fact of why answering it will help your relationship, and only by answering the question yourself can you unlock your partner’s answer! Questions are grouped into card decks so you can pick the topics most relevant for you.

If you’re looking to identify your relationship strength and growth areas, then our couples quizzes are here to help. Each week the quiz is on a different aspect of your relationship, and when your partner answers the quiz you’ll be able to compare answers.

Think you know your partner well? Put your knowledge to the test with our couple games! Guess your partner's answers to funny, thoughtful, and downright silly questions and see how many guesses you get right. The partner with the highest score wins the game!

Lastly, our relationship tips are written by the world’s top couple therapists and academics and draw on the ideas of leading figures like John Gottman and Sue Johnson. They combine relationship advice and learnings from marriage counselling with real-life case studies of couples. Like a tip? Suggest it to your partner to read and relish the discussion that follows.

=====================

Download Paired for a FREE 7 day trial and get access to all of our amazing features:

✅ Answer fun, research-based daily questions with your partner to bring you closer together
✅ New questions are available each day, and by answering today’s question you’ll unlock your partner’s answer
✅ Play couple games to test your knowledge of your partner
✅ Guess their answers to Mr and Mrs style questions, and see who knows who best!
✅ Read relationship tips on different topics, from managing conflict to developing sexual intimacy
✅ Tips are written by the world’s top relationship academics and therapists
✅ Pair with your partner’s app by sharing your unique codes with each other
✅ Identify your relationship strength and growth areas by completing a new couples quiz each week
✅ Compare and discuss your quiz answers between you with the help of expert relationship tips and conversation starters
✅ See your progress over time with a relationship tracker
✅ Learn about agape, eros and other forms of love and discover your love languages
✅ Give your love partner a nudge by recommending tips for them to read

Join the community of people around the world building lasting love with the #1 couples app today. Our app is suitable for everyone, whether you are in a long distance relationship, married, or dating, as well as straight and gay relationships. Before you visit marriage counselling or couples therapy, why not give Paired a try and see how it has tuned the relationships of happy couples and allowed them to regain the love in their relationship.

Please note that Paired and the materials and information contained herein are not intended to, and do not constitute, medical, psychological, or mental health advice, or diagnosis, and may not be used for such purposes. You should always consult with a qualified physician or mental health professional about your specific circumstances.

Our Privacy Policy: https://www.paired.com/privacy_policy.html
Our Terms and Conditions: https://www.paired.com/terms_and_conditions.html

Questions? Suggestions? Let us know at support@paired.com!\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.getpaired.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.getpaired.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.getpaired.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.getpaired.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.getpaired.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Smule: Karaoke Songs & Videos\",\n \"appId\": \"com.smule.singandroid\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.smule.singandroid\",\n \"icon\": \"https://play-lh.googleusercontent.com/OfoqvtjnJN1BMezCZHJVVedsHrosIH_YoCUj28Sdhl3ch9tVFFGQgwnXByOR8t_6V58\",\n \"developer\": {\n \"devId\": \"Smule\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Smule\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Sing over 10 million of your favorite songs with music & scrolling lyrics! Have fun recording with your camera on or off, and add professional audio effects to sound amazing! Sing your favorite songs solo, have fun creating a duet or group performance with friends, collaborate with other singers from around the world, or sing alongside recordings of today’s popular music artists! With millions of songs to choose from, you’re sure to find all the music you love. Smule is fun for everyone who likes to sing - all skill levels are welcome!

Record songs and make music any way you like! Practice & record your singing in private, share music and collaborate with other singers!. Learn how to sing and improve your voice with an on-screen pitch guide and original tutorials! Smule’s supportive global community is the perfect place to create music and share your love of singing with music lovers like you. Give live audio-only performances 24/7 with friends & singers from around the globe with Smule LIVE.

FEATURES

• Sing over 10+ million of your favorite karaoke songs w/ scrolling lyrics! Karaoke anytime, anywhere.
• Record songs solo, in a duet or group, acapella, or enjoy other singers’ performances!
• Createstudio-quality audio & add vocal FX that make you sound amazing!
• Record songs with your camera off for audio-only performances, or turn it on & get creative with fun video effects & filters!
• Host or join a live karaoke party! Use Our Sing LIVE feature to give live, audio-only performances 24/7 with friends & music lovers from around the world!
• Sing side-by-side in recorded duets with top music artists like Dua Lipa, Olivia Rodrigo, Charlie Puth, Ed Sheeran, classic Disney characters, & more!
• Save your recordings privately as you practice & learn how to sing, or share your performances with the Smule community!
• Record and share your performances on TikTok, Instagram, Facebook, Snapchat, Twitter, WhatsApp, & more!
• Create your own music videos! Use Smule as a music video editor and record audio & vocals,& then add your own video FX!
• Freestyle Mode: use our app as a song maker to record original songs & invite others to join you!
• Join in new Smule challenges & contests monthly to win prizes & get noticed!
• Record personalized voice messages for family & friends!
• Practice with an on-screen pitch guide & original tutorials!
• Search trending hits & join a duet! Sing just your favorite part of the song– like the chorus or verse– with our ‘Moments feature!
• More than music recording–Record yourself doing voice acting from movie scenes, musicals & more!

LET'S MUSIC TOGETHER™

Choose from Pop, a cappella, R&B, rock, rap, hip-hop, country, K-Pop, & more! With new songs added daily, you’ll find all your favorite songs & karaoke hits here.

Is your song missing? Upload songs & trending hits to the songbook:
https://www.smule.com/support/upload#songbook


CONNECTING THE WORLD THROUGH MUSIC™

We believe music is about more than just listening—it's about creating, sharing, discovering, participating, & connecting. As the original social network, it has the power to break down barriers & bring people together. Join our global community & sing songs that express who you are!

Get discovered & grow your fanbase! Create & record your own dance moves while you sing. Connect on Facebook to make music with friends or share your singing journey on all your favorite social media platforms!


FIND YOUR VOICE

All singers can sound great on Smule. Add quality vocal effects & video filters to make your performances pop!

If you love karaoke, like to sing along to songs, dream of dueting with a pop star, or simply love music, then try Smule for free now!


FOLLOW US & keep up with new major artists & featured singers on Smule!

http://www.smule.com
http://www.facebook.com/smule
http://www.youtube.com/smule
http://www.twitter.com/smule
http://www.tiktok.com/@smule
Have questions? http://www.smule.com/support/sing#android\",\n \"scoreText\": \"3.8\",\n \"score\": 3.8424163,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.smule.singandroid\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.smule.singandroid/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.smule.singandroid/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.smule.singandroid/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.smule.singandroid/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Paramount+ | Peak Streaming\",\n \"appId\": \"com.cbs.ott\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.cbs.ott\",\n \"icon\": \"https://play-lh.googleusercontent.com/rdzfnSN_CJ0930nHwaZbD8my6X_s8xAFORVg6gvdUTiNz5qgYqObKEVIT8mOzapaUB4T\",\n \"developer\": {\n \"devId\": \"CBS Interactive, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/CBS%20Interactive%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to A Mountain of Entertainment. Stream tens of thousands of full episodes—including favorites from CBS, Nickelodeon, Nick Jr., Comedy Central, BET, MTV and Smithsonian Channel—plus exclusive shows, brand-new originals, and live sporting events like UEFA Champions League and the NFL on CBS, when you subscribe to Paramount+.

• Watch full episodes on demand from hit series like Survivor, NCIS, SpongeBob SquarePants, Ink Master and more! (Plus, it’s all ad-free with the Premium plan.*)

• Obsess over originals. Watch subscriber-only originals such as Halo, Star Trek: Picard, 1883, iCarly, SEAL Team, and The Good Fight.

• Make every night a movie night with blockbuster hits and fan-favorite films from Paramount Pictures, MGM and more.

• Access 24/7 live streams with around-the-clock news coverage on CBS News, scores + highlights on CBS Sports HQ and entertainment news on ET Live, plus 20 live channels of curated favorites.

• Create up to 6 individual profiles for each member of your household. Have kids? Use our Kids Mode profile feature.
Watch live sports like NFL on CBS & UEFA Champions League.

• Save your faves with our watchlist feature, My List.

• Stream your local, live CBS station (Premium plan only).

• Catch the best in live events including NCAA March Madness, The Masters Tournament, The GRAMMYs and more (Premium plan only).

• Download and watch offline* (Premium plan only).

• Stream even MORE originals, movies & sports when you get the Paramount+ with SHOWTIME bundle.

Try Paramount+ FREE now. After your trial, it’s only $4.99/month or $49.99/year for the Essential plan, or $9.99/month or $99.99/year for the ad-free Premium plan.*

Download the app now to get started.

*Live TV includes commercials and select shows have promotional interruptions. Downloaded content is accessible for earlier of 30 days from date of download or 48 hours from start of playback. Content availability subject to change. Please note use of the Paramount+ app is limited to United States. Paramount+ promotional offers for new subscribers only. Live TV subject to availability. Prices shown are in U.S. dollars. Other restrictions apply.

Your subscription will automatically renew after any applicable promotional period and your Google Play account will be charged the subscription price on a recurring basis until you cancel. You can cancel your subscription at any time through your Google Play account settings. If you cancel your subscription, the cancellation will go into effect at the end of your current subscription period, as applicable. You will have continued access to the Paramount+ Service for the remainder of your paid subscription period.

Please note: This app features Nielsen’s proprietary measurement software which will allow you to contribute to market research, like Nielsen’s TV Ratings. Please visit http://www.nielsen.com/digitalprivacy for more information.

Paramount+ Subscription Terms:
www.pplus.legal/subscription

ViacomCBS Privacy Policy:
https://www.viacomcbsprivacy.com/policy

Cookie Policy:
https://www.viacomcbsprivacy.com/cookies

Do Not Sell My Personal Information:
https://www.viacomcbsprivacy.com/donotsell\",\n \"scoreText\": \"1.2\",\n \"score\": 1.21,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cbs.ott\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.cbs.ott/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.cbs.ott/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.cbs.ott/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.cbs.ott/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"FitGift: more health more earn\",\n \"appId\": \"com.fitness.step.water.reminder.money.sweat\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.fitness.step.water.reminder.money.sweat\",\n \"icon\": \"https://play-lh.googleusercontent.com/z85KNo3deakKoYhFZZxxiqU10GNf-fdNhdLwu3IuSUUYD91j0sacPPYGXyh4kN-LRNM\",\n \"developer\": {\n \"devId\": \"Play&Fun\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Play%26Fun\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"FitGift is a funny health management app!The healthier you are, the more you earn!

😍😍😍😍😍😍
No Need for Intense, Uncomfortable Exercise!
All you need to do is walk daily and drink water regularly to get fit!
A good body is built up through small healthy habits. Believe in yourself and you can do it!

🏆🏆🏆🏆🏆🏆
A Rich Record of Healthy Behaviour

🏃🏃🏃Step Tracking🏃🏃🏃
Track your daily steps, calories burned and weight loss progress. FitGift uses a built-in sensor to count your steps. There is no GPS tracking, so it consumes little battery power.

💦💦💦Drinking Water Tracking.💦💦💦
Combined with your body data, FitGift will help you determine how much water your body needs each day. Each time you drink, you can switch cups and adjust the amount of water you drink.

🏆🏆🏆🏆🏆🏆
Professional Charts
The report charts are the most innovative ever and they are specifically designed for mobile devices to help you track your health data.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2939296,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.fitness.step.water.reminder.money.sweat\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.fitness.step.water.reminder.money.sweat/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.fitness.step.water.reminder.money.sweat/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.fitness.step.water.reminder.money.sweat/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.fitness.step.water.reminder.money.sweat/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Adobe Express: Graphic Design\",\n \"appId\": \"com.adobe.spark.post\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.adobe.spark.post\",\n \"icon\": \"https://play-lh.googleusercontent.com/KdxzSEeV4fdFRjlU5Vy-6B2GOOiUVlXRVOK976tdCw8RD9p3AIEFAleO_lV_DRzlBg\",\n \"developer\": {\n \"devId\": \"Adobe\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Adobe\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Adobe Express enables you to quickly and easily create standout social graphics, flyers, logos, and more on mobile and web. No design skills needed and it’s FREE to get started.

Feel like you have a designer in your corner as you select or upload your own images, try different layouts, add text to photos, and apply effects and filters.

Find just the right professionally designed template for:
• Stories, social posts, and ads for Instagram, Facebook, Snapchat, Twitter, and Pinterest
• Logos
• Posters and flyers
• Banners
• Photo collages
• Invitations
• Business graphics
• Presentations

Access tons of royalty-free Adobe Stock photo collection, Adobe Fonts, icons, backgrounds, and more.

Achieve high quality results in just a few taps with easy-to-use guided tools.
• Quickly remove background
• Resize with just a tap and share directly to any social platform
• Convert to GIF
• Animate video posts and share to social stories
• Get the Photoshop-quality look you want with thousands of effects, filters, textures, and overlays
• Apply text effects
• Apply your brand to your design with one tap

Sync your content across Adobe Express (Creative Cloud Express) mobile and web and share directly to social media platforms or save to your device.

GET THE FULL EXPERIENCE - 14-DAY FREE TRIAL

Your Adobe Express membership unlocks all templates, access to the entire royalty-free Adobe Stock photo collection*, effects, and fonts plus premium features like Apply Brand, Customize Cutout, and Resize. Your paid membership includes the premium versions of the following applications:

• Adobe Express on web and mobile
• Adobe Premiere Rush on mobile and desktop
• Adobe Photoshop Express on mobile

*The Adobe Stock photo collection does not include Premium or editorial content. Limited Adobe Stock functionality available in web page and video features within the desktop app.

GOT QUESTIONS?
• Instagram/Facebook: @AdobeExpress
• Twitter: @AdobeExpress
• Adobe Support https://helpx.adobe.com/support/express.html

Submit feature requests here: creativecloudexpress.uservoice.com

Optional In App purchase
Payments will be charged to your Google Play account. Subscriptions automatically renew unless auto-renew is turned off at least 24 hours before the end of the current period. Manage auto-renew in your Google Play account settings any time after purchase. Any unused portion of a free trial period, if offered, will be forfeited when the user purchases a subscription to Adobe Express, where applicable.

Terms and conditions
Your use of this Adobe application is governed by the Adobe General Terms of Use (www.adobe.com/go/terms), and Adobe Privacy Policy (www.adobe.com/go/privacy_policy) and any successor versions thereto.

All trademarks are the property of their respective owners.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.598595,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.adobe.spark.post\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.adobe.spark.post/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.adobe.spark.post/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.adobe.spark.post/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.adobe.spark.post/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Files by Google\",\n \"appId\": \"com.google.android.apps.nbu.files\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.files\",\n \"icon\": \"https://play-lh.googleusercontent.com/1nfAdJs2Ep2q1skM7QwJ1uHooWSbpFkbIBHhAX6EmdzEKmtk42713TiTU28mWlkcFKPA\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Files by Google is a file management app that helps you:
Free up space with cleaning recommendations
🔍 Find files faster with search and simple browsing
↔️ Share files offline with others, fast and without data
☁️ Back up files to the cloud to save you space on device

FREE UP MORE SPACE
In just a few taps, you can free up space more quickly and easily than ever: Delete old photos and memes from chat apps, remove duplicate files, erase unused apps, clear your cache and more.

CHECK YOUR STORAGE
Use Files to see how much free space is left on your phone and SD card. Easily transfer files to an SD card to free up your phone’s storage, right from the app. Or use the integrated file cleaner to get more space on the phone.

BE IN CONTROL
You will always know what you’re deleting, we don’t hide behind complicated terms and phrases. Select only what you want to remove and keep the rest. It’s your photos, your videos, your files so you are in charge.

BOOST PHONE PERFORMANCE
Use Files to keep enough of memory, so that your phone keeps on running smooth. Regularly, you get a prompt to remove junk or temporary files which helps you get more storage immediately.

SMART RECOMMENDATIONS
Get helpful suggestions of files to erase before you run out of space. The recommendation from Files app get smarter the more you use it.

FIND FILES FASTER
Save time looking for photos, videos, and documents on your phone. Files uses filters rather than folders so your stuff is organized more intuitively. Files by Google is the file manager and storage browser that helps you find what you’re looking for fast.

EASILY MANAGE FILES
Search for your files or simply navigate to them through categories and filters. View, delete, move, rename or share any files. Sort them by file size to understand what’s taking space. Browse all the GIFs your have. Find and share that video you downloaded last week. All of this with few taps.

SHARE FILES OFFLINE
Share your pictures, videos, documents, or apps with others nearby who also have the app. With fast speed up to 480 Mbps, it’s fast, and it works without the internet, so it doesn’t cost mobile data. Just pair up your phone with anyone nearby who has Files app.

ENCRYPTED FILE SHARING
Files’s offline file sharing is secured with WPA2 encryption, providing a more secure file transfer. Files app uses Bluetooth to set up encrypted and direct fast wifi connection, so that you can transfer app APK or large files in seconds, send videos or pictures to your friends. Safe and secure.

BACKUP FILES TO THE CLOUD
If you want to keep a file forever, select it from the Files menu and back it up to Google Drive or any other cloud storage app. Save them forever without taking space in your phone.

BACKUP FILES TO THE SD CARD
If you run out of storage on your phone, simply transfer large files or videos to your SD card if you have one. With a few clicks, you can clean up your phone and fully use the SD card. That leaves your internal storage free and your phone faster.

EFFICIENT, EFFECTIVE STORAGE MANAGEMENT
Files app takes less than 10MB of storage on your phone. And there’s no malware or bloatware to affect your phone’s performance.

THREE-IN-ONE TOOL APP
While taking very little storage on your device, Files does three things in one:
1) Free up space - Clean junk files and cache, boost your mobile phone or tablet as you clean up the phone memory and optimize your smartphone performance.
2) Find files fast - Browse your storage and find everything fast without being expert in file management.
3) Share files - Send pictures, share videos, transfer large files or app apks. All of this with super fast speed with rate up to 480 Mbps over an encrypted direct wifi network.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6297307,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.nbu.files\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.files/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.files/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.files/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.files/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Dropbox: Secure Cloud Storage\",\n \"appId\": \"com.dropbox.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.dropbox.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/b1-MIBjlMD9kvl0Okeglm9BL9ejRpOXMio303W0tiLb8Ul5WuVzBDoDKgGRcALOsCdw\",\n \"developer\": {\n \"devId\": \"Dropbox, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Dropbox%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With Dropbox Cloud Drive, upload & transfer photos, documents, and files to the cloud. Backup and sync photos, docs, and other files to the cloud storage drive and access them from any device, anywhere. With advanced sharing, easily share photos & documents to send anywhere with Dropbox’s cloud & photo drive.

Features:
• Automatically upload photos and pictures from your camera roll to cloud photo storage for easy photo sharing ready to send anywhere.
• Access any file in your account—even offline—and preview over 175 different file types with no special software required.
• Easily send large files by sharing a link with anyone, even if they don’t have a Dropbox account.
• Photo transfer app: easily save photos to the cloud or transfer photos from your cloud storage app.
• Scan documents, receipts, IDs, photos, and more using your mobile device and transform them into high-quality PDFs, so you can view and send them anywhere.
• Sync folders on your PC or Mac to Dropbox with computer backup, and recover older versions or restore deleted files with version history and file recovery.

Cloud storage & drive photo storage gives you extra space to backup, upload, share, and scan & we transfer photos or files to the cloud for you! An easy backup and data vault with safe access to your private or shared files. Today you can easily manage and share family albums, video albums, and more.

Sign up now for your free Dropbox Plus trial. Get 2 TB (2,000 GB) of storage space!

New features on the Plus plan:
Dropbox Passwords: store and sync passwords across all your devices
Dropbox Vault: secure your most sensitive documents and photos
Dropbox Rewind: roll back any file, folder, or your entire account, for up to 30 days

Upgrade to Dropbox Professional- get 3 TB (3,000GB) of storage space! You can store all of your photos and files with space to spare. You and your clients can comment on files without leaving Dropbox. Protect your work with a watermark, add shared link controls or rewind your account for up to 180 days.

Before completing payment, you’ll see the plan price. This amount will be charged to your Google Play account and will vary by plan and country. Dropbox subscriptions purchased in-app renew monthly or yearly, depending on your plan. To avoid auto-renewal, turn it off at least 24 hours before your subscription renews. You can turn off auto-renewal anytime from your Google Play account settings.

Dropbox is a secure cloud & drive solution leader trusted by Fortune 500 companies for their most sensitive data. Over 14 million paid users choose Dropbox because they know they can count on a company that’s also dedicated to their security and privacy—no matter what they do or where they are. Let Dropbox be your all-in-one file storage, file organizer, file transfer, and file sharing solution for all your devices.

Dropbox is not affiliated with Google, Amazon, Apple, Samsung, iCloud or Microsoft OneDrive.


We’d love to hear from you! Join the Dropbox community: https://www.dropboxforum.com
Terms of Service: https://www.dropbox.com/terms
Privacy Policy: https://www.dropbox.com/privacy\",\n \"scoreText\": \"4.3\",\n \"score\": 4.30138,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dropbox.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.dropbox.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.dropbox.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.dropbox.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.dropbox.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Adobe Scan: PDF Scanner, OCR\",\n \"appId\": \"com.adobe.scan.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.adobe.scan.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/W8hcwa6JamuHhxDaPeyFx1_kIqBOYPMGrL4KH-YMMaGMt1UheJ1W3_OWAykE98_fxX1U\",\n \"developer\": {\n \"devId\": \"Adobe\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Adobe\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Adobe Scan scanner app turns your device into a powerful portable scanner that recognizes text automatically (OCR) and allows you to save to multiple files formats including PDF and JPEG.

The most intelligent scanner app. Scan anything — receipts, notes, documents, photos, business cards, whiteboards — with text you can reuse from each PDF and photo scan.

HOW IT WORKS
• With the Adobe Scan scanner app, you can make anything scannable.
• Use the PDF scanner to quickly create a photo scan or PDF scan.
• Scan any document and convert to PDF.

CAPTURE
• Scan anything with precision with this mobile PDF scanner.
• Advanced image technology automatically detects borders, sharpens scanned content, and recognizes text (OCR).

ENHANCE
• Touch up scans or photos from your camera roll.
• Whether it’s a PDF or photo scan, you can preview, reorder, crop, rotate, and adjust color.

CLEANUP UP YOUR SCANS
• Remove and edit imperfections, erase stains, marks, creases, even handwriting.

REUSE
• Turn your photo scan into a high-quality Adobe PDF that unlocks text through automated text recognition (OCR).
• Reuse text from each PDF scan thanks to OCR.

SCAN ANYTHING, ANYWHERE, ANYTIME
• Capture forms, receipts, notes, and business cards with this mobile PDF scanner.
• The Adobe Scan scanner app even lets you scan multi-page documents and save with a single tap.

RECYCLE CONTENT
• The Adobe Scan PDF scanner makes any content scannable and reusable.
• Free, built-in optical character recognition (OCR) lets you reuse scanned text and content by creating a high-quality PDF can work with in the free Adobe Acrobat Reader app.
• You can even turn Adobe Scan into a tax receipt scanner to highlight expenses with ease.

QUICKLY FIND DOCUMENTS IN PHOTO LIBRARY
• This powerful scanner app automatically finds documents and receipts in your photos and turns them into PDF scans, so you don't have to.
• Automatic OCR turns text into content you can edit, resize, and reuse in other documents.

SAVE BUSINESS CARDS TO CONTACTS
• Scan a business card and Adobe Scan turns into a fast business card scanner and reader.
• Contact information will be automatically extracted so you can quickly add to your device contacts — no typing needed.

GET MORE DONE ON THE GO
• Save each scan to Adobe Document Cloud for instant access and sharing.
• Even lengthy legal documents become manageable and scannable with the Adobe Scan scanner app, which lets you search, select, and copy text.
• You can also open a PDF scan in Acrobat Reader to highlight key sections, add comments, fill and sign.

IN-APP PURCHASE
Subscribe for even more scanning power. Subscriptions work across Scan and Reader mobile apps and Acrobat on web.
• Combine scans into one file so you can take multiple scans and consolidate into one document.
• Export PDFs to Microsoft Word or PowerPoint file formats to integrate with your workflows.
• Increase OCR capacity from 25 to 100 pages so that you can find text in multiple scans.

Download the best free mobile scanner to convert photos and documents into PDF and JPEG files wherever you are. With OCR technology, you can easily digitalize books, business cards, and business receipts and access them via the Adobe Document Cloud. Adobe Scan is the PDF converter trusted by millions worldwide. Scan photos to high-quality PDFs or JPEGs and share easier than ever before.

Terms & Conditions:
Your use of this application is governed by the Adobe General Terms of Use http://www.adobe.com/go/terms_en and the Adobe Privacy Policy http://www.adobe.com/go/privacy_policy_en

Do Not Sell My Personal Information: www.adobe.com/go/ca-rights\",\n \"scoreText\": \"4.8\",\n \"score\": 4.788982,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.adobe.scan.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.adobe.scan.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.adobe.scan.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.adobe.scan.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.adobe.scan.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"CBS\",\n \"appId\": \"com.cbs.tve\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.cbs.tve\",\n \"icon\": \"https://play-lh.googleusercontent.com/R-Dlb-6gMbHZuaHJqkLs5BeGJDEmBHyrsQ-r4X3IImHvdpS_7umgjOO6-7e_4AbAXQ\",\n \"developer\": {\n \"devId\": \"CBS Interactive, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/CBS%20Interactive%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With the new CBS app you can watch the latest episodes of your favorite CBS shows for free at your convenience, no log-in required to instantly stream anytime, on any device. You also have the option to sign in with your cable provider to access full seasons and stream Live TV from your local CBS station including live news, sports, entertainment, and can’t-miss live events like The Grammy Awards, NCAA March Madness, NFL on CBS and more. All for free, no additional subscription or monthly fee required.

App Features:
• No credit card or subscription required to watch new episodes
• Stream full episodes for free
• Watch your favorite shows anywhere, on any device
• Latest episodes available for next-day streaming*
• Option to sign in with your cable provider to stream live TV and access full seasons of CBS shows

*Content availability subject to change. Live TV subject to availability. On certain devices, certain content may not be available for next-day streaming, learn more at help.cbs.com. The use of the CBS app is limited to the United States.

Please note: This app features Nielsen’s proprietary measurement software which will allow you to contribute to market research, like Nielsen’s TV Ratings. Please visit http://www.nielsen.com/digitalprivacy for more information.

CBS App Terms of Use:
https://www.viacomcbs.legal/us/en/cbsi/terms-of-use

ViacomCBS Privacy Policy:
https://www.viacomcbsprivacy.com/policy

Cookie Policy:
https://www.viacomcbsprivacy.com/cookies

Do Not Sell My Personal Information:
https://www.viacomcbsprivacy.com/donotsell\",\n \"scoreText\": \"4.1\",\n \"score\": 4.1140547,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cbs.tve\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.cbs.tve/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.cbs.tve/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.cbs.tve/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.cbs.tve/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"DHgate-online wholesale stores\",\n \"appId\": \"com.dhgate.buyermob\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.dhgate.buyermob\",\n \"icon\": \"https://play-lh.googleusercontent.com/lLHKWZ9z4qIqvhDT2nlTbLOvjVLUvEPVsM2yofZE_3c8ogGNOUjQv196bwgjgt2jBF8\",\n \"developer\": {\n \"devId\": \"dhgate.com\",\n \"url\": \"http://gplayapi.srik.me/api/developers/dhgate.com\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The DHgate shopping app allows free access to the DHgate wholesale marketplace on the go – connecting you directly to wholesale sellers and getting you cheap prices.

The DHgate app provides one-stop solution for your online purchasing, from international logistics and payment, to internet finance and customer services. DHgate app features over a million Chinese wholesalers, 40 million products for sale and has amassed 10 million buyers from 230 countries and regions.

We provide cost effective all-in-one solution for your business. We enable anyone to buy and sell products in wholesale price globally by providing secure payment services, logistics solutions, escrow protection services, and internet financing.

With a variety of over 20 million products in categories ranging from electronics to wedding dresses and from cosmetics to furniture – you’ll never miss what you’re looking for. Simply tell the app whether you’re buying for wholesale or personal use, choose your favorite categories and receive personalized discounts and recommendations.

DHgate Shopping APP Features:
• Secure, organized and reliable mobile platform.
• Shop directly from sellers and enjoy lower-than-retail prices.
• Check daily deals to find new discount products every day.
• Make purchases individually or in bulk (for additional discounts).
• Filter and customize to find the perfect product.
• Get smart product recommendations based on preferences and browsing history.
• Read customer reviews for insight on any product.
• Pay using innovative and easy payment options.
• Ship using worldwide delivery on most products.
• Scan QR codes to jump straight to a product’s page.
• Shop at the $1.99 store for the best discounts.
• Join the VIP club to receive exclusive benefits including 24/7 customer support and more.
• Redeem seasonal promotions for coupons on all your favorite seasonal items.

Whether you’re an entrepreneur making a bottom line or just a savvy consumer looking for the best deals, the DHgate app offers the value you need at the prices you want.

Quick Facts for DHgate Shopping APP
• Approximately 1.2 million sellers globally
• 10 million enterprise and individual buyers from over 230 countries and regions
• 33 million wholesale and retail product listingsA transaction every 3 seconds
• Multilingual Sales: English, French, German, Italian, Portuguese, Russian, Spanish


Download DHgate app and discover the best prices on clothes, electronics, shoes and more!"\",\n \"scoreText\": \"4.3\",\n \"score\": 4.336636,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dhgate.buyermob\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.dhgate.buyermob/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.dhgate.buyermob/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.dhgate.buyermob/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.dhgate.buyermob/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Contacts\",\n \"appId\": \"com.google.android.contacts\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.contacts\",\n \"icon\": \"https://play-lh.googleusercontent.com/D-haUsSx771Pt4brCyFEJUNKZaC8NUsD2bMB-ZL_yE2LnYdmt3YbgfZwDDM9B-wBHw\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Back up your contacts and sync them across all your devices
• Safely back up the contacts in your Google Account to the cloud
• Access the contacts in your Google Account from any device

Keep your contacts organized and up to date
• View your contacts by account (e.g., work vs. personal)
• Easily add contacts and edit information like phone numbers, emails, and photos
• Get suggestions for adding new contacts, merging duplicates, and more

Also available for Wear OS.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3281302,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.contacts\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.contacts/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.contacts/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.contacts/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.contacts/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"TuneIn Radio: News, Music & FM\",\n \"appId\": \"tunein.player\",\n \"url\": \"http://gplayapi.srik.me/api/apps/tunein.player\",\n \"icon\": \"https://play-lh.googleusercontent.com/KLI43egHmMQhCvDTH-EDWDdtxxPODJk6YO56Fa5cmmiYRd5LfBAXrVZmHcRCQ5j9_rZD\",\n \"developer\": {\n \"devId\": \"TuneIn Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/TuneIn%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"HEAR WHAT MATTERS TO YOU

With TuneIn, stream local AM/FM stations (plus 100,000+ global stations) on all your devices, plus live news, game-winning sports coverage, music for every mood, podcasts for every passion, and more.

HEAR YOUR WORLD

Your Radio. Your Music. All Live.
Listen to local stations live from your phone or tablet with 100,000+ international AM/FM stations from more than 197 countries.
Find your vibe with exclusive music stations including Today’s Hits, Classic Hits, Smooth Jazz, and more.
Stream iHeartRadio’s top stations online from around the US including 106.7 Lite FM, Power 105.1, KOST 103.5, 102.7 KIIS-FM Los Angeles, 93.9 Lite FM, 98.1 The Breeze, 104.3 MYfm KBIG, and more.

The News You Need:
Stream the networks you trust, all in one place: CNN, MSNBC, FOX News Radio, NPR, BBC, CNBC, and more.
Stay informed 24/7 with local, national, and global sources.
Top news radio from KQED-FM, WNYC-FM, WBEZ Chicago, WTOP Washington DC, and more.Find the stories you want with top news podcasts like New York Times’ The Daily, NPR’s Up First, and more.

Top Sports Content
Listen to the biggest games from international leagues including MLB, NFL, NHL, College Sports, Racing, and more.
Stream your favorite sports talk radio stations, online, right from all your devices, including ESPN Radio, talkSPORT, Fox Sports Radio, and your favorite local shows.
Follow your team all season long with gametime notifications and customized content right from the app.
Stay in the game all day long with sports podcasts, on-demand, including Skip and Shannon: Undisputed, First Take, The Bill Simmons Podcast, Pardon My Take, and more.

Podcasts for Every Passion
Hear the world’s biggest shows including Stuff You Should Know, Wow in the World, Hidden Brain, and more.
Fill your commute or your workout with top global podcasts.
Pick up where you left off and stream online or offline episodes.

Listen On All Your Devices, Everywhere
TuneIn goes where you go on smartphones, tablets, and more.
Kick your listening into high-gear with deep automotive compatibility via Android Auto, plus native support on Tesla, Mercedes, Volvo, Jaguar, Land Rover, Rivian, and more.Cue up TuneIn with your voice and stream on Amazon Alexa-enabled devices and Google Home speakers/displays.

UNLOCK EVEN MORE WITH TUNEIN PREMIUM
Upgrade to the optional TuneIn Premium plan for bonus content:
Live Sports: Hear home and away play-by-play of every MLB and NHL (no blackouts), plus college sports and racing, and ESPN Radio commercial-free.
All News, No Commercials: Remove the ads on all your favorite news networks and hear 5+ hours of bonus content every day on CNBC, CNN, FOX News Radio, MSNBC, and more.
Nonstop, Ad-Free Music: Enjoy curated music stations without commercials.
Fewer Ads on All Stations: Hear 100,000+ radio stations with fewer commercials.

*Subscribe to TuneIn Premium through the free app. If you choose to subscribe, you will be charged a monthly or annual subscription fee according to your country. The subscription fee will be shown in the app before you complete the payment. Your subscription will automatically renew every month or year at the then-current subscription fee unless auto-renew is turned off at least 24 hours before the end of the then-current subscription period. Your Google Play account will automatically be charged within 24 hours prior to the end of the then-current period. The subscription fee will be charged monthly or annually according to your subscription. You can turn off auto-renew at any time from your Google Play account settings.

Privacy policy: http://tunein.com/policies/privacy/
Terms of use: http://tunein.com/policies

TuneIn uses Nielsen measurement software which allows you to contribute to market research, like Nielsen’s TV Ratings. To learn more about Nielsen’s products and your privacy, please visit http://www.nielsen.com/digitalprivacy for more information.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6882515,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=tunein.player\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/tunein.player/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/tunein.player/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/tunein.player/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/tunein.player/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"QR Code Reader Barcode Scanner\",\n \"appId\": \"qrcode.reader.barcode.scanner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/qrcode.reader.barcode.scanner\",\n \"icon\": \"https://play-lh.googleusercontent.com/SpdbLHRG_KdifgV9hAcfHzw1qG59ZYMedGsp_fAkjSU6er1i6kV1HTjLq9IHguHOr1A\",\n \"developer\": {\n \"devId\": \"aMessage studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/aMessage%20studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Super FAST and must-have QR Code Reader & Barcode Scanner for Android! SIMPLE, SAFE and very easy to use! 100% FREE! 👍

QR & Barcode Scanner app can scan any type of QR code and is the best QR code reader/barcode scanner, including Product, URL, Wi-Fi, Google Auth, ISBN, VCard, Contacts, Calendar, Email, Geo,Text, and more formatting.

🛍️ GET PRODUCT INFORMATION
Auto-scan any QR code or barcode for more information, you can search for a product online, visit different e-commerce portals like Amazon, eBay and Google for product information such as country of origin, additives, etc.

🕵🏻\\u200d♀️ SUPPORT 2FA AUTHENTICATOR
Two-factor authentication is a proven security guarantee against various cyber-attacks. You can scan QR codes with our app to get verification codes for all your online accounts.

🍔SCAN QR CODE MENU
Scan the QR code menu with QR & Barcode Scanner. Automatically recognizes the code and jumps to the "e-menu" to browse the selected dishes and complete the order online.

💰PRICE SCANNER
Try this free QR code scanner / QR code reader to scan items and compare prices with online prices to save money.

💵SCAN COUPON CODES TO SAVE MONEY
QR Code Reader Barcode Scanner app easily scan some coupons/coupon codes to get discounts on items and save some money.

📶 SCAN Wi-Fi PASSWORD
QR Code Reader scans with one click and automatically connects to Wifi, so you can easily access the Internet!

💎SUPPORTS ALL COMMON FORMATS
QR Code Reader & Barcode Scanner supports scanning all formats of QR codes and barcodes such as: Data Matrix, Quick Code, EQS, QR Code, Code39 and Code128 etc. Using the QR Code Reader Barcode Scanner app is fast and safe.

📣CREATE AND SHARE
QR Code Reader Barcode Scanner helps you to create and share QR codes in various formats anytime, Contact, URL, Text, Email, SMS, Weblink, Phone, WiFi, GEO, etc. The option to generate a QR code or barcode can be used for several purposes, such as generating codes for your own social accounts (including YouTube, Facebook...), contact information or business products.

📱SOCIAL MEDIA QR CODE GENERATOR
QR & Barcode Scanner can help you to generate various social media QR codes like Youtube QR code, Instagram QR code, etc.

★ Why choose Free QR Code Reader Barcode Scanner?★
✔️ Scan any types of QR code
✔️ Flashlight for scanning in dark environments
✔️ Easily scan and create QR codes and barcodes
✔️ Scan QR codes and barcodes in the gallery
✔️ Batch scan QR codes and barcodes
✔️ Price Scanner
✔️ No internet connection required
✔️ All scan history will be saved
✔️ Share the generated QR code and barcode as you like
✔️ Customized business cards

💡HOW TO USE💡

1️⃣ Point the camera at the QR code/barcode
2️⃣Automatic identification, scanning, decoding
3️⃣ Get results and related options. If it's a wifi QR code, the app will automatically connect to the wifi hotspot without a password. If the result of the scan is a product, you can choose to search for a country to get some details.

🚀QR Code Reader Barcode Scanner can automatically detect and scan any code without pressing any button. You can also scan a QR code or barcode in the image gallery. If you are in a dimly lit environment, the flashlight allows you to scan and read QR codes and barcodes.

🏅The easiest free QR reader. Automatically scan QR codes and create your own QR codes. Download the QR reader barcode scanner app!

Privacy Policy: https://qr2021.amessage.cc/privacy.html
User Agreement: https://qr2021.amessage.cc/useragreement.html\",\n \"scoreText\": \"4.6\",\n \"score\": 4.614213,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=qrcode.reader.barcode.scanner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/qrcode.reader.barcode.scanner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/qrcode.reader.barcode.scanner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/qrcode.reader.barcode.scanner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/qrcode.reader.barcode.scanner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Flash Rewards\",\n \"appId\": \"com.delivertech.flashrewards\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.delivertech.flashrewards\",\n \"icon\": \"https://play-lh.googleusercontent.com/PI5tcAvOJS2okhvUJEGNcvyxoJb3_gUoxrocoSWeD85ICzTZu_DBbdv1xmOC4DHbplM\",\n \"developer\": {\n \"devId\": \"Deliver Technology LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Deliver%20Technology%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Flash Rewards is the new best way to earn money from home, simply by using the app! Sit back on the couch and play games offered in the app while earning coins, which you can redeem for real money gift cards, now including Visa, Amazon and Nintendo.

Flash Rewards is completely free.

Easily Earn Coins
One of the ways in which we differentiate ourselves is that we continue to reward you for continuous time played in our offered games, rather than just installing them. You can continue to earn coins towards your gift card based on how long you play and use them!

Special Offers
Do you enjoy great deals and special offers? Flash Rewards has you covered! Find special exclusive promotions for app/online services and subscriptions, too. The more you use Flash Rewards, the faster you can earn coins towards gift cards!

Regular Content Updates
Flash Rewards is always adding new games and promotions as well as gift card brands such as Visa, PlayStation, Nintendo, Amazon, Nike, Starbucks, and more. There is always a reason to check back and find out what’s new.
- Earn gift cards for major brands
- There is no cost to use Flash Rewards
- There are no caps or limits as to how many offers you can complete
- Get rewarded for playing games and using apps on your phone
- Fantastic offers and subscriptions for services you’ll want to use\",\n \"scoreText\": \"4.0\",\n \"score\": 3.995911,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.delivertech.flashrewards\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.delivertech.flashrewards/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.delivertech.flashrewards/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.delivertech.flashrewards/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.delivertech.flashrewards/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Voice Recorder\",\n \"appId\": \"com.media.bestrecorder.audiorecorder\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.media.bestrecorder.audiorecorder\",\n \"icon\": \"https://play-lh.googleusercontent.com/O9hD0-C4aYj5r71REmaqWDKjJT5rPTialCYK79ZYc_Kvj46QzQQPE2Jm9aUxB0wmxQ\",\n \"developer\": {\n \"devId\": \"quality apps (recorder, weather, music)\",\n \"url\": \"http://gplayapi.srik.me/api/developers/quality%20apps%20(recorder%2C%20weather%2C%20music)\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Voice recorder
Best recorder for sound recording with high quality
Voice recorder application is totally free. It is simple and easy to use. You can reliably record your meetings, personal notes, speeches, lectures, songs. There is no time limits. This application can record most of your voice. You can record a business meeting, a lecture, an interview. This app is a best choice.

Features:
1. record voice with high quality
2. simple user interface, easy to use.
3. Supported operations in this Version
- Recording with high quality.
- Format file: mp3, ogg
- Play, pause, stop audio file.
- Send/Share your recording.
- Delete your recording right from the app.
- Save the recording file.
- live audio spectrum analyzer
- mp3 encoding with adjustable sample rate (8-44 kHz)
- recording in background (even when display is off)
- microphone gain calibration tool
- save/pause/resume/cancel recording process control
- easy to use recordings list
- send/share a recording via email, sms, mms, facebook, whatsapp, dropbox, etc.
- not support call recorder

Hope you love this application.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.8423443,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.media.bestrecorder.audiorecorder\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.media.bestrecorder.audiorecorder/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.media.bestrecorder.audiorecorder/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.media.bestrecorder.audiorecorder/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.media.bestrecorder.audiorecorder/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Hair Clipper Prank, Fart Sound\",\n \"appId\": \"com.hairclipper.jokeandfunapp21\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.hairclipper.jokeandfunapp21\",\n \"icon\": \"https://play-lh.googleusercontent.com/kF49PGL4cUnyV6_tCqUs7xGX6FokEzlLc5-pjPlu_iPqhdzuqPuRd2rOklZOCqv2-CE\",\n \"developer\": {\n \"devId\": \"duff hl studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/duff%20hl%20studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Good Pranks are tried and tested hoaxes, practical jokes, and tricks that have been played on friends and family alike! Some pranks create great laughs all around others well ... a blushing face on the part of the prankster!

Want to pull some good pranks on friends? You can't go wrong with Hair Clipper: Prank, Scissors, Razor, Fart sounds
----------------------------
💇\\u200d♂️ Hair clipper prank
----------------------------
🪒 Downloading Hair Clipper: Prank, Scissors, Razor, Fart sounds, you will turn your device into a razor. As a joke, of course, a haircut prank with friends. This clipper app can perfectly simulate the sound and vibration of the real hair clipper 🪒

💇\\u200d♂️ Hair Clipper: Prank, Scissors, Razor, Fart sounds simulates a real hair trimmer! Its sound is recorded from a real hair clipper and changes when you move the device above somebody’s head. Also, you will feel a vibration similar to a real razor 💇\\u200d♂️

🪒 There is even a proximity sensor for a more realistic hair clipper prank shaving. The clippers prank will play realistic shaving sounds. But the app is designed exclusively for jokes 💇\\u200d♂️
-----------------------------------------
🖵 Make me Bald Prank
-----------------------------------------

🖵 Make me bald effect will remove your hair from your head. Also, you can try different bald hairstyles. After that you can check your hairless self. 👨\\u200d🦲💇\\u200d♂️

You could share your hairless photos on social medias. Have fun together with your friends. 💇\\u200d♂️
---------------------------
🕪 Funny noise pranks
---------------------------
There are too much brilliant sounds in our free app. White noise, Police Sirens, Car horns, Engine sounds, Door Bell, Air Horn, and Burping sounds in our app. You may want to check it out.
-----------------------------------------
🖵 Broken phone screen prank
-----------------------------------------
📱 What's more terrifying than your phone belly-flopping on concrete? The moment you have to turn it over to see the damage done. Add cracks and scratches to any photo to fool people into believing the screen is trashed. Convince your friends that it's their fault and see their response! 🖵
---------------------------
💨 Fart noise prank
---------------------------
🤢 If you're craving a good laugh, download the fart prank of this app. This is the go-to prank app for your fake flatulence needs. Try the sneak attack fart timer or the fart bomb, what about the fart simulator?

Schedule a sweet fart, hide your phone by someone's chair, and go far enough away to seem innocent when the melodious sounds attract the attention of everyone in the office. Stay classy & gassy, pranksters. 🦨
---------------------------------
🤳 Fake video call prank
---------------------------------
After installing this prank caller app, you will have access to hundreds of pranks suggested by the app. Celebrities’ fake calls will be available for you as well 📱

This prank dial will provide you with prank calls, including calls from celebrities. You will be able to listen to them, choose the best, add some additional information (like your friend’s phone number), and enjoy the result! 📱
-----------------------------------
✨ Laser pointer simulator
-----------------------------------
A fake laser prank game is included in this prank app as well. It simulates a laser pointer on your mobile phone. Enjoy the laser lights and halos, different laser colors. The simulator just simulates a laser pointer, it will not throw a laser light from your device.
-----------------------------------------------------------------
🤥 Lie detector prank and 💢 Vein locator prank
-----------------------------------------------------------------
Lie Detector is a prank fingerprint scan app that tries to determine if you are telling the truth or a lie based on your thumbprint scan. A vein locator is a simulation of a vein scan of your body. 🤥\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2961783,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hairclipper.jokeandfunapp21\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.hairclipper.jokeandfunapp21/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.hairclipper.jokeandfunapp21/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.hairclipper.jokeandfunapp21/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.hairclipper.jokeandfunapp21/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Device Info: View phone info\",\n \"appId\": \"com.liuzh.deviceinfo\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.liuzh.deviceinfo\",\n \"icon\": \"https://play-lh.googleusercontent.com/9bFlMknwhB3EXQs6set4wxNjFKRthBx_QPWXsVx6aXuk7MqwzoUToOnFJ_Md5xIhyQ3L\",\n \"developer\": {\n \"devId\": \"LiuZho Soft\",\n \"url\": \"http://gplayapi.srik.me/api/developers/LiuZho%20Soft\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Device Info: View hardware, software and system information. Test Android Device Hardware.

Key Features

👉Device id, Phone id, Advertising ID, Phone info
View phone info and device id, find your iccid, mcc, mnc, carrier id, etc.

👉Storage Analysis
Quickly find redundant files, duplicate files, and large files to free up more storage space.

👉Apps Analysis
Target sdk, min sdk, app installer, native library, sensitive permissions, perform a comprehensive physical examination of the applications in your phone.

👉Device Test Benchmark
Screen test, button test, sensor test and hardware test to see if everything is normal on your phone.

👉Device Benchmark
Test Device hardware, view sensors realtime data and test it.

👉App Detail
Activities, services, broadcast receivers, permissions, view AndroidManifest.xml, you can see all the details of the application.

👉Management Apps
Export app icons, export app APKs, share apps, uninstall apps, it’s very convenient for you to perform any operations on apps

👉Floating Monitor
Using the floating monitor, you can see various data of the mobile phone in real time, such as real-time monitoring of FPS, battery current, battery voltage, mobile phone signal, CPU&GPU status, etc.

📱Device Info provides following information of your Android device which grouped as below.

Device information, Phone information
System Information
Hardware Information
Device benchmark
Device Test & Hardware Test
SIM Information
Real time Sensor Information
CPU & Processor Details
Battery Health
Hardware temperature
Network(WiFi & Mobile network)
Camera info
Internal Storage & System Storage & External Storage
Display
GPU & RAM
App details
GPS & Realtime Satellite\",\n \"scoreText\": \"4.6\",\n \"score\": 4.578652,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.liuzh.deviceinfo\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.liuzh.deviceinfo/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.liuzh.deviceinfo/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.liuzh.deviceinfo/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.liuzh.deviceinfo/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Future You: Face Aging&AI Palm\",\n \"appId\": \"com.faceart.backgrounderaser.futureme\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.faceart.backgrounderaser.futureme\",\n \"icon\": \"https://play-lh.googleusercontent.com/lUs7vdSd_xD_EOnLxJwn8H_fkmnHAGskDTyvrDFL1jOjB0QWauA2RhCXH_uNVJ095qM\",\n \"developer\": {\n \"devId\": \"Future Self Studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Future%20Self%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The app (Future You: Face Aging & AI Palm) is very easy and simple to use without much fancy adjustments.

*** Face Aging ***
Take a photo or coose a photo from the album, and then we can let you see your old face 30 years later in a few seconds. With artificial intelligence technology, you can even try the photos of your family or friends to see how they look when they get old.

*** Young Effect ***
Do you remember what you were like when you were a kid? We have a lot of funny effects here, Just upload a selfie then you can see yourself 20 years ago, it is very interesting.

*** AI Palmistry ***
Hand reading or palmistry is the way to know about your life. You can find everything related to your personal life, love life and career. Examine the lines of your palm and read predictions from experts.

*** Fortune Horoscope ***
Future horoscope for all life areas. Our horoscope app creates personal daily forecast: health horoscope, love horoscope, finance horoscopes, business horoscopes, and sex horoscope.

*** Background Eraser ***
We used the newest AI tech to do it better, you can only click to pick your original picture and waiting a moment to get the perfect result!

Come and download Future You: Face Aging & AI Palm, you will like it.

More features coming soon!\",\n \"scoreText\": \"3.4\",\n \"score\": 3.357143,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.faceart.backgrounderaser.futureme\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.faceart.backgrounderaser.futureme/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.faceart.backgrounderaser.futureme/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.faceart.backgrounderaser.futureme/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.faceart.backgrounderaser.futureme/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"fuboTV: Watch Live Sports & TV\",\n \"appId\": \"tv.fubo.mobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/tv.fubo.mobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/3NN5ZLWK9YOk-A9qNDbMi1iCdW_mxjJO8xMejAL9hemgbbe_vkK84rl6zmyZpHKdXA\",\n \"developer\": {\n \"devId\": \"fuboTV\",\n \"url\": \"http://gplayapi.srik.me/api/developers/fuboTV\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Watch NFL, MLB, NBA, NHL, NASCAR, NCAA college football, NCAA college basketball, MLS soccer, FIFA World Cup™️ qualifiers, Champions League, English Premier League, LaLiga, Bundesliga, and more all live. Plus, stream acclaimed TV series, live news, and award-winning movies and enjoy Cloud DVR and dedicated sports navigation to watch what you want, when you want.

100+ LIVE TV CHANNELS
fuboTV has over 100 TV channels and is the only way to get every Nielsen-rated sports channel without cable. fuboTV features ABC, CBS, NBC, FOX, ESPN, CBS Sports, regional sports networks, FS1, NBCSN, NFL Network, NFL RedZone from NFL Network, NBA TV, MLB Network, MLB Network Strike Zone, Zona Futbol, beIN SPORTS, Telemundo, Golf Channel, SEC Network, ACC Network, Pac-12 Network, Big Ten Network, Olympic Channel, and beyond.

EXTENSIVE LIVE SPORTS COVERAGE & MAJOR EVENTS
NBA, MLB, NHL, NCAA, PGA golf, NASCAR, NFL, you name it, we got it. That’s over 50,000 live pro and college events — regional to international, including NFL games, MLB games, NBA Finals, NHL Stanley Cup Playoffs, FIFA World Cup™️, U.S. Open, Triple Crown, Olympics, and more. Stream it all live.

LIVE SOCCER GAMES FROM AROUND THE WORLD
Find top leagues, international club competitions, and national-level teams like FIFA World Cup™️ qualifiers, English Premier League, LaLiga, Champions League, Europa League, Bundesliga, Serie A, Ligue 1, Liga MX, MLS, and more from around the world. With Univision and CBS, catch live soccer from Champions League matches. Stream Barcelona FC vs. Real Madrid in live LaLiga soccer games on beIN SPORTS. See Manchester United in action in a Premier League match on NBC Sports.

TV SHOWS & MOVIES, LIVE & ON DEMAND
fuboTV has over 10,000 hours of on-demand TV shows and movies. So you can catch up on acclaimed series and blockbusters from ABC, CBS, FOX, NBC, Comedy Central, MTV, Disney Channel, Nickelodeon, E!, TLC, Nat Geo, USA, SHOWTIME®️, FX, Disney XD, Disney Junior, and more. Plus, with a fuboTV account, you can log in and stream entertainment from 25+ other apps.

NEVER MISS ANOTHER PLAY
30 hours of Cloud DVR space are included with every account. Need even more? Upgrade and get up to 500 hours of Cloud DVR space. Record anything, start watching on one device and finish on any other. Forgot to hit record? No problem. You can replay nearly any game, show, or movie that aired in the last 3 days with 72-hour Lookback.

WATCHING LIVE STREAMS
Like YouTube TV, ESPN +, Bleacher Report Live, Sling TV, and others that offer live sports as well as mostly entertainment streaming services like Netflix, Hulu, HBO NOW, Pluto TV, and Amazon Prime Video, a high-speed connection, whether through a mobile data plan or internet provider like Comcast Xfinity or Spectrum, is required to live stream from a phone, tablet or connected device like Roku.

•• Watch FREE for 7 days. Then just $64.99/mo. ••

If you enjoy your fuboTV trial, do nothing, and your membership will automatically continue for as long as you choose to remain a member. fuboTV membership is a month-to-month subscription that begins at sign up. You can easily cancel anytime, online, 24 hours a day. There are no long-term contracts or cancellation fees. Just sign up to get started!

Terms of Service: https://www.fubo.tv/documents/terms-of-service
Privacy policy: https://www.fubo.tv/documents/privacy-policy

This app features Nielsen’s proprietary measurement software, which will allow you to contribute to market research, like Nielsen’s TV Ratings. Please see nielsen.com/digitalprivacy for more information.\",\n \"scoreText\": \"3.9\",\n \"score\": 3.8738124,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=tv.fubo.mobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/tv.fubo.mobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/tv.fubo.mobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/tv.fubo.mobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/tv.fubo.mobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Badoo - Dating. Chat. Meet.\",\n \"appId\": \"com.badoo.mobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.badoo.mobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/dPbO3HO-CJKfDdjgIwh_K2OAhnPRAC0uhBKbvWQWtMyHJot1wDMvvOLF4Ia-hNfeLWg\",\n \"developer\": {\n \"devId\": \"Badoo\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Badoo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to Badoo, the dating app that makes it easier to date 💜

In a society that profits on our self-doubt, Badoo is the online dating app where it pays to be the real, unapologetic you.

We’re a little different from other dating apps. We fight the ambiguity of modern dating with authentic, unfiltered chats. We believe real connection is born from being honest in who you are and what you really want.

SWIPE, MATCH & MEET 👌
Badoo is the dating app that allows you to match and chat with people, make friends, or find a partner. We make it easier to meet people near you:

✔ Don’t be shy: Introduce yourself, complete your profile to raise your popularity and get more matches.

✔ Have fun with our filters: Find friends and dates by using our special filters.

✔ Meet People Nearby: Meet people who live near you, make new friends and chat for free.

✔ It’s a Match!: Straight forward swiping, right to get a match and left to skip.

✔ Video Chat: Don’t stick to messages! Make real connections with your match by chatting to them over a video call.

✔ Have fun: Share pictures from other social networks.

✔ Better Together: Invite your friends to Badoo and share profiles you are interested in.

✔ Clips: Record yourself answering fun questions like ‘What’s your signature dish?’ and give potential dates a cute conversation starter.

✔ Share your mood: Craving coffee or in the mood to laugh? Let people know! That way, you’ll be able to match someone who’s on the same vibe as you at that moment.

✔ Intentions: Being on a dating app doesn’t mean you just want to date. You might want something serious, to find friends or have a deep chat. Whatever you're here for, let people know.


Start your dating journey today!


GO ON REAL DATES 👆
Whether you’re looking to start dating, have chats, or make friends, you’re sure to find it on Badoo.

✔ Ready to chat and date? Our great features mean you’ll be chatting about all sorts of things (like whether or not you’d survive a zombie apocalypse!) before you even get to your date.

✔ Chat for free with singles and make local friends.

✔ Meet our lovely community with million monthly active users looking to make friends, go on dates and fall in love.


SAFE AND SECURE 🔒
Badoo is a dating app that ensures safety and respect within our community. We do not tolerate any kind of inappropriate behaviour and have strict usage guidelines, as well as an extensive list of safety features to ensure the best dating experience with us.

Safety Centre 💜
Where you can find in depth guides, useful tools and essential helplines to date with confidence and ease.

Private Detector 🚫
This keeps you safe from unsolicited images. If a graphic image is detected in our dating app, we’ll blur it and warn you of the content.

Rude Message Detector ❌
Any insulting, discriminatory or overly sexual messages will be automatically flagged.

Verified profiles ✅
These little ticks means that their dating profile has been vetted by us—and there isn’t a bot on the other side!

Video calling ☎️
Being able to have video calls means you can really see the person you’re talking to.

Personalised settings 🔧
Tailor your settings to make sure your profile is the way you want it to be, like deciding when you appear online and who can message you.


BOOST YOUR PROFILE 🔥
Serious about dating? Activate Badoo Premium! You'll be able to access plenty of exciting features that will help you get the most out of our app:

⭐️ Find out who added you to their favourites and meet local singles.

⭐️ See who liked your profile. It's time to meet new people and make new friends!

⭐️ Get your messages to read first and start a chat.

⭐️ Swiped left on the person of your dreams? You can go back with Premium and get a match!

The price varies by country and may change without notice, but you can always see the exact price in the app.

Read our Privacy Policy and Terms of Use:
https://www.badoo.com/privacy
https://badoo.com/terms\",\n \"scoreText\": \"4.0\",\n \"score\": 4.010239,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.badoo.mobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.badoo.mobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.badoo.mobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.badoo.mobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.badoo.mobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Transit: Bus & Subway Times\",\n \"appId\": \"com.thetransitapp.droid\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.thetransitapp.droid\",\n \"icon\": \"https://play-lh.googleusercontent.com/rDVnZ9rwreErP5_wwGrSVtx-prgRBTCJwdCP9iQFkt_3EerJzB0rxA15EIAGYXUNZA\",\n \"developer\": {\n \"devId\": \"Transit, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Transit%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Transit is your real-time city travel companion. It works in 300+ cities, for buses, trains, Ubers, Lyfts, and everything in between. Get precise real-time predictions for public transit, the smartest & fastest trip plans, and a step-by-step navigator when you’re going to unfamiliar destinations (or to wake you up from a mid-trip nap™). Our app gives you all the info you need, in a clear, bold interface so you don’t get lost or stuck at the stop.

Whether you’re new to a city… or a subway expert who takes NYC’s MTA / LA Metro / WMATA / MBTA / BART / CTA / SEPTA every day (or the 200+ other systems we support) this is the award-winning app you need.

*Turn on mobile data to get real-time information
**No data? Don’t worry: our trip planner works offline, using schedules

🌟 Google Play Picks
📰 “Killer App” — WSJ’s NYC subway reporter
⏰ “You won't realize how much time you can save until you use this app” — LA Times
💪 “The best app for CTA buses” — Reddit Chicago
🔥 And trusted by the New York Times’ own tech critic, Mike Isaac

🔍 What features does this app support?
- Real-time map that shows you where your ride is 📍
- Subway maps 🗺️
- Trip planner (works offline)
- Explore different combinations of trips to find the fastest way to your destination (i.e. how does a train trip compare to a “bus + bikeshare” trip? Or a “train + Uber” trip?)
- Real-time predictions, telling you when your train, subway, bus, ferry, metro, etc. will show up
- Step-by-step navigator (including transfers)
- Voice reminders to start walking to your stop, to hurry up (if your bus or subway is arriving early) and where to get off
- Schedules, route itineraries, connecting lines at every stop
- Pay for bus & train tickets, bikeshare passes & ridehail fares in the app (select cities)
- Bike directions
- Compare ETAs & prices for Uber, Lyft and Via
- See ALL nearby bikeshares, scooters, and carshares
- Support for everything: bus / metro / subway / light rail / streetcar / train / ridehail / bikeshare / scooters / carshare / ferry

🙋 Where does this app work?
200+ supported cities, including NYC, Chicago, Washington DC, LA, SF & the Bay Area, Toronto, Montreal, Vancouver, Paris, and many more cities across North America, Europe, Australia and NZ

⚾ Partial list of US cities ⚾ (including bus, train, subway, and ferry systems)

Atlanta: MARTA, CCT, GRTA
Austin: Capital Metro
Baltimore: MTA
Boston: MBTA, Hubway
Buffalo: NFTA, Fort Erie Transit
Charlotte: CATS
Chicago: CTA, Metra, PACE, NICTD, Divvy
Cincinnati: Metro, TANK
Cleveland: RTA
Columbus: COTA, CoGo
Dallas: DART, Fort Worth T
Denver: RTD
Hampton Roads: HRT
Hartford (and CT): CTTransit, CTFastrak
Honolulu: TheBus
Houston: METRO
Las Vegas: RTC
Los Angeles: LA Metro, Metrolink, OCTA, LADOT, Omnitrans, RTA, Burbank Bus, Foothill, Big Blue Bus, Glendale Beeline
Louisville: TARC
Madison: Metro
Miami: MDT, BCT, Palm Tran, Tri-Rail, Citibike
Milwaukee: MCTS
Minneapolis: Metro Transit, MVTA, Plymouth, SouthWest, U. Minnesota, Nice Ride
New Orleans: RTA
NYC Metro: New York MTA, Metro-North (MNR), Long Island Rail Road (LIRR), NJ Transit (NJT), PATH, SI Ferry, NICE, Bee-Line, RI Tram, NY Waterway, SIR, CitiBike
Orlando: Lynx
Philadelphia: SEPTA, PATCO, Indego
Phoenix: Valley Metro
Pittsburgh: Port Authority (PAAC)
Portland: TriMet
SLC: UTA, GREENbike
Sacramento: Capitol Corridor, SRT
San Antonio: VIA Metropolitan
San Diego: MTS, NCTD
SF Bay Area: SF BART, SFMTA (SF MUNI), Caltrain, AC Transit, VTA, County Connection, SamTrans, Bay Wheels
Seattle: Metro Transit, City of Seattle, Sound Transit, Pierce Transit, Pronto
St. Louis: Metro
Tampa Bay: HART, PSTA
Washington DC: WMATA (DC Metro & Bus), DC Circulator, Ride On, Arlington (ART), Fairfax Connector, VRE, DASH, Capital Bike Share
+100s more cities, including Paris, Montreal, Toronto, Vancouver, London, and more!\",\n \"scoreText\": \"4.4\",\n \"score\": 4.380305,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.thetransitapp.droid\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.thetransitapp.droid/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.thetransitapp.droid/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.thetransitapp.droid/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.thetransitapp.droid/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Messenger for All Message Apps\",\n \"appId\": \"com.messenger.allprivate\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.messenger.allprivate\",\n \"icon\": \"https://play-lh.googleusercontent.com/H20wAINThg4mL39EkH43kv4LjJw31z0cNPlY5W-9Ouod9obKPo1Kf2DwlqXwoUB7Bw\",\n \"developer\": {\n \"devId\": \"Private Messenger\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Private%20Messenger\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"An Unique All in One Messenger App
We designed this messenger app to help you manage all your social app collection in one place, just one tab to open all messenger that you want
Messenger for Private Messages help you to protect your message with passcode lock & manage how long you use your messenger

Main Features:
- Manage All Social Collection in one place
- Time tracking & open times statistic
- Screen Time fuction to manage how long you want to use your app
- Passcode lock to make sure your massage is safe\",\n \"scoreText\": \"4.1\",\n \"score\": 4.147265,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.messenger.allprivate\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.messenger.allprivate/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.messenger.allprivate/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.messenger.allprivate/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.messenger.allprivate/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"MeetMe: Chat & Meet New People\",\n \"appId\": \"com.myyearbook.m\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.myyearbook.m\",\n \"icon\": \"https://play-lh.googleusercontent.com/iCqsm7cH0HX2rNHu298w-dGKEYY4M5krj6yuy322nvY7cC0QG-A2V8aYJ6Euod5zT30\",\n \"developer\": {\n \"devId\": \"MeetMe.com\",\n \"url\": \"http://gplayapi.srik.me/api/developers/MeetMe.com\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Meet, Chat, and Go Live on MeetMe!

MeetMe helps you find new people nearby who share your interests and want to chat now! It’s fun, friendly, and free! Connect for free with friendly nearby locals who want to chat now with fun text, video, and livestreaming features! MeetMe makes it easy to find people nearby for free!

Discover people nearby, for Free!

On MeetMe there are 100+ million people also looking to meet new people like you, and our free features make meeting new people easy and fun! Strike up a text or video chat with someone local who shares your interests. Or you can broadcast yourself out to the world and have the people come to you by streaming on Live!

Chat with Anyone
Break the ice with people nearby or around the world. Unlike some other apps, messaging is always free on MeetMe.

Beat boredom!
There is non-stop entertainment in Live on MeetMe! Create your own Livestream and start building your following as you climb the leaderboard getting to know our passionate livestreaming community. In Live, you can give and receive gifts, battle, and even go on dates. You can also enjoy hours of entertainment from watching our featured Live shows, and maybe even start your own Live show! MeetMe empowers creators on Live!

Find Friends… and more than friends
It doesn’t matter if you’re just looking to chat and make friends, looking for a date, or looking for your soulmate – you’ll find them on MeetMe. What are you waiting for?



Testimonials


“I’m very grateful for MeetMe because I never would have thought in a million years that it would help me … have friends that I have learned to love, and people from here that I want to attend my wedding because that’s how close we are, and then meeting the love of my life too, it’s so crazy how it’s done all these things for me.” - Gabe


“This has allowed me to stay home, still be social - but then I can blend it with the real world. Now I’ve started meeting all these amazing people I’ve met on MeetMe and they’ve now become some of my great friends” - Blake Premer


“When I downloaded MeetMe and got into livestreaming - I’m able to hold conversations now and I feel more confident as a person” - Charlie (CharmCharlie)


“MeetMe was the first place that I was really able to start to grow. Where on those other platforms people were into my message and my story, silliness and positivity, but MeetMe really granted me the opportunity to get directly to a lot more people and grow that family and that community on a much larger scale than I could before” - Katy B.


“Every corner of the world I now have friends in those places and it’s because of the MeetMe platform” - Choff\",\n \"scoreText\": \"3.4\",\n \"score\": 3.4024196,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.myyearbook.m\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.myyearbook.m/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.myyearbook.m/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.myyearbook.m/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.myyearbook.m/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Messenger: Text Messages, SMS\",\n \"appId\": \"messages.chat.free.text.messaging.sms\",\n \"url\": \"http://gplayapi.srik.me/api/apps/messages.chat.free.text.messaging.sms\",\n \"icon\": \"https://play-lh.googleusercontent.com/6Z9ZHcGb5hA4z5cy7djd4zVMv1_0CrQfF_-tYZkhTCwfSBuXVSpqTHtXEXhadLEXyZo\",\n \"developer\": {\n \"devId\": \"aMessage studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/aMessage%20studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Messenger app for text (SMS, MMS) makes it easy, expressive, and fun to connect with others.

Keep in touch with friends and family anytime, anywhere via Messenger! Texting messages(SMS, MMS), sharing pictures, GIFs, emojis, videos & audios, and stickers messages to others. Messenger app provides a powerful text (SMS & MMS) function.

Powerful Messenger Functions
-Fast receive, read, send, copy and forward messages from messenger
-Spam blocking
-Private box
-Schedule sending
-Countless GIF, emoji and sticker
-Plentiful themes: support dark mode
-Support Dual SIM
-Pin conversations to the top
-Customization: bubbles, fonts and colors
-Intuitive and comfortable designed messenger app

Messenger Chat
- Free text messenger - easy, safe and convenient to use, even when hangouts
- Communicate with unlimited text, video, audio and group SMS via Messenger
- Easy to share video, audio, picture, emoji, GIF and sticker messages

Spam Blocker
- No worry about annoying spam messages
- Add a blacklist to block spam messages
- Easily block spam text messenger

Private Box
- Hide private box icon to protect private messages
- Password protection: customize private box icon and name
- Automatically hide your private conversations

Schedule Sending
- Schedule SMS messenger sending helps remembering special events of loved ones
- Auto send messages (SMS & MMS) at a fixed time

Emoji Message
- Plentiful fast & free texting emojis from Messenger (SMS & MMS)
- Sending emoji messages to express yourself

Theme and Wallpapers
- Tons of amazing messenger themes
- Personalize screens and chat bubbles with custom colors and fonts
- Set your own pictures and wallpapers as background in messenger chat app

Powerful Searching
- Find the shared content from conversations
- Search your messaging history with other messengers and all your shared text messages, images, videos, places, and links.

Download this wonderful messenger app and set it as default messenger app. Share your favorite stickers, pictures, videos and audio, gifs, emoji message with your friends and family via messenger app.

We are trying our best to make messenger app - Messages for text (SMS & MMS) better. If you have any suggestions/comments, please email us via amessage.studio@gmail.com.

Privacy Policy: https://msg.amessage.cc/privacy.html
User Agreement: https://msg.amessage.cc/useragreement.html\",\n \"scoreText\": \"4.4\",\n \"score\": 4.44686,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=messages.chat.free.text.messaging.sms\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/messages.chat.free.text.messaging.sms/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/messages.chat.free.text.messaging.sms/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/messages.chat.free.text.messaging.sms/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/messages.chat.free.text.messaging.sms/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Zero - Intermittent Fasting\",\n \"appId\": \"com.zerofasting.zero\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.zerofasting.zero\",\n \"icon\": \"https://play-lh.googleusercontent.com/O1v9Hk6CMLcKoiq8hNK4uxvjBu1rOp2bpd_9kpzSXMLkNMhucYRYniOE1puRqXM8ew\",\n \"developer\": {\n \"devId\": \"Zero Longevity Science, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Zero%20Longevity%20Science%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Zero is the world's most popular fasting app.
As seen in Women’s Health, The Tim Ferriss Show, The Drive and more.
Unlock the power of intermittent fasting to improve your health and manage weight.

Zero’s advisory team includes some of the world’s leading doctors and researchers, including our Chief Medical Officer Dr. Peter Attia, who guides our fasting protocols and content creation.

Reach your healthy weight goals no matter what diet you follow - from keto, or low carb, to simple calorie counting - and unlock the full longevity benefits of fasting through Zero’s expert guidance and content.

FREE ZERO FEATURES

TIMER - Set your goal, start your timer, stay on track. We’ll be with you from start to finish with reminders and insights to keep you motivated.

LEARN - Fuel your fast with our ever-growing content library curated by Chief Medical Officer, Dr. Peter Attia.

STATISTICS - Chart your progress and map your journey with an all new calendar view. Sync with Google Fit to track health markers like weight and sleep to see how they evolve with your fasting practice.

JOURNAL - Reflect on how you feel during your fasts. We'll graph your moods so you can track trends and adjust over time.

CHALLENGES - Opt into Challenges that align with your goals, invite friends, unlock Achievements, and stay motivated with guidance from our experts and the chance to win exclusive prizes.

ZERO PLUS PREMIUM FEATURES
Unlock all of the benefits of fasting with Zero Plus.

CUSTOM PLANS - Fast track your fasting goals with a personalized protocol and adaptive recommendations from our team of experts.

PREMIUM CONTENT - Cut through the noise with an exclusive, ever-growing library of videos, articles, audio segments, and Q&As from fasting experts like Dr. Peter Attia.

FASTING ZONES - Know what's happening in your body so you can stay motivated to reach key metabolic milestones.

ADVANCED STATISTICS - See how your fasting practice correlates with other health markers like weight and heart rate. Spot trends and adjust your behavior to stay on target.

ASK ZERO - An expert in your pocket. Submit your fasting questions, then tune in for a chance to get answers from experts like Dr. Peter Attia.

CUSTOM PRESETS - When your fasting needs are more unique than our popular presets, you can create your own.

ADVANCED JOURNAL WITH IN-THE-MOMENT MOTIVATION - Feeling hungry? Log your mood and receive responsive content including exclusive Fasting Meditations.

With Zero you can quickly start your fast based on science from leading doctors and researchers.

• 16-HOUR FAST, or the 16:8 Intermittent Fast, used by celebrities when preparing for blockbuster films and millions of Zero users to manage weight.

• CIRCADIAN RHYTHM FAST, based on research by Dr. Satchin Panda (Salk Institute), this 13-hour fast starts around sunset to align your eating window with your body’s clock. Zero automatically calculates the daily sunset for you.

• 18-HOUR FAST, or 18:6 for more advanced fasters

• Other popular fasts include OMAD (one meal a day), 20:4 fast and custom fasts up to 7 days

• Unlock achievements to celebrate milestones and stay motivated

Choose your favorite fasting protocol and Zero will track your progress on your Android device with Google Fit integration to sync your weight and sleep.

Zero Plus terms:

Payment will be charged to the credit card connected to your Google Account when you subscribe. Subscriptions automatically renew unless auto-renew is turned off at least 24-hours before the end of the current period. Manage your subscription by going to your Account Settings.

Read more terms & conditions:
Terms of use: https://www.zerolongevity.com/terms-of-use
Privacy policy: https://www.zerolongevity.com/privacy-policy\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4941425,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.zerofasting.zero\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.zerofasting.zero/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.zerofasting.zero/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.zerofasting.zero/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.zerofasting.zero/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Spectrum TV\",\n \"appId\": \"com.TWCableTV\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.TWCableTV\",\n \"icon\": \"https://play-lh.googleusercontent.com/tAw05h6Yfm53CeTOpBcfz_a7OnXOlA3w-UpzK0QrLhYZOejI9ZwW7M3Vfkpyp1x0Pg\",\n \"developer\": {\n \"devId\": \"Charter/Spectrum\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Charter%2FSpectrum\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Download the Spectrum TV app and get the most out of your Spectrum TV experience at home or on the go. Stream On Demand or live TV anywhere, on any device.

TURN ANY SCREEN INTO A TV
•\\tStream live TV anywhere you have a connection.
•\\tEnjoy streaming thousands of On Demand shows and movies.
•\\tCast from your phone or tablet to a compatible TV with Chromecast.

FIND YOUR FAVORITE PROGRAMS
•\\tCreate a personalized guide by setting your favorite channels.
•\\tSearch by title, network, actor or sports team anywhere in the app.
•\\tAdd new and exciting Spectrum Originals to your Watchlist.

CONTROL YOUR TV AND DVR
•\\tChange TV channels on your Spectrum Receiver.
•\\tGet showtimes and record your favorite TV shows and movies (with optional DVR services).
•\\tDelete, modify and play DVR recordings on your TV (compatible DVRs only).

SET PARENTAL CONTROLS
Turn on parental controls and set a PIN to block shows by channel or rating. The blocks you set apply across each device in your household.

WHAT YOU NEED TO USE THIS APP
Available programming depends on your Spectrum TV package. Some titles require you to connect to your Spectrum In-Home WiFi. A Spectrum TV subscription, username and password are required to sign in.

Please note: This app features Nielsen’s proprietary measurement software which contributes to market research, like Nielsen’s TV Ratings. Please see https://sites.nielsen.com/priv/browser/us/en/optout.html for more information\",\n \"scoreText\": \"4.6\",\n \"score\": 4.566565,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.TWCableTV\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.TWCableTV/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.TWCableTV/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.TWCableTV/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.TWCableTV/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Sketchbook\",\n \"appId\": \"com.adsk.sketchbook\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.adsk.sketchbook\",\n \"icon\": \"https://play-lh.googleusercontent.com/NIhaPLVMl69snWk7IOWADeBwU-8FG5VL1q41_fmd6TVa4FEIqXQw3Ar3BovrXvza2Q\",\n \"developer\": {\n \"devId\": \"Sketchbook\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Sketchbook\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"From quick sketches to fully finished artwork, Sketchbook goes where your creativity takes you.

Sketchbook is an award-winning sketching, painting, and drawing app for anyone who loves to draw. Artists and illustrators love Sketchbook for its professional-grade feature set and highly customizable tools. Everyone loves Sketchbook for its elegant interface and natural drawing experience, free of distractions so you can focus on capturing and expressing your ideas.

•\\tA full complement of brush types: pencils markers, airbrushes, smear and more that look and feel just like their physical counterparts
•\\tBrushes are highly customizable so you can create just the look you want
•\\tGuides, rulers and stroke tools support precision when you need it
•\\tLayers with a full complement of blend modes deliver the flexibility to build up and explore drawings and color
•\\tPurpose-built for sketching, the interface is clean and unobtrusive so you can focus on drawing\",\n \"scoreText\": \"3.7\",\n \"score\": 3.7345133,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.adsk.sketchbook\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.adsk.sketchbook/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.adsk.sketchbook/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.adsk.sketchbook/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.adsk.sketchbook/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"AVG AntiVirus & Security\",\n \"appId\": \"com.antivirus\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.antivirus\",\n \"icon\": \"https://play-lh.googleusercontent.com/b3va3mhrSWg7SG9xDEw2dEruznpFPEzUdLhRc2iyQH761on1bK3wMDWznj55XPNrUn6J\",\n \"developer\": {\n \"devId\": \"AVG Mobile\",\n \"url\": \"http://gplayapi.srik.me/api/developers/AVG%20Mobile\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get AVG AntiVirus FREE 2022 - Mobile Security for Android to help protect you from harmful viruses and malware. Keep your personal data safe with App Lock, Photo Vault, Wi-Fi Security Scan, Hack Alerts, Malware security, and App Permissions advisor.

Over 100,000,000 people already installed AVG’s antivirus mobile security apps. Join them now and:
✔ Scan apps, games, settings, and files in real-time
✔ Boost speed by killing tasks that slow down your device
✔ Clean unnecessary files to free up space
✔ Lock sensitive apps with a PIN, pattern, or fingerprint
✔ Enable locating your lost phone via Google Maps
✔ Hide private photos in an encrypted Vault
✔ Stay anonymous with VPN
✔ Scan Wi-Fi networks for threats
✔ Discover and block scam sites to stay extra-safe
✔ Check Wi-Fi download and upload speed
✔ Receive alerts if your passwords have been leaked
✔ Get insight into the permission level of installed apps

With AVG AntiVirus FREE 2022 for Android you’ll receive effective virus and malware protection, phone locator, task killer, app lock, Wi-Fi Scanner, and photo vault to help shield you from threats to your privacy and online identity.

App Features:
Protection:
✔ Scan apps, games, and files with our antivirus and remove malicious content
✔ Scan websites for harmful threats
✔ Wi-Fi Scanner for network encryption
✔ Hack Alerts: Get warned if your passwords are compromised
✔ Scam Protection: Scan websites to see which ones are real and fake

Privacy:
✔ Hide private photos in a password-protected Vault to prevent snooping
✔ App Lock: lock sensitive apps to protect your privacy and safety
✔ VPN Protection: Secure your online privacy
✔ App Permissions: get insight into the level of permission required by your installed apps

Performance:
✔ Kill tasks and processes that can slow down your phone or tablet
✔ Clean unnecessary files and free up storage space
✔ Check Wi-Fi download and upload speed

Anti-Theft:
Use AVG AntiVirus FREE 2022 for Android together with AVG’s remote management console to:
✔ Locate your lost or stolen phone via Google Maps
✔ Lock your phone and set a lock screen message
✔ Make your phone sound a siren

Hack Alerts:
✔ See which accounts have been compromised in past leaks
✔ Get warned if a new leak puts your data at risk
✔ Discover the details behind each leak and when they happened
✔ Change compromised passwords easily and quickly

App Insights:
✔ App usage tracker
✔ Monitor how you spend your time
✔ See where your data is used
✔ Discover potential privacy issues

This app uses the Device Administrator permission. This permission allows you to remotely lock and wipe your device from my.avg.com

This app uses Accessibility permission to protect visually impaired and other users against phishing attacks and malicious websites.

By installing or updating this app, you agree that your use of it is governed by these terms: http://m.avg.com/terms

Download Antivirus for Free Now!\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7544427,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.antivirus\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.antivirus/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.antivirus/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.antivirus/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.antivirus/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouTube Studio\",\n \"appId\": \"com.google.android.apps.youtube.creator\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.creator\",\n \"icon\": \"https://play-lh.googleusercontent.com/SM1nwJaePNm9Q6vVgU0CvvmR1uozbZYU8ohKfBCIndZy0sSGtwmObhpBcUkTOqcyYg\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The official YouTube Studio app makes it faster and easier to manage your YouTube channels on the go. Check out your latest stats, respond to comments, upload custom video thumbnail images, schedule videos, and get notifications so you can stay connected and productive from anywhere.

FEATURES:
* Monitor channel and video performance with easy-to-use analytics
* Filter and respond to comments
* Get notifications when something important happens
* Update video details including thumbnail images, monetization settings, and schedule dates
* Manage playlists

PERMISSIONS NOTICE:
* Contacts (Get Accounts): Needed to allow you to log in to your account
* Storage: Needed to allow you to store your video thumbnail images.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.213656,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.youtube.creator\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.creator/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.creator/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.creator/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.creator/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Workday\",\n \"appId\": \"com.workday.workdroidapp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.workday.workdroidapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/YM9jT_ETnF1btReCKMYUwpFXBatqPKqifwehlX9_GvfEx5K7X-DANT9CBbaSQeMuxQ\",\n \"developer\": {\n \"devId\": \"Workday, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Workday%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Workday Mobile App gives you the tools, insights, and answers you need to maintain workplace productivity - all in one convenient place.

TOP FEATURES

The Workday app is the ultimate mobile solution that gives you instant access to nearly all your Workday tasks, from checking in to work and requesting time off to connecting with teammates and learning new skills.

- Get push notification reminders so you never forget important tasks
- Submit timesheets and expenses
- View your payslips
- Request time off
- Learn about your teammates
- Check in and out of work
- Learn new skills with training videos
- Find new internal opportunities at your organization through gigs and jobs

Plus HR and employee management features just for managers:

- Approve employee requests with a tap
- View team and employee profiles
- Adjust employee roles
- Manage payroll and request compensation changes
- Give performance reviews
- Use the hours tracker and view employee timesheets
- Browse interactive reports and dashboards

SIMPLE AND INTUITIVE

The Workday Mobile App is incredibly easy to use, organizing everything you need to do your best work in one intuitive app.

FLEXIBLE AND PERSONAL

Get quick access to the workplace tools, insights, and actions you need most, so you can manage your work life anywhere, any time.

SAFE AND SECURE

Lost or stolen device? Don’t worry – your account is protected by best-in-class Workday security and mobile-native technology like biometric authentication. Plus, because your information is stored in the cloud, not on your device, you can rest easy knowing that your data is not only secure, it’s always up to date.\",\n \"scoreText\": \"4.0\",\n \"score\": 4.046159,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.workday.workdroidapp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.workday.workdroidapp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.workday.workdroidapp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.workday.workdroidapp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.workday.workdroidapp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"AlfredCamera Home Security app\",\n \"appId\": \"com.ivuu\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.ivuu\",\n \"icon\": \"https://play-lh.googleusercontent.com/i9bg7JhvgRqNsvs3pULuKhVutUpTbFSeCbxF-gOIp3tdM1ucP5LYTBobmEDXPxQTpQ\",\n \"developer\": {\n \"devId\": \"Alfred Systems Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Alfred%20Systems%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"AlfredCamera is a free and reliable security camera app for your home, baby, and pets. Join more than 40 million families and use Alfred to care for your loved ones remotely. It’s a simple safety at your fingertips that keeps you enjoy peace of mind no matter you're at home or away.

PORTABLE VIDEO MONITOR
Finally being able to travel somewhere to enjoy the summer, beaches, and outdoor activities, you must not want to let your guard down when you're not at home. To make sure your hotel room is safe at all times, Alfred security camera provides you with the smart motion detector that will send you an instant alert when it finds an intruder. You can also scare the intruder away by immediately speaking through the walkie-talkie. Moreover, you can zoom in and use night vision (low-light filter) to capture as many details and use them as evidence to help identify the suspect.

HEALTH & SAFETY TRACKER WHEN RETURNING TO NORMALCY
Are you worried about your loved ones who may have been suffering from post-pandemic anxiety, yet still feel hesitant to embrace the normal lifestyle? Alfred home security camera can help you watch over your loved ones who are still ready to leave the pandemic bubble. By simply turning your old phones into security cameras, you can always keep an eye on the health and safety of your beloved families with real-time live tracking. Moreover, with remote calls, you can stay connected to ease their anxiety from anywhere. Enjoy Alfred's interactive technology which can simplify your lifestyle.

SECURITY CAMERA FOR THE SMARTPHONE AGE
People love Alfred! The all-in-one app provides more features (24/7 Live feeds, night vision/low-light filter, HD quality and more...) than a basic, expensive security camera. You can get live stream, smart intruder alert, night vision (low-light filter), walkie-talkie, and unlimited cloud storage to store, share, and playback your recorded videos.

FREE, STABLE, & RELIABLE
If you want a CCTV to keep an eye on your belongings, a baby monitor to look after your newborn, or a pet cam to entertain your lovely pets, AlfredCamera is your number one choice.

SUPER EASY TO SET UP
DIY your own home security camera in 3 minutes. No cost, no hard skills; just one creative idea! Alfred home security Camera is the easiest-to-install home surveillance system with professional-grade features, period.

ANYTIME, ANYWHERE
To defend your front door and backyard, you don’t even need a security guard! AlfredCamera will take care of what matters the most to you. Unlike traditional CCTV cameras or home surveillance cameras, you can put Alfred wherever you need to strengthen security. What's more, you can add or remove a camera whenever you like.

SMART, CONVENIENT, ECO-CONSCIOUS
First time choosing a CCTV camera? Still hoping to find good reviews on expensive baby monitor, pet cam, or IP camera? You can protect your home with a smarter solution. You don’t even need to buy a real CCTV camera, baby monitor, IP cam, or IP webcam.

Besides the cost of the equipment, these smart home appliances often charge a monthly fee. With home camera apps like Alfred, you can eliminate complicated installation, IP settings, and contracts. You only have to download the Alfred app and repurpose your old devices as a DIY IP camera or baby monitor: pure and simple.

The multi-functional home surveillance camera you can ever find: Free, reliable, versatile and easy to use. No hidden upfront costs or additional monitoring fees. Alfred is also an essential component of any home improvement or home automation project if you are interested in building a smart home or experimenting with Google Assistant.

Everyone is taking advantage of their unused phones by turning them into remote chat rooms, health trackers, portable hotel guards, or fitness devices. So why not use yours as a baby cam, nanny cam, pet cam, surveillance camera, webcam, or IP cam?

Some features of this app require Device Administrator permission.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7845874,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ivuu\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.ivuu/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.ivuu/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.ivuu/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.ivuu/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Little Caesars\",\n \"appId\": \"com.littlecaesars\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.littlecaesars\",\n \"icon\": \"https://play-lh.googleusercontent.com/vm8k4Rw_SWAqtHCB4d9neXaubDdiWAkNR7C_R974OvOJpOA6MnWN9Jkp8wVJVlbeWg\",\n \"developer\": {\n \"devId\": \"Little Caesar Enterprises, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Little%20Caesar%20Enterprises%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Little Caesars® has always been the world’s easiest way to pizza®. But with the Little Caesars app, we’ve made the easiest way even easier! Order pizza, pick up pizza (or have it delivered) and enjoy pizza. Sure, a simple concept — but we’ve made the process a snap, especially with our Pizza Portal® Pickup, which has really amped up convenience! It lets you order online and pick up from our portal locations in stores. Just punch in your confirmation code and boom, you’ve got your hands on your piping-hot cheesy dream. And if you’re the shy type, this is the way to go, because you can walk in and out without ever saying a word! (Another bonus? Nobody will ever know you ordered extra onions. Except us, of course…but our lips are sealed.) So don’t waste any time — use our Pizza Portal Pickup and skip that line! So…ya feeling hungry yet? Go ahead, download the app and treat yourself now!\",\n \"scoreText\": \"4.7\",\n \"score\": 4.668064,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.littlecaesars\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.littlecaesars/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.littlecaesars/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.littlecaesars/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.littlecaesars/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Ultra Cleaner\",\n \"appId\": \"com.superclean.booster\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.superclean.booster\",\n \"icon\": \"https://play-lh.googleusercontent.com/TwuoXbyYbAYjVLHdq9pwC0Lo1_-K4Uz7d-P7idBLe2k82Lp2Otk-w0babRHL592fQA\",\n \"developer\": {\n \"devId\": \"香港小熊信息技术有限公司\",\n \"url\": \"http://gplayapi.srik.me/api/developers/%E9%A6%99%E6%B8%AF%E5%B0%8F%E7%86%8A%E4%BF%A1%E6%81%AF%E6%8A%80%E6%9C%AF%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Ultra Cleaner is a professional cleaning & boosting program for Android, which has functions of Junk file Cleaner, memory booster, CPU cooling, notification cleaner and Battery saving.
How does Ultra cleaner work?
-\\u2028Junk file Cleaner,make the phone clearly.
-memory booster,make the phone more faster.
-CPU cooling,make the phone more faster.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5728154,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.superclean.booster\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.superclean.booster/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.superclean.booster/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.superclean.booster/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.superclean.booster/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"One Scanner - Earn Cash & Gift\",\n \"appId\": \"com.scanner.qr.barcode.rewards.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.scanner.qr.barcode.rewards.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/4_4bTMs7OAhDcLa_yzU6iyi_f_gYhVmmXiDJloq8pOdUHBAqEnGifx9WDl7wbXxwhTE\",\n \"developer\": {\n \"devId\": \"BerryKongStudio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/BerryKongStudio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"OneScanner is an all-in-one QR code or barcode scanner for earning cash and gift cards. On one hand, this QR code reader or barcode scanner instantly scans almost all types of QR codes and barcodes, including text, URL, ISBN (barcode), contacts, calendar, email, etc. On the other hand, the most amazing feature we have offered is that you can earn points after scanning a QR code or barcode, and redeem your points for a variety of beautiful gift cards that we offer in-app from popular brands including: Starbucks, Walmart, Target, Amazon, and more. One Scanner is the fastest, safest and free QR code and barcode reader and your best way of life.

One Scanner supports gift cards for point redemption:
• Starbucks gift card
• Walmart Gift Card
•Target gift card
• Amazon Gift Card
•Best Buy Gift Card
•eBay Gift Card
•Google Play Gift Card
• Burger King
• Uber
• Spotify

Key Features of One Scanner: QR Reader / QR Scanner
• Instant scanning of QR and barcodes
• Easily formulate with QR codes and barcodes
• Scan or read all standard 1D and 2D code types (including almost all QR codes and barcodes)
• QR code or barcode scan history
• Scan barcodes to compare prices (Barcode Scanner)
• Scan or read QR codes or barcodes in photos

QR code and barcode formats supported by QR reader/QR scanner:
• Link
• Contacts
• Barcode
• ISBN (Bar Code)
• Wi-Fi
• Word
• telephone number
• Email
• Short message

One Scanner is your best life assistant and lifestyle, download it now!\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6334496,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.scanner.qr.barcode.rewards.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.scanner.qr.barcode.rewards.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.scanner.qr.barcode.rewards.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.scanner.qr.barcode.rewards.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.scanner.qr.barcode.rewards.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Fitbit\",\n \"appId\": \"com.fitbit.FitbitMobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.fitbit.FitbitMobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/QhMCymTyxJbzRiwMBA-GYooS-nVKm3fHg2CSRyKHvhmC-e5vOibfST73y1MmScvtPw\",\n \"developer\": {\n \"devId\": \"Fitbit, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Fitbit%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Start a 90-day trial of Fitbit Premium for personalized guidance, customized health programs and 240+ video workouts you can do at home.

Say hello to one of the world’s leading apps for health and fitness. Use the Fitbit app on its own to join our community, track basic stats and stay motivated on your journey. Or, get a Fitbit tracker or smartwatch to see how your activity, workouts, sleep, nutrition and stress all fit together. Either way, you’ll find the information and inspiration you need to reach your goals—all in one place.

Use this app to track your day & progress over time

Find workouts, nutrition programs, meditation tracks, sleep tools & more

Connect with friends, start challenges & join an inspiring community

Set goals, earn achievement badges & celebrate milestones

Access innovative smartwatch apps & fresh clock faces

Works with all Fitbit trackers, smartwatches, scales & other Fitbit products



GET ACTIVE: See how small moves add up by using your smartphone to track steps and distance. Or pair with a Fitbit tracker or smartwatch to see all-day stats like steps, distance, calories burned, floors climbed and active minutes.



WORK OUT FROM HOME: Access free video and audio workouts that you can do on your time, right from your living room. You’ll find sessions for HIIT, cardio, strength, yoga and more. Plus, start a 90-day trial of Fitbit Premium to unlock 240+ workouts from popular brands like barre3, Daily Burn and POPSUGAR.



SLEEP BETTER: Discover how long and how well you’re sleeping, then improve your nightly routine with Fitbit’s innovative sleep tools—including a nightly Sleep Score, sleep goal setting, bedtime reminders and graphs that show your time in light, deep and REM sleep.



MANAGE STRESS: Listen to free audio tracks to lessen your stress and improve your mood. Use mindfulness to start your day a better way, find moments of calm and set intentions with meditation or get help falling asleep with stories and relaxing sounds.



EAT SMARTER: Keep your nutrition in check with easy-to-use tools to set goals, log food and water, track calories in and out and see if you’re getting enough protein, fat and carbs. For more personalized programs to help you reach weight and nutrition goals, try Fitbit Premium.



TRACK HEART RATE: Understand your overall health by using your watch or tracker to record your heart rate 24/7. In the app, find valuable data like resting heart rate trends, time spent in heart rate zones during workouts and a cardio fitness score.



JOIN A COMMUNITY: Find the support and encouragement you need to get inspired, stay accountable and keep things fun. The Fitbit app makes it easy to connect with friends, start activity challenges, read educational articles, get expert advice and share your journey with an uplifting community.





Fitbit Premium:

- Monthly and annual plans available that include habit-forming programs, audio & video workouts, and advanced insights.

- Subscription automatically renews unless auto-renew is turned off at least 24 hours before the end of the current period.

- Payment will be charged to your Google Play Account when or shortly after your trial or subscription expires, if applicable. Upon payment, users can see the cost of renewal in their emailed receipt or Play Store order history.

- Subscriptions may be managed by the user and auto-renewal may be turned off by going to the user's Account Settings after purchase.

- Any unused portion of a trial period, if offered, will be forfeited when the user purchases a subscription to that publication, where applicable.

- Fitbit Terms of Service: https://www.fitbit.com/legal/terms-of-service

- Fitbit Privacy Policy: https://www.fitbit.com/legal/privacy-policy



Learn more about Fitbit products and services at www.fitbit.com.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.1466875,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.fitbit.FitbitMobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.fitbit.FitbitMobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.fitbit.FitbitMobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.fitbit.FitbitMobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.fitbit.FitbitMobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Call Mirabel Encanto Fake Chat\",\n \"appId\": \"com.brunoprankcall.fakecall.fakecallerid.encantobrunoprank\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.brunoprankcall.fakecall.fakecallerid.encantobrunoprank\",\n \"icon\": \"https://play-lh.googleusercontent.com/HuadUwZTL-OS7VIQUfa4EJp7iyYsE8tJRAD7xGUqi-nM063iAee02mGmfAQdHE3aIA\",\n \"developer\": {\n \"devId\": \"Brovo developer\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Brovo%20developer\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Would you want to prank with friends, if yes then make a fake call Mirabel encanto and bruno encanto Prank Caller using this fake chat app. Receive call from bruno Mirabel encanto and surprise your friends and family.

Mirabel Encanto Fake Call

You can create prank calls and set incoming fake call from mirabel and enjoy. First of all set the time to receive Mirabel video call. Set a real voice of mirabel encanto when answering a call.

Fake Phone Call & Fun phone call

Customized your screen for incoming call by yourself. you can change background themes and color, 2 SIMs mode select character and night mode and then start prank caller.

Fun call & Bruno Encanto Fake call pranks

Get out from tough situation or prank friends, set the fake call. Make a fake caller id and save your self from awkward situation like annoying conversation.


Bruno Mirabel Fake Video Call

Create a Fake Call bruno encanto and Fake Chat with your phone without actually being call. You can do fake video call with bruno encanto and enjoy your time.

Bruno Prank Caller & Mirabel Fake chat

Great app for creating an excuse to escape a boring conversation and show people that you are talking with bruno mirabel disney encanto series.

With Fun phone call & Mirabel Encanto Fake Call you can received prank calls or fake caller with real voice of bruno and mirabel encanto and simulate a real video call of having Mirabel encanto.

Key Features:

Schedule a Mirabel Encanto fake call
Make fake chat and fake video call
Create Prank calls of bruno encanto
Set custom timer to receive Mirabel Encanto call
Easy to use with simple user interface
Received video calls & chat
Fake caller id free outgoing call & incoming call
schedule a prank calls on one tap
Fake video call Mirabel Encanto
All device supported
Fake chat with bruno encanto
Create fake dials using Mirabel Encanto prank call app
Fake Calling Apps For Free
Fake Phone Calls with Real Voices
Prank Caller Id & Fake Phone Call
Fake Mirabel Encanto Prank Call
Auto Incoming Fake Caller

if you are searching for fake video call with bruno encanto and fake chat. Then you are on the right place. so what are you waiting for download Mirabel Encanto fake call & bruno encanto fake chat app from google play store.

Prank call with Mirabel Encanto is a kind of fake caller, its like a prank caller and fun simulator to enjoy the boring time with your friends and family gathering. Mirabel Encanto Prank call app have no access to any user data.

Note:

If you like our Mirabel Encanto Prank caller app then give your feedback in review section or for any suggestion regard bruno encanto fake call app the we will be happy to add new feature to our bruno encanto fake caller app.

Thank for downloading Mirabel Encanto Fake vidoe call and fake chat app.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4660196,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.brunoprankcall.fakecall.fakecallerid.encantobrunoprank\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.brunoprankcall.fakecall.fakecallerid.encantobrunoprank/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.brunoprankcall.fakecall.fakecallerid.encantobrunoprank/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.brunoprankcall.fakecall.fakecallerid.encantobrunoprank/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.brunoprankcall.fakecall.fakecallerid.encantobrunoprank/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Messages\",\n \"appId\": \"com.google.android.apps.messaging\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.messaging\",\n \"icon\": \"https://play-lh.googleusercontent.com/OY4rxeNTPaHwyOTZ-RUooqJvPnO5QUYmQcw0dhD90Mu6UWItOSZfQv7ks_FscbBow0M\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Meet Messages, Google's official app for texting (SMS, MMS) and chat (RCS). Message anyone from anywhere with the reliability of texting and the richness of chat. Stay in touch with friends and family, send group texts, and share your favorite pictures, GIFs, emoji, stickers, videos and audio messages.
Chat features (RCS)
On supported carriers, you can send and receive messages over Wi-Fi or your data network, see when friends are typing or when they have read your message, share images and videos in high quality, and more.
Clean, intuitive, and comfortable design
Instant notifications, smart replies and a fresh new design make communicating faster and more fun. With dark mode, you can use Messages comfortably in low-light situations.
Easy sharing
Select or take pictures and videos directly from the app and share easily. You can even send audio messages to your contacts.
Richer conversations
Send audio messages, emoji, stickers, or your location. You can also send and receive payments with Google Pay.
Powerful search
Now you can find more of the content shared in your conversations: tap on the search icon and select a specific contact to see your messaging history with them and all the photos, videos, addresses or links you shared with each other.
Messages is supported on devices running Android™ 5.0 Lollipop and above. App also available on Wear OS\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1946473,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.messaging\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.messaging/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.messaging/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.messaging/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.messaging/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ibis Paint X\",\n \"appId\": \"jp.ne.ibis.ibispaintx.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/jp.ne.ibis.ibispaintx.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/QcfhlXm32JDnj3WM2-TSL78ad99x4slovX4OzCSLSPU3uRN-mGXpKyM_yeXiewhz0Lk\",\n \"developer\": {\n \"devId\": \"ibis inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/ibis%20inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"ibis Paint X is a popular and versatile drawing app downloaded more than 200 million times in total as a series, which provides over 15000 brushes, over 7600 materials, over 1000 fonts, 80 filters, 46 screentones, 27 blending modes, recording drawing processes, stroke stabilization feature, various ruler features such as radial line rulers or symmetry rulers, and clipping mask features.

*YouTube channel
Many tutorial videos on ibis Paint are uploaded to our YouTube channel.
Subscribe it!
https://youtube.com/ibisPaint

*Concept/Features
- A Highly functional and professional features surpassing that of desktop drawing apps.
- Smooth and comfortable drawing experience realized by OpenGL technology.
- Recording your drawing process as a video.
- SNS feature where you can learn drawing techniques from other users' drawing process videos.

*Features
ibis Paint has high functionality as a drawing app along with features of sharing drawing processes with other users.

[Brush Features]
- Smooth drawing at up to 60 fps.
- Over 15000 kinds of brushes including dip pens, felt tip pens, digital pens, air brushes, fan brushes, flat brushes, pencils, oil brushes, charcoal brushes, crayons and stamps.
- Various brush parameters such as starting/ending thickness, starting/ending opacity, and initial/final brush angle.
- Quick sliders that allow you to quickly adjust brush thickness and opacity.
- Real time brush previews.

[Layer Features]
- You can add layers as many as you need with no limit.
- Layer parameters that can be set to each layers individually such as layer opacity, alpha blending, adding, subtracting, and multiplying.
- A handy clipping feature for clipping images, etc.
- Various layer commands such as layer duplication, import from the photo library, horizontal inversion, vertical inversion, layer rotation, layer moving, and zooming in/out.
- A feature for setting layer names to distinguish different layers.

*About ibis Paint purchase plan
The following purchase plans are available for ibis Paint:
- ibis Paint X (free version)
- ibis Paint (paid version)
- Remove Ads Add-on
- Prime Membership (Monthly plan / Yearly plan)
There is no difference in features other than the presence or absence of advertisements for the paid version and the free version.
If you purchase the Remove Ads Add-on, the ads will not be displayed and there will be no difference from the paid version of ibis Paint.
In order to use more advanced functions, the following Prime Membership (Monthly plan / Yearly plan) contracts are required.

[Prime Membership]
A prime member can use the prime features. You can try it free for the 30 days at the time of the first purchase. A prime member can use the following features and services
- 20GB of cloud storage capacity
- Prime Materials
- Prime Canvas Papers
- Prime Fonts
- Tone Curve filter
- Gradation Map filter
- Levels Adjustment filter
- Replace Color filter
- Clouds filter
- Reordering artworks in My Gallery
- No advertisements displayed
* After you become a prime member with the 30 days free trial, if you do not cancel your “Prime Membership” at least 24 hours before the last day of the free trial, your “Prime Membership” will be automatically renewed and you will be charged for the automatic renewal.
* We will add premium features in future, please look out for them.

*On Data Collection
- Only when you are using or going to use SonarPen, the app collects audio signal from microphone. The collected data is only used for communication with SonarPen, and is never saved nor sent to anywhere.

*Questions and support
Questions and bug reports in reviews will not be responded to, so please contact ibis Paint support.
https://ssl.ibis.ne.jp/en/support/Entry?svid=25

*ibisPaint's terms of service
https://ibispaint.com/agreement.jsp\",\n \"scoreText\": \"4.4\",\n \"score\": 4.417797,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=jp.ne.ibis.ibispaintx.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/jp.ne.ibis.ibispaintx.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/jp.ne.ibis.ibispaintx.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/jp.ne.ibis.ibispaintx.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/jp.ne.ibis.ibispaintx.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"HP Print Service Plugin\",\n \"appId\": \"com.hp.android.printservice\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.hp.android.printservice\",\n \"icon\": \"https://play-lh.googleusercontent.com/kfg71sF9VqFDT9eQVjDe62PPgEZYSX3e3la5C6ESnC9dZ-ND1p0lzoDYI7AMyrjO4fA\",\n \"developer\": {\n \"devId\": \"HP Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/HP%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The HP Print Service Plugin is the only print driver that you'll need to easily print documents, emails and pictures from print-supported applications to a variety of HP Printers, including HP OfficeJet, HP LaserJet, HP DesignJet, HP Photosmart, HP DeskJet and HP Envy.

You can discover and print to HP printers that are:
• Connected to the same network as your mobile device
• Broadcasting a Wi-Fi Direct network
• Connected to the mobile device via a USB On-the-Go cable

Just select Print or Share to PSP when you need to print. Just tap the menu button to reveal the print option. Location of menu button may vary depending on your model of Android™ device.

The HP Print Service Plugin simplifies printing on your Android™ Lollipop™ (v5.0) and newer devices. If you use Android 6 (Marshmallow) or earlier, you might need to enable the HP Print Service Plugin in your device's settings

For more information on using the HP Print Service Plugin or details on supported HP Printers, go to:
https://support.hp.com/us-en/document/c04024231/?openCLC=true

For more information on Mobile Printing in general, go to:
https://www.hp.com/go/mobileprinting\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2485213,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hp.android.printservice\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.hp.android.printservice/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.hp.android.printservice/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.hp.android.printservice/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.hp.android.printservice/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"LightInTheBox Online Shopping\",\n \"appId\": \"com.lightinthebox.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.lightinthebox.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/CKI2SS8uiZblA_p0rgFcr3gHRw3FbSwfVYrr2GgsOWWSkvPoYDCjrW2wrRDcZ5C2Cg\",\n \"developer\": {\n \"devId\": \"Light In The Box Limited\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Light%20In%20The%20Box%20Limited\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The latest LightInTheBox App can easily take you through a fantastic shopping journey. We offer more than a million trending items. We have incredibly low prices. Every day, we add new products to our vast inventory. Also, we often have sales promotion with great discounts. Over 10+ million people from 200+ countries have already made satisfactory orders from us.

Come join us! LightInTheBox is the official App for LightInTheBox.com, a listed New York Stock Exchange global online shopping platform company (NYSE: LITB). With the LightInTheBox App’s intuitive interface, you can tap into our amazing line of products to purchase items on the go.

Features:
• 10% OFF for new users — limited offer.
• Earn additional 3% cash rewards on all orders.
• Check out the latest products and sales. • Shop millions of items with the best deals.
• Join our community, shop the latest looks from others and share your outfits!
• Add products to My Favorites on the go.
• Read customer reviews for insights into products.
• Get full access to your order history.
• Pay for your purchases using PayPal, Credit/Debit Card, Western Union and Wire Transfer.

All purchases made on this App are routed through LightInTheBox's secure servers, just as they are on the website. So your financial information is protected at all time.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.516495,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.lightinthebox.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.lightinthebox.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.lightinthebox.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.lightinthebox.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.lightinthebox.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Best Buy\",\n \"appId\": \"com.bestbuy.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.bestbuy.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/u6dX8UIBQKvzQNYcBbWNjdVPrctiOmZgvO89r2mEysm-HpM7UXFUxj8W1zoSvFh_myQ\",\n \"developer\": {\n \"devId\": \"Best Buy, Inc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Best%20Buy%2C%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Now the Best Buy app is more than just great hand-held shopping.

It’s your fast, feel-good companion that can help you have more convenient and possibly even cooler Best Buy experiences, whether you’re at home, on your way to pick up, or shopping with us in-store.

Ready when you are. Whether you want to pick up in store or have your order delivered to your car, use the app to let us know you’re on the way, and we’ll have it ready.

Imagine the possibilities. Use the AR feature to imagine the perfect TV for your home theater.

We’ve got tech surprises in all sizes. View ratings and 5-star reviews as you browse our huge selection of today’s top tech and toys.

Get all the details. Browse products available now at stores near you. Track orders and deliveries. Scan and shop. Also find nearby service options and store details - including popular times to shop.

And of course, find all the best deals right here.

• Top Deals
• Deal of the Day
• Deals just for you
• Open Box steals and more!\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9082727,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bestbuy.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.bestbuy.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.bestbuy.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.bestbuy.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.bestbuy.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Kroger\",\n \"appId\": \"com.kroger.mobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.kroger.mobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/C9UURY1bM4vXhRmoL34MHFSfKSpvCZRt4gs0cXDmteWQVTA9B0HQ4NdOt_VPpa3ZttQ\",\n \"developer\": {\n \"devId\": \"The Kroger Co.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/The%20Kroger%20Co.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Looking for a faster, easier, more rewarding shopping experience? Save time and money with the Kroger app! It puts convenience, savings and rewards at your fingertips. Simply download the app, create an account and register your Kroger Shopper’s Card to access all these great benefits:

- Shop Pickup or Delivery right from the app!

- Easily build your online shopping list, and use it to shop in-store or to place your online order.

- View your Weekly Ads and quickly add sale items or specials to your shopping list.

- Load digital coupons directly to your Shopper’s Card and use them to save on items from your shopping list.

- Get even more savings when you choose items from our Smart Suggest feature.

- Refill your Kroger Pharmacy prescriptions directly from your phone or tablet. Just type in your prescription number, select your Pharmacy and schedule a convenient pickup time.

- Check your fuel points.

- Use our locator to find the closest Kroger store or fuel center.

- View your purchase history. Use it to create standard orders that will save you time.

- Save BIG with exclusive promotions, personalized offers and bonus rewards.

To use the Kroger app, you'll need a Kroger digital account. You can register for your account and link your Shopper’s Card through the app. If you don't have a Shopper’s Card, you can create one when you register to access all of these savings and rewards!\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3776836,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.kroger.mobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.kroger.mobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.kroger.mobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.kroger.mobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.kroger.mobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Turo\",\n \"appId\": \"com.relayrides.android.relayrides\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.relayrides.android.relayrides\",\n \"icon\": \"https://play-lh.googleusercontent.com/bg1O4i_B6JvGl8bRAs0XIjiKkP1vShLrrXfWjg0aKqQk1uFvn_4iQS5V9_V05i3VEoA\",\n \"developer\": {\n \"devId\": \"Turo Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Turo%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Turo is the world’s largest peer-to-peer car sharing marketplace where you can book any car you want, wherever you want it, from local hosts across the US, Canada, and the UK. Whether you're flying in from afar or looking for a car down the street, searching for a rugged truck or something smooth and swanky, guests can take the wheel of the perfect car for any occasion, while hosts can take the wheel of their futures by building an accessible, flexible, and scalable car sharing business from the ground up.

Whether it’s a truck to help on moving day, a swanky exotic for a luxurious weekend away, or a classic cruiser for a picture-perfect road trip, with more than 600,000 vehicles listed worldwide, Turo lets you find the perfect vehicle for your next adventure.

Turo offsets 100% of our estimated global carbon emissions, so you can rest easy building your businesses and satisfying your wanderlust knowing that our carbon footprint is accounted for.

Browse endless options
Choose from a totally unique selection of cars and find the perfect one for any occasion. Book a comfy minivan for a family road trip, a pickup truck for moving, something small for getting around town, or an efficient hybrid car to go run errands.

Book cars directly from local hosts
Book cars shared by car owners in your neighborhood or wherever you’re going, starting from $25/day. With car sharing on Turo, you get to enjoy a personalized service from local hosts sharing their own personal cars.

Discover new places
Find cars on Turo in every metro area and in thousands of cities across the US, Canada, and the UK. Treat yourself to a luxury car while vacationing in Las Vegas or Miami, book a minivan while family’s in town visiting, or find a rugged 4x4 for a winter road trip to the mountains.

Skip the rental car counter
Have your car delivered and save time and hassle by picking it up near your airport, hotel, or vacation rental. Meet your host at the curb or safely access cars through a variety of contactless check-in options.

Embrace the open road
Going on a vacation or business trip? Don't use a ride sharing app, carpool with strangers, or rent boring rental cars — upgrade your travel plans and book the perfect car on Turo so you have the freedom to cruise around on your own schedule.

Start your own car sharing business
Share your car and turn your depreciating asset into an earnings engine. Car owners can earn money by sharing cars when they’re not using them, and can build a car sharing business that’s scalable and flexible.

Insurance included
You’re covered with $750,000 in liability insurance from Travelers Excess and Surplus Lines Company backing each trip. Plus, choose from an array of protection plans that include varying levels of reimbursement for physical damage.

Upgrade to car sharing
Unlike rental car companies, Turo is a peer-to-peer car sharing marketplace where you can book cars directly from trusted local car owners. Turo does not own any cars — when you book a car on Turo, you get a personalized service and experience from hosts who share their own personal cars and set their own prices, discounts, vehicle availability, and delivery options.

Note: Continued use of GPS running in the background can dramatically decrease battery life.\",\n \"scoreText\": \"4.9\",\n \"score\": 4.9040847,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.relayrides.android.relayrides\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.relayrides.android.relayrides/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.relayrides.android.relayrides/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.relayrides.android.relayrides/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.relayrides.android.relayrides/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Slack\",\n \"appId\": \"com.Slack\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.Slack\",\n \"icon\": \"https://play-lh.googleusercontent.com/lV1DhBeSuikQy6fLPhgfNHUxDqterNlur4oB1Z_Yr0NOSiWwQOD0g8gWCjVf1mmMuw\",\n \"developer\": {\n \"devId\": \"Slack Technologies Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Slack%20Technologies%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Slack brings team communication and collaboration into one place so you can get more work done, whether you belong to a large enterprise or a small business. Check off your to-do list and move your projects forward by bringing the right people, conversations, tools, and information you need together. Slack is available on any device, so you can find and access your team and your work, whether you’re at your desk or on the go.

Use Slack to:
• Communicate with your team and organize your conversations by topics, projects, or anything else that matters to your work
• Message or call any person or group within your team
• Share and edit documents and collaborate with the right people all in Slack
• Integrate into your workflow, the tools and services you already use including Google Drive, Salesforce, Dropbox, Asana, Twitter, Zendesk, and more
• Easily search a central knowledge base that automatically indexes and archives your team’s past conversations and files
• Customize your notifications so you stay focused on what matters

Scientifically proven (or at least rumored) to make your working life simpler, more pleasant, and more productive. We hope you’ll give Slack a try.

Stop by and learn more at: https://slack.com/

Having trouble? Please reach out to feedback@slack.com\",\n \"scoreText\": \"3.8\",\n \"score\": 3.765638,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.Slack\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.Slack/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.Slack/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.Slack/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.Slack/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"State Farm®\",\n \"appId\": \"com.statefarm.pocketagent\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.statefarm.pocketagent\",\n \"icon\": \"https://play-lh.googleusercontent.com/Pu9Bu1h13FKD5zemS_SHBFDCGLfGw-0RA3yPSMOcWro4Mn0oZ71k_yEZHA4mlnJQ3Ndn\",\n \"developer\": {\n \"devId\": \"State Farm Insurance\",\n \"url\": \"http://gplayapi.srik.me/api/developers/State%20Farm%20Insurance\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With the State Farm® mobile app, you can manage your insurance and other products, request roadside assistance, file and track claims, and much more. Just another way we’re here to help life go right.®

View and manage your insurance policies.
•\\tQuickly pay your insurance bill - even with Google Pay
•\\tView your auto insurance ID card and add it to G-Pay
•\\tView your insurance policies and coverage details

Here to help when you have a claim.
•\\tFile a vehicle, property or vehicle glass claim
•\\tTrack the status of your claim
•\\tGet assistance with tire changes, dead batteries, stuck vehicles and more
•\\tSearch for repair facilities

But wait, there’s more!
•\\tView details of your investment products
•\\tPersonalized reminders and notifications when you login
•\\tFAQs available in the app when you need them
•\\tLearn about our other products\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6613617,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.statefarm.pocketagent\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.statefarm.pocketagent/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.statefarm.pocketagent/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.statefarm.pocketagent/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.statefarm.pocketagent/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"BandLab – Music Making Studio\",\n \"appId\": \"com.bandlab.bandlab\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.bandlab.bandlab\",\n \"icon\": \"https://play-lh.googleusercontent.com/wfWpJxIMDymGBN2IxIrHjFqS1HD-JZbaLYO5d1Vly2yCtKLUiiDz38LxB3dMh8L1WTA\",\n \"developer\": {\n \"devId\": \"BandLab Technologies\",\n \"url\": \"http://gplayapi.srik.me/api/developers/BandLab%20Technologies\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"BandLab is the best free music recording and leading social music creation platform with more than 50 million users worldwide.

BandLab lets you make and share music, no matter your skill level or background. Our multi-track Studio is a music maker that lets you record, edit and remix your music. Make beats, add creative effects, use loops and samples from our royalty-free sounds packs from genres like EDM, dubstep, garage, hip-hop, house, rock, rap, and more.

There are no limits to how much music you can create. With unlimited cloud storage and accessibility across all devices, you can access the music you created on your phone from your desktop browser. Music making is everywhere.

With BandLab’s social networking features, you can find new friends, connect with collaborators or start a band with fellow musicians, guitarists, beatmakers, rappers, and more – no audition needed! Creator Connect matches you to potential beat makers, producers or DJs who share your music tastes and inspirations.

BandLab is more than just a music maker, beat maker, recording app or song recorder. You can discover millions of tracks made by artists and DJs, create personalized playlists and even watch live streams of music performances from top creators.

BandLab is 100% FREE to use. No subscription fees, paywalls or limits to your experience. Download the BandLab app and be a music maker today!


► FEATURES:

*NEW* Sampler – A new tool for you to create custom instruments. Make a new Sampler Kit by recording sounds you hear in the world around you, or by selecting samples from over 15,000 royalty-free sounds provided by BandLab, or simply import your own sounds. You can even customize each sample to get just the sound you want. Musical creativity is limitless with the Sampler.

16-Track Studio – This is where you make music – the Studio is a multi-track digital audio workstation (DAW) in your pocket. Use it as an audio recording app, beat maker, audio editor and so much more. You are a music maker anytime, anywhere.

330+ Virtual MIDI Instruments – Need 808s for your beat? Synthesizers for your lead lines? How about the sitar?! We’ve got a huge variety of Virtual MIDI instruments you can make music with, all within an app that fits in your pocket.

180+ Vocal/Guitar/Bass effect presets – Give your tracks that extra kick with world-class effects with real-time monitoring. From ambient sounds to crazy modulations, there’s something for everyone to get creative.

Looper – Anyone can be a beat maker no matter your skill level. Make beats instantly from a huge library of loops, add some synth or reverb, or just freestyle your way to a whole new mixtape while on the go.

Mastering – Get your tracks ready for distribution. Upload your song or recording and let our built-in mastering work its magic. Supports mp3 and other formats.

Video Mix – Create expressive video clips, whether you’re a rapper freestyling over a beat or a songwriter laying down a hot solo. Jazz up your video with world-class effects!

Explore – Not in the mood to create? No problem! Let BandLab be a source of entertainment as you explore and get inspired by new artists, genres, and collections curated just for you.

Creator Connect – Looking for a beat maker, producer, or singer? Find like-minded creators just around the corner or halfway across the world! Just fill out your profile and we'll match you to potential collaborators who share your musical taste and inspiration.

Tuner and Metronome – The essential audio tools for the modern music maker and producer so you never go out of beat or tune.

Remix Tracks – Need inspiration to start a track? 'Fork' a public track that any creator has shared to make your own beat and remix.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5217533,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bandlab.bandlab\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.bandlab.bandlab/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.bandlab.bandlab/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.bandlab.bandlab/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.bandlab.bandlab/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Here Comes the Bus\",\n \"appId\": \"com.synovia.herecomesthebus\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.synovia.herecomesthebus\",\n \"icon\": \"https://play-lh.googleusercontent.com/wf9S1FrHdkAeYQs-zHMI6ThfUkow9fxrwUrtehNevjLt7fAv5Y4F0rxpRfPNqToqvg\",\n \"developer\": {\n \"devId\": \"Synovia Solutions LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Synovia%20Solutions%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Notice: In order to use the app, your school district must have a contract with Synovia Solutions and make Here Comes the Bus available to parents. Please contact your school district or Synovia Solutions for more information, including applicable costs.

Here Comes the Bus® is an easy-to-use app that lets you view the real-time location of your child’s bus on your smartphone, tablet or computer.

With Here Comes the Bus, you can send your child to the bus stop at just the right time, helping to avoid missed buses or long waits in freezing temperatures, pouring rain, the hot sun or rush-hour traffic.

KEY FEATURES:

Find your bus quickly and easily
See the exact location of your child’s school bus using your own customizable map.

Access arrival & departure info
Confirm your child’s bus has arrived at the bus stop and at school, both before and after school.

Get updates via email or push notification
Be notified when the bus is within five minutes of your stop, has a schedule change and more.

Track all of your children
Have children that ride separate buses? Here Comes the Bus lets you keep tabs on each one.

Know your privacy is protected
To use Here Comes the Bus, parents must obtain a private ID number, which grants them access to their child’s bus only.\",\n \"scoreText\": \"3.0\",\n \"score\": 2.987158,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.synovia.herecomesthebus\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.synovia.herecomesthebus/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.synovia.herecomesthebus/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.synovia.herecomesthebus/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.synovia.herecomesthebus/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Slides\",\n \"appId\": \"com.google.android.apps.docs.editors.slides\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.slides\",\n \"icon\": \"https://play-lh.googleusercontent.com/DG-zbXPr8LItYD8F2nD4aR_SK_jpkipLBK77YWY-F0cdJt67VFgCHZtRtjsakzTw3EM\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Create, edit, and collaborate on presentations from your Android phone or tablet with the Google Slides app. With Slides, you can:

- Create new presentations or edit existing ones
- Share presentations and collaborate in the same presentation at the same time
- Work anywhere, anytime - even offline
- Add and respond to comments
- Add and rearrange slides, format text and shapes, and more
- Present straight from your mobile device
- Never worry about losing your work – everything is saved automatically as you type
- Make beautiful slides, instantly - with smart suggestions
- Present slides to video calls - scheduled meetings will automatically appear
- Open, edit, and save PowerPoint files

Google Slides is part of Google Workspace: where teams of any size can chat, create, and collaborate.

Google Workspace subscribers have access to additional Google Slides features, including:
- Collaborating on a single presentation online with your business partner, your whole team, or external contacts. You control who gets permission to edit, view, or just add comments.
- Starting from scratch or expediting the process by choosing a template. You can enhance your presentations with videos, images, drawings, and smooth transitions.
- Working across PCs, Macs, mobiles, and tablets—View or even present your slides from your phone or tablet, so you always have the option to practice your presentation up until the last minute.

Learn more about Google Workspace: https://workspace.google.com/products/slides/

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/

Permissions Notice
Calendar: This is used to join video calls from calendar invites.
Camera: This is used for camera mode in video calls and to insert images taken with the camera.
Contacts: This is used to give suggestions of people to add to files and share with.
Microphone: This is used to transmit audio in video calls.
Storage: This is used to insert images and to open files from USB or SD storage.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0594697,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.docs.editors.slides\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.slides/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.slides/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.slides/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.slides/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"testery - earn money\",\n \"appId\": \"de.empfohlen\",\n \"url\": \"http://gplayapi.srik.me/api/apps/de.empfohlen\",\n \"icon\": \"https://play-lh.googleusercontent.com/YLkvgZgB-vkugb0xj6Wi4MrxP37ULDc4UsYoARanNtvK5s0U6Ppju_eSCcynUnhd9EY\",\n \"developer\": {\n \"devId\": \"aestimium GmbH\",\n \"url\": \"http://gplayapi.srik.me/api/developers/aestimium%20GmbH\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Earn money as an online tester? As often and whenever you want?

Join Germany's largest platform for paid online jobs and join over 3,000,000 online testers.

After signing up for free, you'll immediately have access to countless app tests, game tests, online surveys, and other product tests.

- Earn over $800 directly after download, whether on the go or from the comfort of your home, maximum flexibility guaranteed.
- Choose from the largest assortment in the German-speaking area, orders that fit you exactly.
- You will be regularly invited to the latest product, website, and app tests.
- Orders with multi goals allow you to achieve higher earnings through continuous testing.
- Fast and secure payout: Get paid within 24 hours.
- Upgrade to a premium tester and earn exclusive access to higher-paying assignments.
- Tested, Verified, Recommended! We value authenticity and trustworthiness. Not for nothing we are recommended by Verbraucherschutz.de. In addition, recommended.de is certified with the TÜV - eKomi rating of 4.3/5.\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9952078,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=de.empfohlen\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/de.empfohlen/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/de.empfohlen/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/de.empfohlen/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/de.empfohlen/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"BAND - App for all groups\",\n \"appId\": \"com.nhn.android.band\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.nhn.android.band\",\n \"icon\": \"https://play-lh.googleusercontent.com/92AY78SXqDEtztpNoCsHRoAbajB-6OmGaRYA103OsvD_D6Q1u0HVkT6mNt7egXovaw\",\n \"developer\": {\n \"devId\": \"NAVER Corp.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/NAVER%20Corp.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Organize your group on BAND! It’s the perfect group communication app, with features like the Community Board, Shared Calendar, Polls, To-Do Lists, Private Chat & much more!


BAND is BEST for:

● Sports Teams – Keep track of game days and team practices with the Calendar, send quick notifications about canceled practices, and share team videos and photos, all in one place.

● Work/Projects - Share files and keep everyone in the loop with the community board. Have a quick group call with remote teams. Hold everyone accountable with shared to-do lists.

● School Groups - Plan all your school events easily with the group Calendar. Use Polls to plan activities and food options. Send group messages to keep everyone updated.

● Faith Groups - Organize activities with weekly notices and event RSVPs. Support each other throughout the week by privately sharing prayer requests through chat.

● Gaming Clans and Guilds - Set up a raiding schedule with the group calendar and share important information about any game with all your members. Use multiple chat rooms to find groups, manage recruitment and share strategies.

● Family, Friends, Communities - Stay connected with your family and friends. BAND also has Public groups! Use the Discover feature to find communities with similar interests.


Why BAND?

BAND is the best way to stay connected with your group! BAND is trusted by group leaders as the Official Team Communication App for Varsity Spirit, AYSO, USBands, and Legacy Global Sports.

● Be social & stay organized in the same place
Community Board / Calendar / Poll / Group File Sharing / Photo Album / Private Chat / Group Call

● Create or join a space that meets your group’s unique needs
Adjust privacy settings (secret, closed, public), control notifications, manage members (admin & co-admins), assign privileges, and make a vanity URL or home cover design dedicated to your group. Customize your group and use it how you want to!

● Accessibility
You can chat wherever you are. BAND can be used on any device including your phone, desktop, or tablet by going to http://band.us.
We value your feedback! Send us your feedback and/or suggestions so we can make BAND better for you & your groups.


Help Center: http://go.band.us/help/en
Facebook: www.facebook.com/BANDglobal
Youtube: www.youtube.com/user/bandapplication
Twitter: @BANDtogetherapp @BAND_Gaming
Instagram: thebandapp
Blog: blog.band.com\",\n \"scoreText\": \"4.4\",\n \"score\": 4.403893,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.nhn.android.band\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.nhn.android.band/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.nhn.android.band/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.nhn.android.band/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.nhn.android.band/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Fancy Battery: Booster Cleaner\",\n \"appId\": \"fancyclean.antivirus.boost.applock\",\n \"url\": \"http://gplayapi.srik.me/api/apps/fancyclean.antivirus.boost.applock\",\n \"icon\": \"https://play-lh.googleusercontent.com/egVg9ABMCtx2ofiv2z1PUHMwtGgl6wrTD6JrEa6_to3ZGo6P72KRpXk-ghaVAD6OYw\",\n \"developer\": {\n \"devId\": \"Fancy Mobile Apps\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Fancy%20Mobile%20Apps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Fancy Battery Saver gives you better battery life, and Fancy Battery is also a fast, light & powerful Android antivirus, phone cleaner, and booster app. It can remove viruses, boost phone memory, and clean storage space with simply one tap.

Fancy Battery can also add a password to any app.

Fancy Battery phone cleaner highlight features
🌟 Smart phone cleaner for Android – intelligent junk cleaner engine & speed cleaners
🐞 Virus Cleaner - Clean up viruses fast and easily from your device
⚡ Fast phone cleaner and booster – one tap boost & auto clean phone memory and storage space
🗑 Cache Junk cleaner - Remove any garbage files that slow device speed and RAM usage
💎 Power boost your memory – cleaning junk files & optimize storage in depth
🔒 App Lock - Lock app with a password and pattern to protect your privacy
🌿 Notification Cleaner – Arrange & clear up annoying app notifications to a clear notification bar
🔋 Battery Saver - Save battery power and extend battery life by hibernating running apps
📡 Network Analysis - Monitor apps that are consuming your mobile traffic and hibernate them with one touch
🌁 Similar Photo Clean – One tap to scan & auto clean similar and duplicated junk photos on your device

Clean your phone powerfully
⭐ Clean apps useless – the App Manager batch uninstall apps of less usage or use too much space
⭐ One tap phone cleaner – easy-to-use cache cleaner, memory cleaner, etc.
⭐ Memory storage cleaner – phone memory cleaner boost Android device & clear space
⭐ Clean cache – clear system cache, AD cache & clean apps’ cache junk files
⭐ Obsolete APK cleaner – clean up the already installed APK files on your device
⭐ Big File Cleaner – list all big files for you to clean or keep
⭐ WhatsApp Cleaner – clean WhatsApp junk professionally

Professional Antivirus
🔰 Antivirus for Android - Provide the malicious file scan and removal with the professional Antivirus engine
🔰 Virus Scan - Fully scan virus files to protect the mobile phone security
🔰 Virus Removal - Remove viruses to protect your phone in all aspects
🔰 Virus Cleaner - Deep cleaning of viruses to protect your privacy
🔰 Virus Protection - Real-time protection against virus intrusion with virus cleaner
🔰 Malware Scan & Remove - Scan and remove not only viruses but also malware that do harm to your phone, like stealing your information

Speed up your phone easily
✔ 1 tap boost for slow phone – fast clean phone junk & speed up phone with 1 tap
✔ Storage Cleaner – optimizer for phone memory space & effective memory cleaner
✔ Clean RAM – RAM cleaner & RAM booster to clean phone RAM & speed phone
✔ Cleaner Boost – advanced phone speed boost that cleans phone junk thoroughly
✔ Save Battery – one tap to save battery and charge fast

Fancy Battery phone cleaner provides more powerful Android utilities
⚒️ App Manager for Android with phone app cleaner to clean app
❄️ CPU Cooler for Android that stops overheating apps & settings
🌐 Security Browser which protects browser history and privacy
📋 Clipboard Cleaner which cleans sensitive clipboard history
🎮 Game Booster speeds up your game playing

This app uses the Device Administrator's permission. It is used to prevent the app from being uninstalled to avoid AppLock not working to avoid user's privacy leaking. FancyBattery will NEVER make any change to your device.

Any issues, please let us know,
getfancyapps@gmail.com\",\n \"scoreText\": \"4.8\",\n \"score\": 4.773979,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=fancyclean.antivirus.boost.applock\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/fancyclean.antivirus.boost.applock/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/fancyclean.antivirus.boost.applock/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/fancyclean.antivirus.boost.applock/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/fancyclean.antivirus.boost.applock/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Instacart: Earn money to shop\",\n \"appId\": \"com.instacart.shopper\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.instacart.shopper\",\n \"icon\": \"https://play-lh.googleusercontent.com/RTOW09IpH5OqBg6ct474zajUTiSEH07-I_B2Vf5OshxHRP8Og5hnG8YkzCp_5ieubQ\",\n \"developer\": {\n \"devId\": \"Instacart\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Instacart\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Earn money by grocery shopping in your spare time and help those who need it most by becoming an Instacart Shopper or driver.

This is the simple way to earn money just by grocery shopping for others! As a personal shopper, you go to the grocery store like normal, except you get paid to shop for others in your local community. Or you can even apply for an Instacart driver role and get paid to deliver food within your neighborhood.

How Instacart Shopper makes it easy for you to apply, shop and earn money grocery shopping:

SHOP FOR GROCERIES AND BECOME A HOUSEHOLD HERO - From families to seniors, make someone's day, every day by delivering groceries and essentials when they need them the most.
FLEXIBILITY TO MEET YOUR NEEDS - Earn extra cash with Instacart Shopper while balancing work and life. Shop for food and/or deliver on your own schedule.
CHOOSE YOUR PERSONAL PATH - Be your own boss or develop a career path as an employee — it’s up to you. Get started as a full-service shopper and shop and deliver fresh groceries to customers’ doors, or sign up as an in-store shopper and shop for groceries in-store, working with a great team and growing your career with Instacart.
GET PAID FAST- Get paid weekly. Full service shoppers cash out every day with Instant Cashout.

Apply for a job with Instacart Shopper and you can work whenever it suits you with no set hours or days - that means you can shop as much or as little as you want. From becoming a personal shopper or an Instacart driver you can earn extra cash for helping somebody do their food shopping - it’s really that simple.

Download the Instacart Shopper app to start shopping for food and earning a little extra cash while you do it. Start your Instacart application & apply today!\",\n \"scoreText\": \"4.2\",\n \"score\": 4.223697,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.instacart.shopper\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.instacart.shopper/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.instacart.shopper/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.instacart.shopper/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.instacart.shopper/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Citi Mobile®\",\n \"appId\": \"com.citi.citimobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.citi.citimobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/UQXR3wgk9MFKyRW4II0RPWAFAT0LHOO0d1QDUI4_oy3JN9LEcMH1Sx8b-toXwh486bg\",\n \"developer\": {\n \"devId\": \"Citibank N.A.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Citibank%20N.A.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Simpler
All Mobile Account*: Open a checking or savings account right from the app without setting foot in a bank branch
Fast Navigation: Quickly get to your favorite features with an intuitive navigation menu and smart shortcuts
Card Replacement: Request a new card if your original is lost, stolen or damaged
Citi Mobile® Snapshot: Quickly review key account info – without having to sign in every time
Zelle®: A fast, fee-free way within the Citi Mobile App to pay and easily split payments with people you trust.**
Mobile Check Deposit: Quickly and easily deposit checks from your mobile device
Find an ATM: Easily locate one of more than 60,000 fee-free ATMs in the U.S near you
Account Information: View your statements, check balances and recent activity
Make same-day or scheduled payments easily

Smarter
Aggregation*: Link virtually all your bank accounts, credit cards and investment accounts for a more holistic financial view to managing your finances
Spending insights*: Track your spending habits and trends across your accounts
Bill management*: View and manage your bills, and recurring payments in one place
FICO® Score : Citi credit card customers can view their FICO® Score for free
Make payments including automatic payments, and transfers and manage payees
Dispute credit card transactions if ever needed and track the status
Stay informed with Account Alerts: Choose the alerts you want and even when you want them
Change your credit card due date: Choose the beginning, middle, or end of a month
Secure
Citi® Quick Lock: Lock or unlock your lost or misplaced card
PIN Reset: Reset your debit card PIN from your mobile device
Enable Fingerprint Authentication for a fast way to access your account
* Features are available today on a limited basis.

**Zelle and the Zelle related marks are wholly owned by Early Warning Services, LLC and are used herein under license.

Citi’s Mobile App has been certified by J.D. Power for providing “An Outstanding Mobile Credit Card Experience” for customers.”
J.D. Power 2019 Mobile App Certification Program recognition is based on successful completion of an audit and exceeding a customer experience benchmark through a survey of recent servicing interactions. For more information, visit jdpower.com/awards.

Your trust and confidence in how we collect, use, and share information about you is a priority. Review our privacy notice at https://online.citi.com/JRS/portal/template.do?ID=Privacy and our notice at collection at https://online.citi.com/JRS/portal/template.do?ID=Privacy#notice-at-collection to learn more about privacy at Citi. Additionally, California residents may submit requests in connection with the California Consumer Privacy Act at https://online.citi.com/dataprivacyhub\",\n \"scoreText\": \"4.7\",\n \"score\": 4.74566,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.citi.citimobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.citi.citimobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.citi.citimobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.citi.citimobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.citi.citimobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Assistant\",\n \"appId\": \"com.google.android.apps.googleassistant\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googleassistant\",\n \"icon\": \"https://play-lh.googleusercontent.com/ORzWxi-sIo_hCgSa6uzVvBUE4osKUqRVzHnniUUxA2WXD7BnZ95BNVpWFLUTKRyJRdU\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Google Assistant is an easy way to use your phone and apps, hands-free
Get Google Assistant for hands-free help. It can help you set reminders and alarms, manage your schedule, look up answers, navigate and control smart home devices while away from home*, and much more.

*Compatible devices required

An easy way to use your phone and apps
Quickly open your favorite app, navigate your phone and manage your phone settings easily - turn on Do not Disturb, adjust your bluetooth and airplane mode settings and turn the flashlight on, all using just your voice.

"Open YouTube"
"Show me my photos from Hawaii"
"Turn on flashlight"

Stay in touch with hands-free calls, texts, and emails
Stay connected to those who matter most. Make calls, send text messages, and look up emails to your contacts.

"Read my unread texts"
"Call Carly"
"Text Sam 'On my way'"
"Show me my emails from Michelle"

Stay productive while on the go
Get things done using just your voice while on the go - set reminders and alarms, manage your schedule and tasks. Look up answers and get help with directions and local information. Try saying:

"Remind me to buy milk at 7pm"
"Set an alarm for 7am"
"Set a timer for 5 minutes"
"Add eggs to my shopping list"
"What’s my first meeting tomorrow?"
"Gas stations near me"
"Navigate home"

Helps you stay one step ahead
Get proactive information and contextual reminders to help with just what you need, right at the moment you need it. And for the things you do regularly, you can create automatic routines to streamline your day even more.

"Good morning"
"Good night"
"Let’s go home"

Control your smart home even when away from home
Your phone is the remote control to your smart home. Adjust the temperature, lighting, and control your smart appliances, even when you’re not at home.* Try saying:

"Turn the lights off"
"Broadcast "I’m on my way" to the bedroom speakers"

*Compatible devices required\",\n \"scoreText\": \"3.9\",\n \"score\": 3.8792005,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.googleassistant\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googleassistant/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googleassistant/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googleassistant/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googleassistant/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Photo Editor Pro - Polish\",\n \"appId\": \"photo.editor.photoeditor.photoeditorpro\",\n \"url\": \"http://gplayapi.srik.me/api/apps/photo.editor.photoeditor.photoeditorpro\",\n \"icon\": \"https://play-lh.googleusercontent.com/fNL2p8frW7OohneKTg-PO6ahEDGrxntbEZhT-s7jONrpSaIaonPmVLfMeSRdwhjDBXE4\",\n \"developer\": {\n \"devId\": \"InShot Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/InShot%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Photo Editor Pro, an All-in-one handy photo editing app that offers everything you want to enhance photo. It enables you to remove background, create photo collage, make stickers, and add stylish effects, filters and presets in one tap. If you like change face into anime, try cartoon photo filter to double your fun with our AI swap face editor. With Photo Editor Pro, you can directly post your No Watermark artwork in high resolution to Instagram, Snapchat, WhatsApp, Facebook, TikTok, etc. Unlock your creativity, and edit pictures like a pro!

👓100+ Filters for Pictures with zero cost
- Y2K, VHS, Aesthetic Glitch, Vignette, Natural, Warm, Dew, Dark, Cocoa...
- HSL color picker: brightness, contrast, saturation, hue, warmth, etc.

Glitch Effects & Blur Photo Background
- GB, RG, Neon, Negative, Swirl, Pixel, Fisheye and more;
- Blur photo background to get DSLR Blur Effect.

👑Photo Blender & Light FX
- Mix and blend two images to make stunning artworks;
- Bokeh, Lens, Splash, and dozens of light leaks effects.

💃Body Retouch
- Slim body and face with body editor tools to get a perfect figure;
- Smoothen & brighten your skin with refined pores;
- Elongate legs to make your proportion better.

🎨Photo Collage Maker
- Remix up to 18 pictures into a photo collage instantly;
- 100+ grids, massive backgrounds, frames, filters to choose from;
- Halloween, Aesthetic, Cartoon, Emoji, Doodles, and more photo stickers for BABY.

📸KEY FEATURES
+ Powerful and easy photo edit tools;
+ Free to add CUSTOM FONTS on your artwork;
+ Hundreds of filters for pictures and photo effects;
+ Stylish photo effects: Glitch, Drip, Light FX, Cartoon, etc;
+ Face retouch & body editor for perfecting body & face;
+ Collage maker with 100+ photo layouts and backgrounds;
+ Blur photo editor with motion blur & DSLR blur effect;
+ Massive fun stickers;
+ Draw and add text with various art fonts;
+ Insta 1:1 square & blur photo background for Instagram;
+ Share pictures of high resolution to Instagram, Facebook, WhatsApp, etc.
+ New material updated every week.

100+ Photo Effects
Highlight your photos with charming photo effects. Sparkle, art, old, aesthetic, vintage filters for pictures, glitter, overlay, glitch, angel wings effect… There are so many interesting features waiting for your discovering.

Blur Photo Editor
A must-have blur photo editor with advanced blur image brush. It is used to blur parts of your photos to get DSLR blur effect. You can also unblur the image with eraser and adjust its blur strength as well.

Background Photo Editor
Use this advanced background eraser, seamlessly combine your cutout photos with a ton of creative background templates. Both an AI cutout tool and a background changer designed for you to make artworks easily and quickly.

Photo Editor New Version 2022
A useful photo editor with massive filters for pictures. Powerfully make you a vivid photos artwork with Glitch effects, double exposure, photo blender, etc.

Photo Collage Maker
Just select several pictures, Photo Editor instantly remixes them into cool photo collages. Pick the layout you like best, edit collage with filters, background, stickers, etc.

About our permissions:
Photo Editor Pro asks for permissions "READ_EXTERNAL_STORAGE, WRITE_EXTERNAL_STORAGE" to read your photos so that we can edit and save photos. We do not use this permission for any other purpose.

Photo Editor Pro deserves your try right away. With Photo Editor Pro, your moment will be as brilliant as an artwork. Follow @polish.photoeditor and remember to post with hashtag #polishphotoeditor on Instagram. If you have any problems or suggestions, let us know. Email: polish@inshot.com.

Disclaimer:
Polish is not affiliated, associated, sponsored, endorsed by, or in any way officially connected with Instagram, Facebook.\",\n \"scoreText\": \"4.9\",\n \"score\": 4.878518,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=photo.editor.photoeditor.photoeditorpro\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/photo.editor.photoeditor.photoeditorpro/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/photo.editor.photoeditor.photoeditorpro/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/photo.editor.photoeditor.photoeditorpro/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/photo.editor.photoeditor.photoeditorpro/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Play Games\",\n \"appId\": \"com.google.android.play.games\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.play.games\",\n \"icon\": \"https://play-lh.googleusercontent.com/szHQCpMAb0MikYIhvNG1MlruXFUggd6DJHXkMPG1H4lJPB7Lee_BkODfwxpQazxfO9mA\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Games are more fun with the Google Play Games app. We'll help you find your next favorite game – from action to puzzles. And with "Instant play," many games require no installation. Really. Save your progress and track your achievements as you level up. Plus, you can pick up where you left off from any device.

KEY FEATURES
Instant play: There’s no installation needed – look for the "Instant play" button to instantly play full games.
Built-in Google games: Play Solitaire, Minesweeper, Snake, PAC-MAN, Cricket, and Whirlybird – even when you’re offline.
Save your progress: Your progress is automatically saved to the cloud when you see "Progress saved by Play Games."
Gamer profile: Create a custom gamer ID, unlock achievements, earn XP, and level up.
Gameplay recording: Easily record and share your best gameplay moments.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2989793,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.play.games\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.play.games/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.play.games/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.play.games/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.play.games/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Nox Cleaner - Booster, Master\",\n \"appId\": \"com.noxgroup.app.cleaner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.noxgroup.app.cleaner\",\n \"icon\": \"https://play-lh.googleusercontent.com/lZF5QUH89-G4Q9FzRfPJOO6swpainCCuLas10zez1NG18UPLOqLbOadg8EpuYEkK55w\",\n \"developer\": {\n \"devId\": \"Nox Ltd.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Nox%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"🌐Nox Cleaner is a Smart Cache Cleaner & Effective Speed Booster for Android phones. If your phone storage is insufficient or slowing down, Nox Cleaner totally can clear junk files, remove cache, release storage space hence boosting phone performance and speed. Download Nox Cleaner and enjoy a lighter and speedier Android phone.

🕵WHY CHOOSE NOX CLEANER?
⭐ Equipped with advanced mechanisms such as cache cleaner, junk cleaner, storage cleaner, memory cleaner, ads cleaner, Nox Cleaner could improve not only phone storage space but also phone performance as well.
⭐ A powerful and effective antivirus system with a virus scanner, virus removal, and virus protection helps Android users protect devices from any potential security threat or privacy vulnerability.

🤖 HOW NOX CLEANER WORK?
🔥Max Junk File Cleaner
With our powerful analytics engine, users will not only get more storage space from the cleaning process of cache, residual files, download folders, clipboard content and more; users can also delete cache data from social apps such as Line, WhatsApp or others without worrying about deleting the wrong file. One-touch & cache with junk files will be cleaned!

👿Real-Time Master Antivirus
Nox Cleaner will do the real-time virus scan including malware, adware, online trojans, and remove viruses with potential privacy threats, hence protect users against all the threats that can damage your phone. One tap then your phone is secured against all the potential viruses threatening your privacy!

🚀Max Memory Booster
The excessive use of memory makes your phone heavy & slow. With just one click, Nox Cleaner can free up memory & make phone lighter & faster. Nox Cleaner works smartly, hence make the experience on Android phones more comfortable.

❄️CPU Cooler Master
Nox Cleaner intelligently detects and closes battery-draining apps to reduce CPU usage hence lowering phone temperature which helps users a lot when watching videos or playing games.

🎲Game Booster Master
Boost your favorite games such as Free Fire, PUBG or others and enjoy max speed with lag-free gaming experience. Try NoxCleaner's Game Booster shortcut to get your games run faster, smoother and slay all the enemies blocking your way to the victory.

🔋Max Battery Saver
By analyzing battery usage status and helps to find battery-draining apps automatically and stop them efficiently.

📦App Manager Master
Nox Cleaner provides information on apps that are not used based on usage. You can manage and uninstall apps that are rarely used to provide more storage space that can speed up Android storage & speed at maximum.

📷Image Manager Master
Nox Cleaner can analyze photo gallery and sort them into different albums where the users can see similar photos to delete.

🔐App Locker Master
App Locker provides users with the utmost security from unwanted access to Facebook, Instagram, or even Gallery, Calls or Messages. Lock app easily & quickly with Pattern, Fingerprint, and passcode!

NOX CLEANER NOTES:
▶ None of the personal data such as username or email address proceeds.
▶ All information will be kept secure and not shared with the 3rd party according to Privacy and Cookies Policy.
▶ Fingerprint lock works only with devices running Android 6.0 or higher and fingerprint sensor support.
▶ Accessibility Service: We request Accessibility to provide a deep clean service and we promise that the permission will not be used in reading any of your privacy information or changing your settings.

If you like Nox Cleaner, please rate us five stars!
Email: noxcleaner@noxgroup.com.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4538703,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.noxgroup.app.cleaner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.noxgroup.app.cleaner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.noxgroup.app.cleaner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.noxgroup.app.cleaner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.noxgroup.app.cleaner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Priceline: Hotel, Flight & Car\",\n \"appId\": \"com.priceline.android.negotiator\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.priceline.android.negotiator\",\n \"icon\": \"https://play-lh.googleusercontent.com/5swZZm42N0cohH1dvNXXGbU3MdioRyfKhpv0w5myZkYCGAyWdNJecUn9Lrckff-lAA\",\n \"developer\": {\n \"devId\": \"priceline.com\",\n \"url\": \"http://gplayapi.srik.me/api/developers/priceline.com\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Save on your next trip with exclusive deals on hotels, flights & rental cars in the Priceline app. From cheap flights to amazing hotel room offers, you’re guaranteed to find deals you won’t want to miss.

Vacation vibes or business trip? 5-star hotel or budget hostel? No matter what your travel plans are, you can save on your hotel room, flights and car rental when you book with Priceline. And thanks to our handy app, you can compare travel deals, book, and save, wherever you are.

Hotels, cheap flights & car rental - 5 reasons you need to download before your next trip. Seriously:

1. Hotel room offers, exclusive to our app users. You won’t find them anywhere else! Plus, save even more as a Priceline VIP.
2. Accommodation for you - get deals on hotels that matter to you with our personalized, relevant hotel recommendations.
3. Travel ready - Have everything you need for your trip or vacation in one place - hotel deals, rental cars and cheap flights.
4. Hotel booking - Book your next hotel room in a matter of seconds.
5. Hostel or 5-star hotel? We’ve got the right accommodation and hotel deals for any trip and any budget.

Love to travel? Join millions of happy travelers who book great travel deals with us every day - download now! Our exclusive offers and cheap flights can help you save some serious money.

HOTEL DEALS - EXCLUSIVE OFFERS FOR APP USERS
You’ll save up to 60% off with Express Deals®. Seriously. Plus, you’ll earn access to exclusive deals on great hotels when you’re a Priceline VIP.

FLIGHT DEALS - COMPARE & SAVE
Travel across the globe with super travel deals on thousands of domestic and international flights. Priceline helps you find flight deals for your next trip in just a few simple steps, straight from your phone. Pace yourself.

RENTAL CARS - FAST & EASY BOOKING
Hit the road with deals on rental cars - choose from 290 car rental brands in 28,000+ locations. We also offer free cancellation on most bookings and no credit card fees. That's how we roll.

COMPARE, BOOK & SAVE
Finding the perfect accommodation and travel deals is easy as pie. Search by city, address or point of interest to book the most conveniently located hotels and rental cars. As you search more, we uncover even more deals just for you.

HOTEL BOOKING - FROM HOSTEL TO HOTEL
In a rush? Our app features super-quick travel and hotel booking, especially when you’re signed in! Whether it’s a hostel for the night or a vacation next month - we do fast well.

TRAVEL BUDDY
Easily access and make changes to your trip wherever you are with our My Trips feature. Need to check your hotel booking or car rental details on the go? Get all of your reservation and travel info right on your phone, even if you booked on your computer, are offline or don’t have service. Like magic.

Our app is rated as Best App for Travelers by Travel + Leisure! Whether you want to book flights or your hotel room at the touch of a button, find new and exciting accommodation or simply want to explore vacation destinations out there, the priceline.com app is the best place to start.

Priceline is part of Booking Holdings, which includes leading online travel brands such as Booking.com, Agoda, Kayak & OpenTable.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6839614,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.priceline.android.negotiator\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.priceline.android.negotiator/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.priceline.android.negotiator/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.priceline.android.negotiator/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.priceline.android.negotiator/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"QR Scanner: Barcode Scanner\",\n \"appId\": \"qrcodereader.barcodescanner.scan.qrscanner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/qrcodereader.barcodescanner.scan.qrscanner\",\n \"icon\": \"https://play-lh.googleusercontent.com/dGGIvqEys0l_ufTt-57A5hrj07s90GDPVu3Lm0e6dGWIU_jc-tkX1l6PH0brQwnw38g\",\n \"developer\": {\n \"devId\": \"Simple Design Ltd.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Simple%20Design%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The lightning QR code scanner app for Android devices to scan QR code. It supports all QR/barcode formats! 👍

QR Code Reader Free can read and decode all kinds of QR code and barcode, including contacts, products, URL, Wi-Fi, text, books, E-mail, location, calendar, etc. 🔍 You can also use it to scan promotion and coupon codes 💰 in shops to get discounts.

Why choose Free QR Scanner?
✔ Support all QR & barcode formats
✔ Auto zoom
✔ All scan history will be saved
✔ Scan QR / barcodes from gallery
✔ Use flashlight to scan in dark environment
✔ No internet connection required
✔ Scan promotion and coupon codes
✔ Privacy safe. Only camera permission required

How to use
1. Point camera to the QR code/barcode
2. Auto recognize, scan and decode
3. Get results and relevant options

After scanning, several relevant options for the results will be provided, you can search the products online, visit the websites, or even connect to Wi-Fi without entering the password...

Support all formats
Instantly scan QR code. Support all QR & barcode formats, QR code, Data Matrix, Maxi code, Code 39, Code 93, Codabar, UPC-A, EAN-8...

Auto zoom
You don’t need to zoom in / zoom out. It’s easy to scan far away or small QR code and barcode.

Simple & convenient
No internet connection required. All scan history will be saved for quick viewing at anytime. You can scan QR / barcodes from gallery.

Privacy safe
It only needs camera permission, keeps your privacy 100 % safe.

Support flashlight
You can open flashlight to scans QR code/barcode in dark environment.

Price scanner
Scan promotion and coupon codes to get discounts. Scan product barcodes and compare prices online.

Barcode reader and scanner
This barcode reader and scanner allows you to scan all types of barcode, QR code, and coupon code. It's the best barcode reader and scanner that you deserve.

Scan QR code
Need a QR scanner app to scan QR code and barcode? This scanner app is your best choice! Scan QR code with the QR scanner fast and safely!

QR code scanner app
Looking for a QR code scanner app to scan barcode or QR code? Try this free QR code scanner app!

QR code reader and scanner
This is the best QR code reader and scanner that you can find. Use QR code reader and scanner to scan all kinds of QR codes and barcodes.

QR code scanner for android
Want a QR code scanner for Android? This QR code scanner for Android is your best choice.

QR code scanner
Want QR scanner and QR code reader? Looking for QR code scanner? No satisfied QR code scanner? Try the best QR scanner and QR code reader! This QR scanner and QR code reader support all QR & barcode formats.

Barcode scanner
The barcode scanner is 100% safe! What the barcode scanner needs only camera permission!

Barcode reader
The barcode reader is easy to scan any size barcode. The barcode reader can auto-zoom to scan and get results in no time!

QR code reader
Simple and convenient QR code reader for you. With the auto-zoom feature, QR code reader can easily scan small or far away barcodes.

Barcode scanner app
This barcode scanner app supports all barcode formats. You can also create your own QR codes with this barcode scanner app.

Barcode scanner for android
This small size barcode scanner for android can scan barcodes and QR codes fast and safely. Download this barcode scanner for android for free now.

Barcode scan
The QR & barcode scan only needs 1 step. Free QR & Barcode Scanner brings an extreme fast barcode scan experience to you.

Barcode scanner app free
Super fast barcode scanner app free for all Android devices! Scans all barcodes and create your own QR codes with barcode scanner app free.

QR reader
The simplest QR reader for free. It can scan QR code automatically and create your own QR codes. Download the QR reader app now.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.822733,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=qrcodereader.barcodescanner.scan.qrscanner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/qrcodereader.barcodescanner.scan.qrscanner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/qrcodereader.barcodescanner.scan.qrscanner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/qrcodereader.barcodescanner.scan.qrscanner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/qrcodereader.barcodescanner.scan.qrscanner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Shopify - Your Ecommerce Store\",\n \"appId\": \"com.shopify.mobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.shopify.mobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/nQQbat_IM7M8dc30sqCjFHbLiFZU51nbz7Rljc9NQR0BLW5iPbqupAERZOdafbz8lA\",\n \"developer\": {\n \"devId\": \"Shopify Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Shopify%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Start your ecommerce business and manage it from anywhere, with no coding or design skills needed.

Run your ecommerce business from your mobile device. Process orders, manage products, track sales, run marketing campaigns, and more.

MANAGE YOUR PRODUCTS IN‑APP
• Upload product photos
• Set product and pricing details
• Add products to collections
• Scan barcodes to adjust inventory

PROCESS YOUR ORDERS IN A FEW TAPS
• Fulfill, refund, or archive orders
• Buy and print shipping labels
• See your conversion details

RESPOND TO REAL-TIME INFORMATION
• See live sales and visitor traffic
• Get new order notifications
• Communicate with staff

SELL ON MORE SALES CHANNELS
• Reach customers online, in-store, and more
• Sell on Instagram, Facebook, and Messenger
• Sync inventory and orders across each channel
• Manage multiple store locations

RUN MARKETING CAMPAIGNS
• Set up Google Smart Shopping campaigns
• Create Facebook and Instagram ads on the go
• Track results and optimize the next campaign

FOLLOW UP WITH CUSTOMERS
• View and manage your customer segments
• Add and edit customer details
• Contact your customers
• Add timeline comments to customer orders

POWER YOUR STORE WITH APPS AND THEMES
• Access your Shopify apps for easy use
• Browse our catalog of free themes
• Change your online store’s appearance

Whether you want to run a last-minute promotion, launch a new product, or create a special discount, you can do it all on our ecommerce platform. You have the power to make edits to your ecommerce store theme, like adding announcement banners, posting blog posts, and more, all from your smartphone.

Review from eCommerce News HQ (https://ecommercenewshq.com/the-complete-shopify-mobile-app-review/)
“Taking the top eCommerce platform and translating it into a mobile experience can be challenging, but it seems as if Shopify has nailed this attempt. The dynamic between the “normal” web-based version of Shopify, and the mobile app, is amazing, with little to no changes (Except the size being scaled down of course.)“

Review from David B via g2.com (https://www.g2.com/products/shopify/reviews/shopify-review-2822877)
“Shopify [..] allows me to do important things for my store from anywhere. That is because it gives me advantages in managing the store from a mobile device.”

ABOUT SHOPIFY
Shopify’s ecommerce app can keep your business moving quickly. In the fast-paced world of ecommerce, that speed can be the difference between a sale for you or for your competitor.

Shopify has everything you need to start selling online, for any ecommerce business. Start your business today on the one platform with the ecommerce and point of sale features to start, run, and grow your business.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.092409,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.shopify.mobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.shopify.mobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.shopify.mobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.shopify.mobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.shopify.mobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Ibotta: Save & Earn Cash Back\",\n \"appId\": \"com.ibotta.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.ibotta.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/4GH2kO3tEhwo9hzCHtm0zQdwHgePpS24SgJvGh9j3SvBsFY3HR5GJmU8-e1ijSvyMA\",\n \"developer\": {\n \"devId\": \"Ibotta\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Ibotta\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Earn real cash back every time you shop online or in-store with Ibotta. Simply check Ibotta before you shop in-store or online, and you can get rewarded with cash back on everything from groceries to your favorite tech gadgets. Ibotta works with leading brands and retailers, to help you save money and combat rising inflation rates without the hassle of traditional coupons or promo codes.

Ibotta users are staying ahead of inflation by saving 1.6x over the rate of inflation on their groceries so far this year! At the start of this year, you would have paid $443 a month for groceries, but today, your entire haul would be almost $30 more. Join millions of users that are saving , earning and staying ahead of inflation.


Earn cash back everything you shop with Ibotta!

HOW IBOTTA WORKS:
1. Add cash back offers – Before you go shopping, find and add offers in the app for things you
want to buy.
2. Go shopping – Shop at your favorite stores, retailers, restaurants, bars, and apps
3. Redeem offers – Upload your receipt or link your loyalty card for instant cash back.
4. Get cash back – Watch your savings grow! When you’re ready, Withdraw your cash earnings via PayPal or your choice of a variety of gift cards.

Ibotta is the easiest way to save money every time you shop.

EARN CASH EASILY
- Earn cash back rewards simply by uploading a photo of your receipt
- Get your money quickly and easily

SAVE ON GROCERIES, TRAVEL, RETAIL, RESTAURANTS & MORE
- Ibotta helps you earn cash back on purchases at more than 500,000 locations (and counting)
- Our partners include: Walmart, Uber, Lowe’s, Kohl’s, Kroger, CVS, Rite Aid, Groupon, eBay, Boxed, Best Buy, Bed Bath & Beyond, Drizly, Hotels.com, AMC, eBags, Thrive Market, Safeway, Walgreens, Costco, World Market, Petco, Whole Foods, Trader Joe’s, and many more.

IBOTTA WORKS WITH YOUR FAVORITE APPS
- Start with Ibotta to easily earn cash back when you make purchases on your favorite mobile apps like Uber, Jet.com, Groupon, Boxed, and eBay.

EARN EVEN MORE CASH WITH BONUSES
- Earn extra cash when you refer friends with your referral code!
- Earn even more with extra cash bonuses on specific products or when you hit shopping milestones.
- Ditch the promo codes and old paper coupons and shop with Ibotta to earn real cash back.
- Download the Ibotta app now to start earning cash back on every purchase, and watch your savings grow!

LOVE IBOTTA?
\\u2028Your feedback is what keeps us going! Please take a moment to rate our app.\\u2028\\u2028
Note: Ibotta may use your location to help find stores. Continued use of your phone’s GPS running in the background can dramatically decrease battery life.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4882336,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ibotta.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.ibotta.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.ibotta.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.ibotta.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.ibotta.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Messenger Kids – The Messaging App for Kids\",\n \"appId\": \"com.facebook.talk\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.facebook.talk\",\n \"icon\": \"https://play-lh.googleusercontent.com/vwlHz3KjU8Cy1YBUsXI6Jnn-N_LdEMmOptzJeKBKDQvt2N5XjNbDqlpRyrm6_UkSjLc\",\n \"developer\": {\n \"devId\": \"Meta Platforms, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Meta%20Platforms%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Made for Kids. Controlled by Parents.

Parent Dashboard:
Parents can manage their kids' contact list, and monitor messages on the Messenger Kids app. When kids block contacts, parents are notified.

Fun Filters:
Kid-friendly filters, reactions, and sound effects make video chats with friends and family even better.

Worry Free:
Parents can set usage limits when it’s bedtime, and there are no in app-purchases or ads.

Creative Convos:
Stickers, GIFs, emojis, and drawing tools give kids more ways to express themselves.

Easy Start:
No phone number required.

We’re always working to improve Messenger Kids. If you’d like to share any feedback with us or for more information, visit messengerkids.com.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2182026,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.talk\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.facebook.talk/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.facebook.talk/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.facebook.talk/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.facebook.talk/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Steam\",\n \"appId\": \"com.valvesoftware.android.steam.community\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.valvesoftware.android.steam.community\",\n \"icon\": \"https://play-lh.googleusercontent.com/52_DMY5417awaEgJf3_9mWgEuO2t1JfkGab8kM-LD6l5u6cGm_1-GsoQ_IyWFHdbkA\",\n \"developer\": {\n \"devId\": \"Valve Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Valve%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With the free Steam app for Android, you can participate in the Steam community wherever you go. Chat with your Steam friends, browse community groups and user profiles, read the latest gaming news and stay up to date on unbeatable Steam sales.\",\n \"scoreText\": \"3.5\",\n \"score\": 3.473285,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.valvesoftware.android.steam.community\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.valvesoftware.android.steam.community/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.valvesoftware.android.steam.community/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.valvesoftware.android.steam.community/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.valvesoftware.android.steam.community/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Credit One Bank Mobile\",\n \"appId\": \"com.creditonebank.mobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.creditonebank.mobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/R_iL1oKdPYOoD3ioW6t6VgOB04_ebMHmSMFyTYH3bE6S6wuRo6Pku58Xu05NGK_JGQ\",\n \"developer\": {\n \"devId\": \"Credit One Bank, N.A.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Credit%20One%20Bank%2C%20N.A.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Conveniently manage your credit card accounts with the Credit One Bank Mobile App. Schedule one-time or monthly automatic payments and view account activity, balances, payment history, offers, and more!

FAST AND SECURE ACCOUNT ACCESS
Fast and secure sign-in with Fingerprint (available on capable devices)
Use Quick View to see a snapshot of your account without signing in

ENJOY ON-THE-GO ACCOUNT ACCESS
Set up automatic payments
Schedule, edit, or cancel one-time payments
Change your payment due date
Check your balance and available credit, and view recent transactions or monthly statements
Access your Free Online Experian Credit Score
Manage your profile and account settings
Easily manage multiple accounts
Enroll in paperless documents and statements to keep your account information secure and ensure important communications won't get lost in the mail

OFFERS & DEALS
View the latest offers and More Cash Back Rewards on purchases at participating merchants
View exclusive credit card offers

STAY INFORMED
Easy access to Help & Support contact information
Use our chat feature for instant answers to your questions
View a full list of frequently asked questions and answers
Choose how you get alerts, including mobile notifications, email, and text
Set up notifications for important account activity, payment reminders, and special offers
Get notified when rewards and exclusive credit card offers are available Receive alerts if fraudulent activity is suspected on your account\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5936217,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.creditonebank.mobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.creditonebank.mobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.creditonebank.mobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.creditonebank.mobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.creditonebank.mobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Babbel - Learn Languages\",\n \"appId\": \"com.babbel.mobile.android.en\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.babbel.mobile.android.en\",\n \"icon\": \"https://play-lh.googleusercontent.com/xN4oZ4Re23KNtp9u2y4i-UYJ0TjjFjhs53okaauQUz-oP3LaOBQZZHVaNFU69GAT7x8\",\n \"developer\": {\n \"devId\": \"Babbel\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Babbel\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Millions of people learn languages with Babbel — the app built by language learning experts. Our short, interactive lessons rethink old-school language education to get you speaking a new language with confidence.

LEARN SPANISH OR 13 OTHER LANGUAGES IN 15 MIN/DAY

We're not just a Spanish learning app! Want to learn French, learn Italian or speak German like a local? You can learn:

Spanish 🇪🇸🇲🇽 | French 🇫🇷 | Italian 🇮🇹 | German 🇩🇪 | Portuguese 🇧🇷 | Russian 🇷🇺 | Polish 🇵🇱 |
Turkish 🇹🇷 | Norwegian 🇳🇴 | Danish 🇩🇰 | Swedish 🇸🇪 | Dutch 🇳🇱 | Indonesian 🇮🇩 | English 🇬🇧🇺🇸

Babbel is great for beginners but even experienced language learners have proven to advance their conversation skills!*

======

BABBEL WORKS!
★ Effectiveness backed by researchers at Yale University:
100% of study participants improved their oral proficiency in 3 months*

*Based on a study conducted with Babbel users learning Spanish. Available at http://bit.ly/BabbelYale.

★ After 10 hours with Babbel, Michigan State University researchers found:
96% of learners saw better test scores on grammar and vocabulary**

**Based on a study conducted with Babbel users learning Spanish. Available: http://bit.ly/BabbelMSU.

★ PCMagazine says the Babbel language app “exceeds expectations”

======

Babbel is the best language-learning app.

Our language learning experts build every course tailored to your native language. So whether you want to learn Spanish, learn Italian or learn French — or even German, Portuguese, Russian, Polish, Turkish, Norwegian, Danish, Swedish, Dutch, Indonesian or English — you’ll learn quickly and effectively.

BITE-SIZE, INTERACTIVE LESSONS - Easily fit language learning into your busy schedule with lessons that take only 10-15 minutes to complete (some Spanish lessons are even shorter).

LANGUAGES FOR ANY SITUATION - Find language lessons for travel, work, everyday life and much, much more

LISTEN, SPEAK, READ, WRITE - Practice all the elements of language learning and start speaking real-life conversations

IMPROVE YOUR PRONUNCIATION - Babbel’s speech recognition technology helps you sound like a native speaker

REMEMBER WHAT YOU LEARN - Use the review feature so the previous lessons stick, and understand grammar (including Spanish conjugation)

LEARN LANGUAGES IN CONTEXT - Enhance your language learning with tips & tricks that guide you throughout lessons

OVER 6,000 LANGUAGE COURSES - Learn Spanish and 13 other languages with in-depth content, including more than 60,000 language lessons

With Babbel, you’ll be on your way to mastering the ultimate goal of language learning — having real-life conversations with confidence. Whether you need a Spanish learning app or a French learning app, you’ve always wanted to learn Italian, you’re looking to dive into German language learning or improve your English, Babbel is the choice of millions of people looking to enhance their language education.

Make learning a habit. Go beyond language 101 and you'll learn a language you can use to talk in real-life situations.

=====

Subscriptions:

You’ll need a subscription to use Babbel fully. Your subscription will be renewed unless auto-renew is turned off at least 24 hours before the end of the current payment period.

DOWNLOAD BABBEL AND TRY FOR FREE – Your first lesson is on us. Babbel is completely ad-free.

Privacy policy: https://about.babbel.com/en/privacy/
Terms of use: https://about.babbel.com/en/terms/

Not a native speaker but want to talk just like one? Download Babbel and improve your German language learning, learn English or discover how to speak Spanish. Take your language education to new levels — whether you want to learn French, Italian, Mexican Spanish, German or any of the 14 languages we offer!

Contact us:
Questions, comments or feedback about language learning with Babbel? Email us at support-mobile@babbel.com.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.584405,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.babbel.mobile.android.en\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.babbel.mobile.android.en/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.babbel.mobile.android.en/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.babbel.mobile.android.en/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.babbel.mobile.android.en/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Shield: Antivirus VPN Launcher\",\n \"appId\": \"com.applock.launcher\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.applock.launcher\",\n \"icon\": \"https://play-lh.googleusercontent.com/2k2nuGxMYRqulnjRPS0A2L7lnmLNnAZuls95Nz-0NtWUtxlsAOrsMTNDtfmmuZBfXg\",\n \"developer\": {\n \"devId\": \"Bacchus Media\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Bacchus%20Media\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Download Shield Launcher for free to protect your Android device from viruses, malware, & threats, secure your WiFi connection, and protect your privacy.

🔍 Antivirus Cleaner
Scan your apps for risks to prevent threats such as viruses, malware, hackers, cyber criminals, identity theft, attacks, and spyware with our antivirus protection. We’ll notify you if we detect any harmful apps.

🌏 VPN Connection
With our brand new VPN feature, you will be able to protect your network, encrypt your Internet connection and browse anonymously and privately without being tracked. Enjoy safe, secure, high-speed Internet connection, and shield yourself from international cyber attacks.

🔐 AppLock
Lock any app on your phone with a password or fingerprint code. Ensure security and prevent unauthorized access to apps that may store sensitive information and personal data.

📶 WiFi Protection
Scan any WiFi network you’re connected to and make sure it’s properly secured. Shield checks for risks, threats, and unsafe connections so you can safely explore the web and keep your information private.

🕵️ Hide Apps
Keep your apps completely hidden so they are invisible to everyone but you. When you hide an app, it will disappear from your phone and cannot be accessed until you unhide it.

🎨 Custom Themes
Customize the appearance of your lock screen with new colors and styles!

🏆 Benefits
✅ Privacy and protection for personal data
✅ Protection against malware, viruses, phishing, identity theft and hackers
✅ Worldwide VPN encryption with fast, secure Internet connection that keeps you safe and protected from cyber attacks and security breaches
✅ App-lock feature to keep your apps private
✅ Real-time antivirus protection
✅ Full scan of viruses and threats within your apps
✅ Safety and protection from cyber-security breaches
✅ WiFi scanning and security
✅ Fingerprint & PIN security
✅ Personalization for your lock screen

All of this can be done in four simple steps:

1️⃣ Install Shield Launcher 2022 for free
2️⃣ Assign a password or fingerprint to protect your privacy
3️⃣ Select the apps you’d like to keep secure
4️⃣ Run our antivirus scanner to ensure your phone is safe from threats

That’s it! After installing, Shield Launcher will replace your home screen and add privacy controls to your swipe-right screen. Now you’ll never have to worry about the privacy and security of your phone! 🔒\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2986426,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.applock.launcher\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.applock.launcher/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.applock.launcher/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.applock.launcher/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.applock.launcher/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Junk Master- Phone Cleaner\",\n \"appId\": \"com.clean.booster.junk.cleaner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.clean.booster.junk.cleaner\",\n \"icon\": \"https://play-lh.googleusercontent.com/rieM_pzON7lQc1DtjQW0k6oeXJmB6uQGSfXCwMFqr0CHhkLSACDcQ0wL0CzncX4bhVhB\",\n \"developer\": {\n \"devId\": \"SEAMOBI\",\n \"url\": \"http://gplayapi.srik.me/api/developers/SEAMOBI\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Why Junk Master is a MUST-HAVE app?
Junk Master is all in one clean android master and phone booster toolbox.
⚡ Clean junk files and unwanted apps
⚡ Optimize and extend battery life
⚡ Uninstall apps to improve device performance
⚡ Boost up speed by force stopping RAM consuming apps

🚀Ram cleaner and analyzer (JUNK FILES)
Junk Master helps free up your storage space by removing junk, residual and cache files which slows down your phone.
With our professional cleaner, you can also free up much more space from cleaning cache data from social apps without worrying about deleting the wrong files.

🚀Max Memory Booster
Junk Boost helps speed up the phone by freeing up RAM. After boosting your mobile, you can run a speed test to see how much faster it is.

🔋BATTERY SAVER
Junk Master Booster helps to save battery power and extend it life by hibernating running apps.

🚀CPU Cooler
CPU Cooler can cool down your android phone CPU temperature with one tap.

🔥Fast and Simple
Junk Master's user interface is simple and intuitive, making it user-friendly and easy to clean cache and junk files to free up your phone's RAM.

🗑 Removing unused applications
With our powerful analytics engine, users will not only get more storage space from the cleaning process of cache, residual files, download folders, clipboard content, and more. One-touch & cache with junk files will be cleaned!

Install this super android cleaner, the all in one toolbox, Android Optimizer, and Android Master now to clean and boost your android phone. You won't ask how to clean my android phone any more.

Junk Master can optimize and speed up your Android phone with just 1-tap. Cleaner can also scan your phone for cache and junk files, and have them cleaned up to greatly improve your phone's processing speed.

Install Junk Master now and you can enjoy a faster phone with just 1-tap!\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2153845,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.clean.booster.junk.cleaner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.clean.booster.junk.cleaner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.clean.booster.junk.cleaner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.clean.booster.junk.cleaner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.clean.booster.junk.cleaner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"GEICO Mobile - Car Insurance\",\n \"appId\": \"com.geico.mobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.geico.mobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/oab9bjRxT6GXZH98OI9pLdcR8BPFrEdYbrw4jeL00F8oiLeKfU4C3p3R2114rAiR5A\",\n \"developer\": {\n \"devId\": \"GEICO Insurance\",\n \"url\": \"http://gplayapi.srik.me/api/developers/GEICO%20Insurance\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Life is full of lane changes. Some expected. Some not as much. No problem, because the GEICO Mobile app is here to lend a hand if you ever need a quote, policy update, tow, or you just need to change your address. Now, when life changes lanes we’ll be right there because we’re always headed in your direction.
Not to toot our own horn but we’re the #1 Insurance Mobile App. Find out why below.

FEATURES

DIGITAL ID CARDS
The days of rummaging through your wallet, past expired gym memberships and old receipts to find your insurance ID cards are over. Now they’re always easy to access right on your phone. Access them from the app or add them to your Apple Wallet.

BILL PAY
Now you don’t have to slow your roll to pay or manage your bill. The GEICO Mobile app makes paying on the go a piece of cake, or slice of pie or whatever dessert you’re into.

ROADSIDE ASSISTANCE
No one likes being stranded in the middle of nowhere – or even in the middle of somewhere. The GEICO Mobile app lets you tap for a tow anyplace, anytime.

SUBMIT AND MANAGE YOUR CLAIM
Let’s be real - claims aren’t fun. A fender bender, crash or broken windshield can all be nerve-racking. That's why GEICO Mobile makes it easy to file and manage a claim.
GEICO VIRTUAL ASSISTANT
Ever wish you had a teeny tiny person in your pocket that you could ask questions about your policy, billing or more? Us too. Just ask the GEICO Virtual Assistant.

VEHICLE CARE
Vehicles need tender loving care too. That’s why we make it so easy to get your car serviced, find out about recall alerts, and even get maintenance reminders. It’s like a hug for your car.

GEICO EXPLORE – AUGMENTED REALITY
With GEICO Explore, you can augment your world like a futuristic robot by customizing the types of places you want to see. Find gas stations or even your own car!

NOTE: To log into your account from GEICO Mobile, your GEICO policy must:
- Be an active auto or motorcycle policy
- Not be subject to other policy restrictions
NOTICE TO CALIFORNIA RESIDENTS: See our CA Notice of Collection: https://media.geico.com/legal/privacy_policy.htm#california_residents_collection\",\n \"scoreText\": \"4.6\",\n \"score\": 4.635285,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.geico.mobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.geico.mobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.geico.mobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.geico.mobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.geico.mobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"UniMote - Universal Smart TV Remote Control\",\n \"appId\": \"sensustech.universal.tv.remote.control\",\n \"url\": \"http://gplayapi.srik.me/api/apps/sensustech.universal.tv.remote.control\",\n \"icon\": \"https://play-lh.googleusercontent.com/uaVyHO2Bi0lAQbq5tVtkYL9wSLn9YnVi6Kt-m0ovhhzGi9JWhGhj5zQRjIF0BeGMcw\",\n \"developer\": {\n \"devId\": \"SensusTech LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/SensusTech%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Do you want to get most of your TV? We are here to help you with it - that’s why we created UniMote - Universal Remote Control for all TV. Our app will help you to control your TV. Your Android device will become tv remote control for Smart TV, Samsung, LG, Android TV, Roku, Fire TV, Sony, etc. You can control both Smart TVs (using Wi-Fi) and Non-Smart TVs (using IR Blaster).

Why bother yourself with installing this UniMote if you have an actual TV remote control? Good question!

· First of all, you don’t need to look for remote control for a TV because your smartphone is always near you. Your TV Remote Controller can`t be lost now.
· Secondly, it has more of the same functions and even more - Screen Mirroring, Smart Sharing, Screencast. All of that is UniMote.

How so? So why don’t we look into it together? It’s more convenient because let is honest, you handle your smartphone better than your old TV remote controller. Now, you can say that is where we are wrong, and you spend more time with your remote control than with the device. And we will tell you that you can adjust according to your needs.

For example, start with a basic remote mirroring screen for all brands! Hisense, TCL, Roku TV and it`s not all list. Also, you can make a TV cast of your favorite videos and watch them on a bigger screen.

You even help mother nature a little bit by using your phone as a Universal TV Remote Control, because you won’t need to buy batteries ever again.

Same buttons and interface - only positive experience with new features. Amazon Fire Stick or Samsung, Roku Stick, Xiaomi or Panasonic - it doesn`t matter with Remote Control for all TV.

More functions:
· Control your Smart TV using WiFi or even your Non-Smart TV using IR Blaster.
· You can use it with Samsung, LG, Android TV, TCL, Roku, Hisense, Vizio, Insignia and many other TV brands.
· Screen Mirroring for easier interaction with your TV
· A little help to mother nature by not using the batteries
· TV Screencast videos or photos you want to share with friends, or maybe you just want to see them in a higher quality
· For IR TVs, your Android device must have a built-in Infrared (IR) feature in order for the app to work as a remote control.

Make your life a little bit easier to install UniMote. Turn your smartphone into a remote controller for the TV. User-friendly interface. It’s basically the old remote but more compact. Have more functions in it. It is personalized to your own taste.

Always near you, and you always know where to find it. Just accept the progress and enjoy your comfort with UniMote.

Notice:
• Android device with built-in IR blaster is required for the Traditional IR TV devices.
• In order to connect to Smart TVs devices, both the Smart TV and Android device must be connected to the same network.\",\n \"scoreText\": \"3.8\",\n \"score\": 3.8468208,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=sensustech.universal.tv.remote.control\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/sensustech.universal.tv.remote.control/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/sensustech.universal.tv.remote.control/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/sensustech.universal.tv.remote.control/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/sensustech.universal.tv.remote.control/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"GoodRx: Prescription Coupons\",\n \"appId\": \"com.goodrx\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.goodrx\",\n \"icon\": \"https://play-lh.googleusercontent.com/SpJiR-IAPc0ZWP-e1GMBokNPn7FfQGc20xtd8uTGXHTmbP36eAhI4JRRFDwiHhzN\",\n \"developer\": {\n \"devId\": \"GoodRx\",\n \"url\": \"http://gplayapi.srik.me/api/developers/GoodRx\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"GoodRx is a free pharmacy coupon & deal finder that helps millions of Americans save money on pills, prescription drugs & medical costs. Our coupon finder helps you find the best price on affordable prescriptions, medications & drugs you can’t find on other medication apps. GoodRx is a medication app with Rx pharmacy discounts, a medication & pill reminder, medicine tracker & more.

Check prices from GoodRx’s prescription med list & price checker to save money on your medication. Access our prescription coupon finder & price tracker! Search digital coupons, Rx pharmacy discounts & more with GoodRx!

Online coupons for medication & prescription drugs are easy to use with GoodRx:
- Rx Drug Guide & Price Check: Find the best price at a local or online pharmacy
- Mobile Coupons: Coupon finder with health savings & digital coupons
- Pharmacist Visits: Just show your pharmacist your discount at drop-off to save!

Price check medication, save money & time with GoodRx’s prescription deal finder. Our Rx savings solutions let you compare & check prices of medication easily. Get the best price on Rx drugs with discount prices & digital coupons.

Save money on your prescriptions with GoodRx!


GoodRx Features:

Get Coupons & save money at Over 70,000 Pharmacies
- CVS Pharmacy
- Walmart Pharmacy
- HEB Pharmacy
- Walgreens Pharmacy
- Rite Aid Pharmacy
- Target Pharmacy
- Safeway Pharmacy
- Vons pharmacy
- & more!

Rx Drugs Up to 80% Cheaper with Online Coupons
- Price check using our pharmacy deal finder
- Coupon finder with price check feature & Rx discounts
- Digital coupons are easy to use, just show a pharmacist & save!
- Get manufacturer coupons, patient assistance programs & more when available
- Save your preferred pharmacy & best price locations

Medication Tracker & Prescription Reminder Notifications
- Pill reminder, prescription prices, savings alert notifications – all on one app
- Prescription drug discount cards on your mobile device, available at anytime
- Medication reminder: Get alerts & never miss a refill
- Prescription tracker: Manage your medication & pills
- Medication log: Easily save & track online medical prescriptions

Get GoodRx Gold
- Get additional pharmacy discounts & benefits with GoodRx Gold at participating pharmacies

Online Medical & Senior Care
Quality care now: connect with online medical professionals & get affordable virtual care on your schedule.
- No Medicare or insurance needed
- Online medical app feature available nationwide, with licensed medical providers
- Pharmacy service from anywhere: medication delivery & pickup available
- Drug guide to help understand your prescriptions
- No hidden fees, virtual visits start at $19 with a Gold subscription

GoodRx Care services include
- Urinary Tract Infection (UTI) treatment
- Erectile Dysfunction (ED)
- Start or refill birth control
- Short term medication refill
- & more!

Why Millions of Americans Use GoodRx
- Coupons made easy: Just show your coupon when you drop off your Rx & save!
- Deal finder for Rx drugs: Our drug guide tells you which pharmacies have certain drugs for less than $4 per fill, or even free
- Medication Tracker: Track & set reminders for Rx refills
- Doctors & clinics use GoodRx to help patients save money
- Featured by: The New York Times, PBS, ABC News, Forbes, CNN, Good Morning America, The LA Times & more!

By downloading GoodRx, you agree to be bound by our Terms Of Use. Read more at http://www.goodrx.com/terms-of-use

*GoodRx works to make its apps accessible to all, including those with disabilities. If you are having difficulty accessing this application, please call or email us at (855) 268-2822 or ada@goodrx.com so that we can provide you with the services you require through alternative means

Advertising Notice:
https://support.goodrx.com/hc/en-us/articles/360026530331-Advertising-on-GoodRx

Notice of Collection:
https://support.goodrx.com/hc/en-us/articles/360037920971-California-Consumer-Privacy-Act-Privacy-Notice\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7678556,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.goodrx\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.goodrx/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.goodrx/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.goodrx/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.goodrx/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Music Downloader - Mp3 music\",\n \"appId\": \"com.tubemp3.music.musicdownload.downloader\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.tubemp3.music.musicdownload.downloader\",\n \"icon\": \"https://play-lh.googleusercontent.com/AyGnu3iQv7VjNJxnq266lxBxerQ46t4EJ3FBFyMGcIa2XVu1zeGVgp2j7IXpH1s1XaUv\",\n \"developer\": {\n \"devId\": \"Bass Music Team 2022\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Bass%20Music%20Team%202022\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Music Downloader & MP3 Music Download is an application that allows you to listen to music online, offline and download music online for free.

It is the best multimedia application for listening to music on the Android operating system with a beautiful and easy-to-use interface.


With a diverse music store of all popular music genres, you can easily search, listen and download any song you want.

The best music player and online music downloader for Android with a lot of powerful features, beautiful and stylish layout design.
Using AI technology for its song search engine, it helps users receive the most accurate results.

Feature:
★ More than a dozen kinds of themes are built-in, providing theme replacement
★ Display music lyrics online
★ Mp3 music download never was easier!
★ Download high sound quality mp3 fastest and play mp3 music online or offline.
★ Great data set, more than a million high quality mp3 tracks. One of the biggest free mp3 music storage.
★ Flexible search possibilities (search by tracks, artists, albums, genres, instruments, moods, popularity and more). please, take a look at screen shots for details.
★ Very fast and robust multithreaded mp3 download engine.★ All tracks are verified, and available for personal usage (not for commercial purposes!).
★ You will find music for any tastes and of any kind with our app.

We are working hard to bring users a great app. Please enjoy it out and let us know your review.

Disclaimer:
Music Downloader & MP3 Music Download is provided by "www.jamendo.com", All songs can be used for personal non-commercial use only through this application. You can access the Jamendo Privacy Policy https://devportal.jamendo.com/api_terms_of_use, All repertoire can be properly mentioned in the CC license (author and license section). You can find contact with www.jamendo.com
Jamendo API terms of use :
https://devportal.jamendo.com/api_terms_of_use,\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7489176,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.tubemp3.music.musicdownload.downloader\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.tubemp3.music.musicdownload.downloader/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.tubemp3.music.musicdownload.downloader/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.tubemp3.music.musicdownload.downloader/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.tubemp3.music.musicdownload.downloader/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"AXS Tickets\",\n \"appId\": \"com.axs.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.axs.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/4jOByQnlihqLHotlBzRrrXOXrGDlA-FPNs3x2lTWcUAdCJm9-ha7aiNjTw4RTcu0N9ss\",\n \"developer\": {\n \"devId\": \"AXS, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/AXS%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Tap for tickets to see the artists and teams you love. With the AXS app, you can find great events near you, buy 100% official tickets, sell your seats if you can’t go, and more. It’s all a fan needs, all in one app.

BUY THE PERFECT TICKETS
Front row or on the aisle? Pick your exact seats on interactive maps, get more ticket options with AXS Official Resale, and go in style with AXS Premium or VIP offers.

EASILY SELL YOUR TICKETS
Plans can change. If you have seats from AXS but can’t make it, quickly list the tickets for sale from your account and reach tons of potential buyers.

USE TICKETS WITH THE APP
No paper required. Just pull up your tickets in the AXS app, get them scanned at the gate, and head into your event.

TRANSFER TO FRIENDS
It’s super easy. Stop hand-delivering tickets or waiting at the entrance for everyone to arrive – quickly transfer tickets to friends and meet them at your seats.

DISCOVER GREAT EVENTS
There’s so much to see. Find out when your faves are coming to town, check out what’s happening soon, and browse events by your interests – from basketball and rock to comedy and theater.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.248014,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.axs.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.axs.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.axs.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.axs.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.axs.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Copy My Data: Transfer Content\",\n \"appId\": \"com.mediamushroom.copymydata\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.mediamushroom.copymydata\",\n \"icon\": \"https://play-lh.googleusercontent.com/4b2igJrN9Lg7fPH6C1ZnmHYuMVz7KMawSxXF2FclBKXp39xincSizX1Hf1xx_RREA_Pp\",\n \"developer\": {\n \"devId\": \"Red Sky Labs\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Red%20Sky%20Labs\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Copy your data from one phone to another over a WiFi network, without the need for a computer.

Easily transfer data from one phone to another by QR.

Transfer your calendar dates, keep your favourite photos and send your favourite videos and music to your new smart phone. Copy my Data provides secure sharing from phone to phone.

Ensure both devices are connected to the same WiFi network and then run the app. Tranfer and enjoy this data backup available.

Copy My Data will guide you through the process of copying your data from one to another in a few easy steps. Have an easy connectivity through QR code connecting two smart phones wirelessly. Clone your phone! Don't lose any contact, document or video on your new smart phone

Download Copy My Data: Transfer Content app now and start transferring all your content. Dont lose you anything.\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9698431,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.mediamushroom.copymydata\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.mediamushroom.copymydata/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.mediamushroom.copymydata/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.mediamushroom.copymydata/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.mediamushroom.copymydata/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"PDF Reader App : Read All PDF\",\n \"appId\": \"pdfreader.pdfviewer.officetool.pdfscanner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/pdfreader.pdfviewer.officetool.pdfscanner\",\n \"icon\": \"https://play-lh.googleusercontent.com/QshJdxkNgBJOncp6BHF-Nc6pzpAU98ymgHYQ-TKvaxtyTfXwRiS9O9mGHGRaEXKsh6Ov\",\n \"developer\": {\n \"devId\": \"Trusted Android Apps- PDF Reader & Documents Tools\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Trusted%20Android%20Apps-%20PDF%20Reader%20%26%20Documents%20Tools\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The free PDF Reader app allows you to read PDF files and manage office documents in one place. Many people have to use an online browser in order to open PDF files and PDF Books, but with this PDF Reader free and PDF Expert app, you can view PDF files without the internet. This PDF app for Android is the best PDF viewer to view PDFs. This PDF File Reader & Docx Reader offers its users the functions of reading PDF files directly from their mobiles. Simple PDF Reader app provides the feature to read PDF in dark mode. With a Powerful PDF reader, you can view files easily. Read PDF books and PDFs notes anytime, anywhere with this fast PDF Book reader. This is a free PDF app & PDF viewer for all PDF documents. Download this PDF Reader App - PDF Viewer for Android and interact with all documents easily and conveniently. Get the PDF reading experience with the smart PDF Reader & eBook Reader. This is all document Reader app for PDF, Docx, Word, Excel, and PPT.

Open, View, and Read PDFs with the fast PDF Reader for Android. A simple PDF viewer is free and reliable to read PDF documents and PDF eBooks. THE PDF viewer app makes it very easy to scan & read .PDF files and manage documents on your phone. This is the best PDF book reader for android.

Offline PDF Viewer for Android.
A free PDF reader is an all-in-one office app because our eBook reader app provides a PDF reader, Word reader, Excel Viewer, and PowerPoint viewer without the internet. Install this free PDF reader & PDF viewer app and enjoy reading PDF files. This is a free PDF book reader and Docx reader app.

All Document Manager & DDF Book Reader.
The PDF Reader free allows you to manage and arrange all PDF, Excel, Word, and PowerPoint documents in one place. All office documents are also available in this office app & .PDF app which is very easy to search and view PDF files and office documents. This is the best All Document reader and PDF manager for android.

Open All Documents with a PDF reader for android:

Free PDF Reader also helps you to read Excel files, read Word documents, and open PowerPoint. A PDF viewer is the best way of reading documents on your mobile phone. Open documents, read, share and delete, or rotate files with the PDF app free download. Install Simple All Document Reader Office App and read PDF, Docx, Word, PPT, Excel.

With this office app & PDF Book reader, you can read files and Share files with your friends. This is the best eBook reader app for eBook reading. Download this .PDF file reader for reading your PDF files.

Top Features of PDF Reader and Free PDF Viewer 2022.

A PDF Reader is a free application.
Offline PDF Viewer for Android.
All document reader manages all office document PDF, Word, Excel & PPT files.
Bookmark PDF pages for future reference.
This is an offline PDF Book reader for viewing PDF documents.
Share PDF files with your friends.
Fast Page Scrolling Horizontal and Vertical.
Table of contents and text search.
Simple & fast eBook reader app.
Easily find your PDFs and documents by name.
Adjust the Dark Mode for reading PDF files.
Free All document reader Office App for PDF, Docx, Excel, Word, PPT, Docs


Looking for the PDF Reader & PDF viewer then download this PDF Reader - Free PDF Viewer, all document reader app and read all office documents, word documents, Docx, Excel, and PowerPoint very easily. PDF reader for Android is a simple & lightweight PDF book reader application for reading PDF eBook. The important feature of the fast PDF viewer app is to view PDF files quickly. You can quickly read PDF in dark mode with this PDF app. With a new PDF reading app, you can quickly move to the next page. THE .PDF reader is the best office app to open all office documents. Just download the PDF expert app and read all .PDF files easily. PDF Viewer for Android is one of the best eBook reader applications for reading E-books.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6269035,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=pdfreader.pdfviewer.officetool.pdfscanner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/pdfreader.pdfviewer.officetool.pdfscanner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/pdfreader.pdfviewer.officetool.pdfscanner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/pdfreader.pdfviewer.officetool.pdfscanner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/pdfreader.pdfviewer.officetool.pdfscanner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Hulu for Android TV\",\n \"appId\": \"com.hulu.livingroomplus\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.hulu.livingroomplus\",\n \"icon\": \"https://play-lh.googleusercontent.com/lH3MWp-oZRi39j_XcWqKOtnv7fyLNmH35agp_pR-TdjQLkuEP77HK5_yI9KwKIKI4U01\",\n \"developer\": {\n \"devId\": \"Disney\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Disney\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Watch movies, new TV shows, Hulu Originals, and more with Hulu.

Whether you’re looking to watch new TV series, browse episodes of your favorite series or want to discover and browse the latest movies you’ll have everything you need.

Explore and watch movies or stream TV shows your way. Get news, sports (with Hulu + Live TV plan*) and much more on all of your favorite devices. Browse episodes and watch shows with a plan that works for you—Hulu, Hulu (No Ads), or Hulu + Live TV*. Enjoy your own personalized streaming library.

On top of Hulu Originals, you can also keep up with your favorite sports games this football season** - with NFL, CFB, and more.

*Regional restrictions, blackouts, and additional terms apply.
**Live TV Plan required. Regional restrictions, blackouts, and additional terms apply.

Plus, Hulu is now the home of FX Networks, with 40+ acclaimed series as well as new FX originals.

Here’s what you have access to on all Hulu plans:

• Discover and explore a personalized TV experience and streaming library and get recommendation of series and movies just for you
• Your own unique profiles—create up to 6 profiles so everyone can keep track when they watch
• My Stuff—add shows and movies for quick access to your favorites
• Watch movies or shows at home or on the go
• Premium networks— watch TV series from HBO®, SHOWTIME®, CINEMAX®, and STARZ® for an additional monthly fee

Hulu

Our ad-supported plan lets you explore and browse episodes, watch movies and more in our huge streaming TV library. Stream thousands of episodes of the shows you love, from award-winning Hulu Originals like The Handmaid’s Tale to other popular shows like This is Us and The Good Doctor.

Hulu (No Ads)

Discover the plan that gives you everything you get with the Hulu plan in an ad-free* experience. Plus, you can download from thousands of titles to watch offline.**

*There are a few shows in our streaming library that are not included in Hulu (No Ads) due to streaming rights. Episodes of those shows will stream uninterrupted — there will just be a quick ad before and after each video.
**Select content available for download.

Hulu + Live TV*

Watch on-demand and live TV from 75+ channels, including live news, sports, and more. Plus, get unlimited access to the entire Hulu streaming library through our ad-supported plan. No cable required. No hidden fees when you want to watch shows—There are no equipment rentals fees, or installation appointments.

Whether you want to watch live news, or binge-watch your favorite anime show, with Hulu you choose the plan that works for you.

*Regional restrictions, blackouts, and additional terms apply.

Download the Hulu app now to watch shows, stream movies, sports, and explore much more!

Terms of Use: http://www.hulu.com/terms
Privacy Policy: http://www.hulu.com/privacy
Your California Privacy Rights: https://www.hulu.com/ca-privacy-rights
Do Not Sell My Personal Information: https://www.hulu.com/do-not-sell-my-info

This app features third party software, enabling third parties to calculate measurement statistics (e.g., Nielsen’s TV Ratings).

We may work with mobile advertising companies to help deliver online and in-app advertisements tailored to your interests based on your activities on our website and apps and on other, unaffiliated websites and apps. To learn more, visit www.aboutads.info. To opt-out of online interest-based advertising, visit www.aboutads.info/choices. To opt-out of cross-app advertising, download the App Choices app at www.aboutads.info/appchoices. Hulu is committed to complying with the DAA’s Self-Regulatory Principles for Online Behavioral Advertising and the DAA’s Application of Self-Regulatory Principles for the Mobile Environment.

Please note: This app features Nielsen’s proprietary measurement software which contributes to market research, like Nielsen’s TV Ratings. Please see http://priv-policy.imrworldwide.com/priv/mobile/us/en/optout.html for more information\",\n \"scoreText\": \"1.7\",\n \"score\": 1.66,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hulu.livingroomplus\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.hulu.livingroomplus/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.hulu.livingroomplus/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.hulu.livingroomplus/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.hulu.livingroomplus/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ParentSquare\",\n \"appId\": \"com.parentsquare.psapp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.parentsquare.psapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/7vgPf7jxJBQnOc0f35JyXnnjOqGkERE6mnXIVYHyXG0aA1ye7FweYbiAZ1Txuhpr70k\",\n \"developer\": {\n \"devId\": \"ParentSquare\",\n \"url\": \"http://gplayapi.srik.me/api/developers/ParentSquare\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"What is ParentSquare?
-------------------------

ParentSquare is a safe and secure platform for all school-to-home communication. The two-way group messaging, private conversations, district-wide alerts and notices, and simple user interface keeps everyone connected, creating a vibrant school community.

In today's ed-tech world, schools need a better communication system than relying on hard-to-track emails, lost flyers, missed robocalls, website updates that are never read, or piggybacking on SIS or LMS tools meant for student communication. ParentSquare brings the power of ed-tech revolution to the parents. It reverses the trend for disparate, one-way communication that keeps parents as 'spectators' to their child's education.

Understanding the need for a whole-school adoption, we strive to keep an easy to use interface for ParentSquare, much like the social tools you are used to in today's online digital world. ParentSquare caters to every parent, including those who rarely use technology.

ParentSquare for Android
-------------------------

With ParentSquare for Android, parents can easily connect with teachers and staff at their children’s school from their Android device. The app allows parents to:

- View posts, appreciate and comment
- Sign up for wish list items, volunteer, and RSVP and view your sign ups
- Check dates for upcoming school and class events and add them to your device calendar
- Send private messages (with attachments) to staff members (or other ParentSquare users*) in your school
- Participate in group conversations
- View posted pictures and files
- View the directory of your child’s school*
- View notices (attendance, cafeteria, library dues)
- Respond to absences or tardies*
- Purchase for goods and services offered for sale by the school

* If allowed by your school's implementation\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6078725,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.parentsquare.psapp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.parentsquare.psapp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.parentsquare.psapp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.parentsquare.psapp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.parentsquare.psapp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Video Editor APP - VivaCut\",\n \"appId\": \"com.videoeditorpro.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.videoeditorpro.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/EkkfmrN5n4xyJuv7sqrNANOW13fEYJQiUDDNn1kb5LNont31w0IvjHwObQ42bRwLuAY\",\n \"developer\": {\n \"devId\": \"VivaCut professional video editor\",\n \"url\": \"http://gplayapi.srik.me/api/developers/VivaCut%20professional%20video%20editor\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"VivaCut is an amazing video editor & video maker. Whether you want to make a great movie or just want to share memories and fun moments with your friends, VivaCut is the best choice for you.

Create short videos with one click using cool effect and transition templates! VivaCut is also a professional video editing app with all the editing features. Multi-layer timeline, chroma key and green screen features help you create cinematic videos with music for YouTube, Instagram and TikTok. Want to get more likes on your social media? Download this video editor & video maker now!

Professional Video Editing App
[Green Screen/Chroma key] Combine/mix videos like a Hollywood-level Movie. Best chroma key video editor app & video background changer editor.
[Keyframe Animation] Apply to Mask, Video Collage, Text, Stickers, Emoji, etc. Pro aesthetic video editor app.
[Mask] Linear, mirror, radial, rectangle and oval, all for the scene. Full screen video editor for youtube.
[Music Marker] Mark the track and add effects according to the music rhythm. Pro video editor app with music and effects.
[Audio Extraction] Aesthetic video editor with transition effects: extract music/audio from any video. Pro video editing app with sound effect.
[Templates]Create your own music videos by automatically adding unique filters and cool effects to video templates!

Best Video Editing App with all features
[Multi-layer timeline] An intuitive and sleek editing interface with zoom for frame by frame precision with overlay video editor app
[Text] Edit, duplicate and modify styles (variety of fonts & emoji, color, opacity, shadow, stroke)
[Video Transition] Create amazing with cinematic overlay video editor with transition effects in VivaCut, a movie level video background changer editor.
[Video Adjustment] Control Brightness, contrast, saturation, hue, color temperature, vignetting and enhance video quality
[Filters] Edit videos/combine video clips with adjustable filters and effects.
[Glitch Effects] Coolest video editing app with glitch effects and transitions!
[Trim videos] Professional tools developed for precise Video Editing App
[Split videos] Split videos and optimize for sharing
[Combine video clips] Merge clips into a stunning video with transitions effects, combine video clips into one video. VivaCut - best video maker.
[Speed Control] Fast & slow motion video like a pro, only with VivaCut Video - Pro Video Editing App!

Video Collage and Advanced Video Editing App
[Picture in Picture] Combine clips together to create double exposures and eye-catching YouTube videos with transitions for free.
[Collage] Add pictures to your clips and edit videos then go viral with VivaCut!
[Overlay options] Customize layers with tools such as opacity and blending.
[Blend videos] Mix videos try powerful blending modes such as Color Burn, Multiply, Screen, Soft Light, Hard Light ect. VivaCut - best video background changer editor.
[Slideshow] Pro Aesthetic Video Editor App helps you telling story with pictures and music.

Save and Share
[Custom video resolution] Export videos in 720p, 1080p and 4k
[Rename] Rename video and mark memory with PRO aesthetic video editor.
Save videos directly with transitions effects to your device’s gallery, non-destructive video maker. One-click sharing to Youtube, Instagram, TikTok, snapchat and Etc.

VivaCut for Android is a pro video editor and best video editing app with all features you need! It‘s a video maker with music for cutting and splitting videos. Take a leap for your video and experience the next PRO video editor generation.

# About subscription

- Your subscription automatically renews unless auto-renew is turned off at least 24-hours before the end of the current period.
- Your account will be charged for renewal within 24-hours prior to the end of the current period\\u2028.

Acknowledgements:
Music by audionautix.com and https://icons8.com/music/\",\n \"scoreText\": \"4.9\",\n \"score\": 4.864076,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.videoeditorpro.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.videoeditorpro.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.videoeditorpro.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.videoeditorpro.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.videoeditorpro.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"CocoFun - Funny Videos & Memes\",\n \"appId\": \"com.icocofun.us.maga\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.icocofun.us.maga\",\n \"icon\": \"https://play-lh.googleusercontent.com/Atq0oeqi_m5WUwyYXg51z4qbg-Pqn238FZi7UnFRbmJo41auaCrLd1ViJN_72qqXtA\",\n \"developer\": {\n \"devId\": \"SUNGAI PTE.LTD\",\n \"url\": \"http://gplayapi.srik.me/api/developers/SUNGAI%20PTE.LTD\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Do you need laughter in your life? If the answer is yes, CocoFun is your right choice!

As a happy, free, and safe community, humor is always the first priority in CocoFun. Here we have the most hilarious videos, viral memes, and bravo comments to keep you laughing.
Meanwhile, you could make friends with humor personalities, sharing humor and insights with each other. You can also share interesting content on CocoFun with your family and friends.
You could enjoy CocoFun at any time and anywhere, enrich your life, and make through tough times easier.

Click "Install" to START YOUR DAY WITH COCOFUN RIGHT NOW!

Contact us
Email: support_us@icocofun.net
Feedback: feedback@icocofun.net\",\n \"scoreText\": \"4.5\",\n \"score\": 4.521951,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.icocofun.us.maga\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.icocofun.us.maga/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.icocofun.us.maga/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.icocofun.us.maga/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.icocofun.us.maga/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Moovit: Bus & Train Schedules\",\n \"appId\": \"com.tranzmate\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.tranzmate\",\n \"icon\": \"https://play-lh.googleusercontent.com/ODhoe6rHOVj4hPRJuywX_SPy_vl3ZiKAe2wWHDErdINM1G-2_8zyiJJ35VpeYA5dU8E\",\n \"developer\": {\n \"devId\": \"Moovit\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Moovit\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Moovit is one app for all your urban mobility rides 🚍🚇🚘🛴.

🏆 "If you need to get anywhere by mass transit, you need Moovit...it will open up a new world for you, even if you just travel domestically" - USA Today 🏆

Transportation is an integral part of urban living. Whether you ride the train🚆, subway🚇, bus🚍, light rail🚈, ferry⛴️ or metro, use dockless scooters🛴, bikes🚴\\u200d♀️, ride-sharing like Uber🚘 or Lyft, getting the best urban mobility information is critical. Moovit provides riders with a one-stop-shop journey experience to help them get from point A to B in the easiest and most efficient way. Get train and bus times, maps, live navigation, and real-time arrival information with ease so you can plan your trip with confidence. Pay for your ride. Find critical alerts and service disruptions for your favorite lines. Get step-by-step directions of optimal route bus, train, metro, bike, scooter, or a combination of them.

Moovit guides more than 930 million users in over 3400 cities throughout the world. Commuters will find updated bus times and train times, transit maps, and, where available, real-time line arrivals. Locate nearby bus stops and train stations, travel with on-the-go live navigation guidance, receive get-off alerts at your destination to ensure a smooth ride.. This is why Moovit has been named one of the best apps of the year in 2016 and 2017 by the Google Play and App Stores, respectively.

🚍 Real time arrivals. View real-time arrival updates, which are taken directly from GPS devices positioned on buses and trains. Avoid wasting time guessing train or bus times

💳 Digital payment. Purchase bus & train tickets and validate your digital pass with a tap using your mobility wallet (in supported metros)

Real time alerts. Know about issues ahead of time by receiving service alerts such as emergency or unexpected disruptions, delays, traffic jams, new construction, and more so that you can plan ahead if your bus time or train time changed

🔔 Live Navigation. Get step-by-step bus live directions and other transit directions with live guidance from A-to-B: Know how long you need to walk to your station, view the arrival time of your line, receive get-off alerts at your destination & more

🚏 Stops' visualization. Use augmented reality to locate your bus or train stop with "Way Finder"

📱User reports. Moovit’s users report issues found with stations, line service, and schedules so that we can inform all nearby riders about what’s going on in their area

🚩Favorite lines, stations, and places. Get easy access to lines, stations, and places you ride and visit all the time. Plus, get real-time updates if/when there are changes to your Favorite lines in case your bus time or train time is impacted!

🚴 Bike routes. Get bike routes in addition to the bus, subway, train, or metro trip plans. If you ride bikes (yours or shared) we can plan a route that includes the train or bus. Moovit will help you plan a trip that meets your transit-needs. Bike docking stations are updated in real-time. Bike trip plans are only available in supported metro areas

🗺️ Maps view. View all stations, routes, and lines on the subway or bus map. Additionally, maps are available in PDF for when you’re offline, or underground on the subway

Moovit is the #1 urban mobility app in the world. We’re proud to collaborate with public transit agencies across the US, including:
* MTA
* NJ Transit
* MBTA
* LA Metro
* SFMTA Muni
* BART
* Caltrain
* CTA
* Metra
* WMATA
* MTA Maryland
* TriMet
* Sound Transit
* SARTA
* PARTA
& more

You only need one app on your phone to navigate nearby buses and transit in the U.S. and across 112 other countries and in 45 languages!

Contact us:

https://moovitapp.zendesk.com/hc/requests/new
moovit@Facebook, Twitter\",\n \"scoreText\": \"4.5\",\n \"score\": 4.488504,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.tranzmate\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.tranzmate/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.tranzmate/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.tranzmate/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.tranzmate/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Discover Mobile\",\n \"appId\": \"com.discoverfinancial.mobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.discoverfinancial.mobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/EbIw2XpbAvJtjWytHK5SMtUXvu0ASUyAc7jbsi1GfqlX8qbXaZF8F_NqWHdcG0Pgpys\",\n \"developer\": {\n \"devId\": \"Discover Financial Services\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Discover%20Financial%20Services\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"You can manage your Discover credit card and bank accounts conveniently and securely from anywhere, using Discover’s Mobile App. Check your account balance, view your account info, make and edit payments, manage your rewards, and more - all from your mobile device.

FAST ACCOUNT ACCESS
• Log in quickly with a 4-digit Passcode
• Enable Quick View to view account information without logging in

MANAGE YOUR DISCOVER CREDIT CARD ACCOUNT
• Check your balance and available credit, and view or download monthly statements
• View and search transaction activity
• Make payments and edit or cancel pending payments
• Redeem rewards, in any amount, as a statement credit towards your monthly bill, including your minimum payment due
• Redeem rewards, in any amount, as an electronic deposit to your bank account
• Redeem rewards for gift cards starting at only $5. Plus, get an added bonus on every card
• Link your Discover card to your Amazon and PayPal accounts to make it easier to earn and pay with rewards for eligible purchases at checkout
• View your FICO® Credit Score* for free and learn what it means to lenders
*See FICO® Credit Score terms at Discover.com/FICO
• Freeze or unfreeze your account to prevent new purchases, cash advances, and balance transfers
• Send and receive messages with Discover Customer Service
• View and edit your account profile
• Activate a new card or report a current card as lost, stolen or misplaced
• Use the Travel Notification feature to help ensure uninterrupted use of your card while traveling
• Sign up to receive alerts about your account

MANAGE YOUR DISCOVER BANK DEPOSIT ACCOUNT AND PERSONAL LOAN ACCOUNT
• View account balances, summary and transaction history
• Track account activity and schedule transactions
• Transfer money
• Pay bills
• Deposit checks
• Find ATMs - Nationwide ATMs available to use your Discover debit card
• View statements
• View and send secure messages
• Make Personal Loan payments

Zelle and the Zelle related marks are wholly owned by Early Warning Services, LLC and are used herein under license

Do you have questions or comments about Discover’s Mobile App? Email us at: mobappqs@service.discovercard.com

Mobile Privacy Statement:
https://www.discover.com/privacy-statement

Mobile Terms of Use:
https://www.discover.com/credit-cards/help-center/discover-terms-of-use.html\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6898513,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.discoverfinancial.mobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.discoverfinancial.mobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.discoverfinancial.mobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.discoverfinancial.mobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.discoverfinancial.mobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Wendy’s\",\n \"appId\": \"com.wendys.nutritiontool\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.wendys.nutritiontool\",\n \"icon\": \"https://play-lh.googleusercontent.com/vkbi0tuXCO6n_dk3djoGDGAdPMoxzDy6c7uOh3TwWn25pfUYHhOiAV9iw3t1CzHgvU6t\",\n \"developer\": {\n \"devId\": \"Wendy's Int'l., LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Wendy's%20Int'l.%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"If you love Wendy’s—which, who doesn’t?—you need this app. Get your faves at your fingertips, earn Rewards, catch exclusive offers, and order ahead. Look, we could keep going, but they only give us so many characters here. See below if you wanna dive deep.

Earn Rewards
Where can you score free food? Right here. All you gotta do to get FREE Wendy’s is EAT Wendy’s. Eat, earn Rewards points, and trade ’em in for anything in the Rewards Store.

Exclusive Deals & Offers
This app is your hookup. Get app-exclusive offers on breakfast, dinner, and everything in-between. All the deals, zero FOMO.

Order Ahead
Let’s be real. Speaking to speakers can be rough. Reduce the awkward shouting in your life and order right from your phone.

Customize Your Order
No mayo? No problem. Choose what you want and what you don’t, and we’ll make it happen.

Save Your Faves
Have a go-to Wendy’s order? Of course, you do. Save it to your faves for fast and easy re-ordering.

Mobile Pay
Who carries cash anymore? Load $$$ or use a credit card and pay from the app. You can also add a gift card and never guess the balance again.

Get Menu & Nutrition Info
Find the deets on local pricing, ingredient lists, allergens, nutritional info, and even count calories & carbs.

Support Foster Care Adoption
The Dave Thomas Foundation for Adoption’s mission is to find forever families for children waiting in foster care. Every donation helps.

We always love hearing from you. Tell us what’s on your mind by:
• Live chatting in-app
• Leaving us a message in-app
• Texting or calling us at 888-624-8140\",\n \"scoreText\": \"1.8\",\n \"score\": 1.7598813,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.wendys.nutritiontool\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.wendys.nutritiontool/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.wendys.nutritiontool/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.wendys.nutritiontool/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.wendys.nutritiontool/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Oculus\",\n \"appId\": \"com.oculus.twilight\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.oculus.twilight\",\n \"icon\": \"https://play-lh.googleusercontent.com/TtK35FoW6K5NE1dJqe1oj0N4ipJIJNdIk9jhe-2G0UEAdWNa1bWB5tdcfm4eQ2fXjA\",\n \"developer\": {\n \"devId\": \"Facebook Technologies, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Facebook%20Technologies%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Manage your Oculus VR device, explore over 1,000 apps in the Oculus Store, discover live VR events and so much more.

With the Oculus app you can :

- Browse and buy VR games and experiences from the Oculus Store
- Remotely install VR apps to your Oculus Rift or Rift S
- Reserve your virtual seat for live events, sports and concerts.
- Find friends in VR and share experiences together
- Get notifications about other friends in VR, events you’re into, the latest content, and more.
- Manage and monitor your Oculus devices, accounts and notifications.\",\n \"scoreText\": \"3.5\",\n \"score\": 3.4686732,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.oculus.twilight\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.oculus.twilight/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.oculus.twilight/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.oculus.twilight/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.oculus.twilight/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Elevate - Brain Training Games\",\n \"appId\": \"com.wonder\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.wonder\",\n \"icon\": \"https://play-lh.googleusercontent.com/CZ6XpP4sihh0VGkMFRif4FVplpvQnaUw5rujfc-xRz2GHDAa9eRwlsk23qegQEay\",\n \"developer\": {\n \"devId\": \"Elevate Labs\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Elevate%20%20Labs\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Elevate is a brain training program designed to improve speaking abilities, processing speed, memory skills, mental math, and more. Each person is provided with their own personalized learning program that adjusts over time to maximize results.

The more you train with Elevate, the more you’ll improve critical cognitive skills that are proven to boost productivity, earning power, and self-confidence. 90%+ report improved vocabulary, memory, math skills, and overall mental sharpness when they frequently use Elevate to challenge their minds. Elevate is for everyone. Your age or profession don't matter. Adults from all backgrounds can benefit from our app.

Elevate offers a 7-day free trial as well as a free version. To access the free version, tap the X in the upper left-hand corner after you sign up for an account.

IN THE NEWS

“Elevate comes out ahead” in the battle of the brain training apps. - CNET

Elevate is a “cognitive pick-me-up” with games that are “good for mental breaks throughout the workday.” - Washington Post

FEATURES

40+ Brain Training Games: Improve your cognitive skills like focus, memory, processing, math, precision, and comprehension with 40+ brain training games and puzzles.
Performance Tracking: Measure your performance against yourself and others. Weekly reports highlight your key accomplishments and opportunities.
Personalized Workouts: Customize the focus of your daily workouts to train the mind skills you need most, and choose between 3 and 5 games and puzzles.
Adaptive Progression: Train your brain with math and word exercises that get harder as you progress to ensure your experience remains challenging.
Workout Achievements: Start a workout streak and stay motivated with 150+ achievements to win while you train your mind.
• And more!

WHY YOU NEED ELEVATE

• Express yourself more effectively in writing. Learn to write with clarity, persuasiveness, and concision.
• Improve your spelling and punctuation. Avoid common writing pitfalls.
• Become a better reader and learner. Flow through words with ease. Read everyday materials faster and with greater understanding.
• Expand your vocabulary. Learn how to use thousands of new words with fun games.
• Quickly and easily solve everyday math problems. Get better at comparing prices, splitting bills, and calculating discounts and markups.
• Boost your memory. Get shopping lists out of your pocket and into your mind. Never forget buying the milk you need or the chocolate you've been craving.
• Speak confidently. Advance your speech with new words. Become more articulate and develop clear expression and tone.
• Feel mentally sharper as an adult. Exercise your mind and continue to learn with Elevate's proven training program.

RESEARCH BEHIND ELEVATE

Elevate's brain games and puzzles are designed in collaboration with educational experts and are based on proven educational techniques. Elevate’s mental workout algorithms draw from cognitive research in attention and memory studies to develop a personalized training program for each user. Elevate's effectiveness is proven by independent research on adults. 93% of people who use Elevate frequently feel mentally sharper and more confident in key skills.

For additional information about the app, please read our Terms of Service
(https://www.elevateapp.com/terms) and Privacy Policy (https://www.elevateapp.com/privacy).\",\n \"scoreText\": \"4.6\",\n \"score\": 4.57032,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.wonder\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.wonder/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.wonder/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.wonder/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.wonder/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Translate All Languages\",\n \"appId\": \"com.translate.all.languages.translator.free.voice.translation\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.translate.all.languages.translator.free.voice.translation\",\n \"icon\": \"https://play-lh.googleusercontent.com/RT7mw8JCYraxkS1BRjZF8baJ_YfjUd2YCinqf4xCzniZDB8sH4AGIfF3WNqZj9Rnzh8\",\n \"developer\": {\n \"devId\": \"Tools & Utilities Apps\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Tools%20%26%20Utilities%20Apps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Language Translator - Speak and Translate app converts text, voice, speech, and words into multiple languages. Translate all is a language translation expert that allows you to translate from English to any other language. More than just a language translation, it offers instant voice and text translations in all languages. The translator app has overcome the language barrier for business, travelers, and education far and wide.

All Language Translator App is an amazing tool for Android devices that improves your language learning skills. A language translator is an interpreter of words to learn new languages. The interpreter app will also work as a quick dictionary app, which will automatically translate text or translate words into any desired language. Changing languages is so simple and easy with this voice text translator.

Language Translator: Speak and Translate All is a leading/professional translation app to translate between languages using features like text translator, voice translator, and text to speech. The voice translator app is especially useful when you are out of the country or in a place where you don't know the local language or somewhere foreign. Image Translator app allows you to speak and translate between multiple languages. Translate Now, a dictionary and translator offers a fun and efficient way to memorize vocabulary.

The all languages translator was developed with ease of use in mind and is ideal for beginners. Image Translator for Android is a speech-to-text translation for your daily needs. Voice translation is an easy way to speak between people in different languages by using the global translation app, just click on the microphone icon and speak a word or sentence in your native language. This will translate the language selected for translation into the desired language. You can also copy-paste the translation from the translated text and send it to your friends.

Best Language Translator - Speak &Translate App for Students, Travelers, or Tourists. Enjoy the meanings of the word from the language of any country in the world to other languages. Your mobile is now your interpreter, so translate into any language with an instant translator.


Best Features of Translate Now - Language Translator Voice and Text:


🌐 Translate words and sentences easily
🌐 Speak and translate text
🌐 Listen to the translated text
🌐 Easily copy and paste text anywhere
🌐 Share the translated text with your friends
🌐 Detailed history
🌐 Simple and attractive user interface
🌐 Translator with voice recognition
🌐 Worldwide recognizable all language translator
🌐 Completely free and faster
🌐 Translate the appearance of more than 100 languages in real-time
🌐 Copy and delete text with one click

Highlights of All Language Translator


* A simple text-to-speech tool with an easy speech and voice translator.
* Translate text sentences or paragraphs in more than 100 languages.
* Complete freedom of speech to text is translated with the dictionary of daily words.
* Easy to understand speech and language translator to hear text with crystal clear voice.
* All the world's largest language selection in the desired language for translation.
* Share translated words and documents with friends.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.664751,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.translate.all.languages.translator.free.voice.translation\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.translate.all.languages.translator.free.voice.translation/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.translate.all.languages.translator.free.voice.translation/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.translate.all.languages.translator.free.voice.translation/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.translate.all.languages.translator.free.voice.translation/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Voice Recorder: Memos & Audio\",\n \"appId\": \"com.korrisoft.voice.recorder\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.korrisoft.voice.recorder\",\n \"icon\": \"https://play-lh.googleusercontent.com/CjfbPxJn9aZAb_u0I08zgfj8odxsVPl4hFHKjA8Gz1ZGsrBPJ2uYkVzZbZt38nYrvhM\",\n \"developer\": {\n \"devId\": \"Sappalodapps Development\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Sappalodapps%20Development\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Voice Recorder Features:
• Audio recorder: Record voice memos or other sounds quickly and easily.
• Adjust audio settings: Including mic gain and audio quality.
• Optional silence filter: Automatically pauses the recording when there is silence.
• Set recording as personalized ringtone, default ringtone, notification, or alarm.
• Real-time Caller ID with spam warning: Always know who’s calling.
• Voice record: One-click recording directly after phone calls.
• Save, name, and share your recordings easily.

Screen Recorder Features:
• Optional face cam: Give your screen recordings a commentary.
• Optional Audio: Record sound with your screen recordings.
• 3-second countdown: Give yourself preparation time.
• Useful settings: Adjust the screen recording quality and audio to your requirements.
• Save, rename, and share your recordings easily.

With this voice recorder app, your phone instantly becomes a powerful sound recorder with many great features, including settings to adjust the mic gain and audio quality. On the recording screen itself, you can pinch and extend the recording ring to adjust the sensitivity of the mic, and you can see the recording levels by the changing color.

The screen recording feature is packed full of useful options to make exceptional screen recordings with ease. You can choose to record with audio, using all the great audio options found in the Voice Recorder feature. You can also turn on the face cam to give a video commentary to your screen recording.

Voice Recorder is a recording app with a difference. It is more than just a standard sound recorder app – it is a recording app with a smart link to calls. It allows you to record quick audio reminders right after a phone call is completed, and the smart caller ID functionality automatically adds the caller’s name to the recording title – even for contacts not in your phone book. With Voice Recorder you can record a voice note or reminder to yourself, about the phone call you just completed – it will automatically be saved with the caller’s name and number as part of the title.

With our handy recorder app, there is no more forgetting what you just agreed on during a phone call while you look for a pen and paper to write down a date, time, or contact name. At the end of each call, you will see a screen with the caller’s details, and a one-click function that allows you to record an audio memo.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4374194,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.korrisoft.voice.recorder\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.korrisoft.voice.recorder/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.korrisoft.voice.recorder/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.korrisoft.voice.recorder/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.korrisoft.voice.recorder/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Smart Security\",\n \"appId\": \"com.smartsecurityxzt\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.smartsecurityxzt\",\n \"icon\": \"https://play-lh.googleusercontent.com/AVWBHPPRImi0jFqVVPtmh-VTQMH07lfqDcG1hAaETI4X22NjSbTlor_-uOdn8G56rZeE\",\n \"developer\": {\n \"devId\": \"Magic Solutions Apps\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Magic%20Solutions%20Apps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Why do our users believe that Smart Security is an ALL-IMPORTANT app?

🚀 Smart Booster and Cooler
Are you tired of deleting unnecessary apps and system junk files taking up your memory? Welcome to the 21st century! Enjoy the rejuvenated speed of your device with Smart Booster cleaning your cache memory and junk files.

🛡Smart Defender
Are you still overly worried about threats on your device? Our Defender capabilities can help you to relieve that stress. Smart Defender is constantly monitoring and protecting you from various threats.

🔋 Smart Battery Life
Is your battery heating up and losing its power faster than usual? Smart Battery Life will help you to cool your battery and enable longer life.

SMART SECURITY FEATURE LIST:

📍Mobile Booster: Our state of the art mobile booster helps you to clear your RAM. Check your new speed on the speed test.

📍CPU Cooler: CPU Cooler helps you to remove tasks and processes that are loading your phone.

📍Battery Booster: Battery Booster helps you to save your battery life by hibernating apps in the background.

📍Junk Cleaner: Smart Security is your one solution in cleaning all that junk, residual, and cache files from your phone. This, in turn, results in a faster speed.

📍Defender: Scans and detects for all kinds of threats on your device. We continuously monitor your phone for vulnerabilities and prevent possible threats even when the app is closed. Take control of your information and privacy with our trusted Defender feature.

Please, note! We pride ourselves in not sharing any of your personal information with any 3rd party parties. All your information is safe and secured.

Enjoy a faster and refreshing mobile experience with the help of Smart Security.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.51676,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.smartsecurityxzt\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.smartsecurityxzt/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.smartsecurityxzt/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.smartsecurityxzt/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.smartsecurityxzt/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"BET+\",\n \"appId\": \"com.viacom.betplus\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.viacom.betplus\",\n \"icon\": \"https://play-lh.googleusercontent.com/X012LWfBTMDFPr3vbamWRstaq5b4Zaz95m5KsqO_PpVnk0Ga4gAFvA6Qp7mW5QZ4Ii0\",\n \"developer\": {\n \"devId\": \"BET Networks\",\n \"url\": \"http://gplayapi.srik.me/api/developers/BET%20Networks\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"BET+ is a premium online streaming service with over 2,000 hours of your favorite Black content from the best Black creators. Now you can stream Black culture: the movies you remember, the TV shows you love and the new series you can't live without. And they're all in one place, commercial free.

Everything from classics like Martin and House of Payne to modern favorites like The Ms. Pat Show and All the Queen's Men is available on BET+. This service also includes exclusive, original content, including College Hill: Celebrity Edition, Martin: The Reunion and Kingdom Business. Plus, there are movies, plays and new series from Tyler Perry that you'll only find on BET+, including Tyler Perry's Ruthless and Tyler Perry's Bruh.

Check out some of the hits and exclusives:

•\\tCollege Hill: Celebrity Edition
•\\tMartin: The Reunion
•\\tKingdom Business
•\\tThe Porter
•\\tTyler Perry's Ruthless
•\\tAmerican Gangster: Trap Queens
•\\tReal Husbands of Hollywood
•\\tBlock Party
•\\tA Royal Surprise
•\\tTrophy Wife
•\\tA Message from Brianna
•\\tFirst Wives Club
•\\tTyler Perry's Madea's Farewell Play
•\\tB-Boy Blues
•\\tDear Best Friend
•\\tThe Ms. Pat Show
•\\tMartin
•\\tTyler Perry's Bruh
•\\tThe Millennial
•\\tNorth of the 10


APP FEATURES:

•\\tWith your own personalized watch list, you can save your favorites, and add new movies and series to enjoy.

•\\tIf multiple people are using BET+, there are now individualized user profiles to keep each person's favorites in one place.

•\\tEnjoy Cross-Platform Continue Watching, a new feature that allows you to start watching an episode or movie on one platform, then pick up where you left off, even on a different platform.

•\\tStart your subscription today! Your first seven days are free, then your paid monthly BET+ subscription begins. You can avoid auto-renew charges by canceling at least 24 hours before the end of your trial or current billing period.

•\\tChromecast support lets you cast your favorite shows to your TV. Just hook up your TV to your Chromecast device.

Full episode streaming is available within the U.S. only.

For help, visit www.bet.com/betplus/help or contact support@bet.plus.

The Terms of Use for this app include arbitration for disputes -- see https://www.bet.plus/legal/aqgb7j/arbitration-faqs

Privacy Policy: https://privacy.paramount.com/en/policy

Cookies Policy: https://www.viacomcbsprivacy.com/cookies

Do Not Sell My Personal Information: https://www.viacomcbsprivacy.com/donotsell\",\n \"scoreText\": \"3.7\",\n \"score\": 3.7407224,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.viacom.betplus\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.viacom.betplus/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.viacom.betplus/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.viacom.betplus/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.viacom.betplus/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"My Water Reminder: Drink Water\",\n \"appId\": \"com.water.reminder.tracker\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.water.reminder.tracker\",\n \"icon\": \"https://play-lh.googleusercontent.com/4AUrVi-qHA6CbOs9TezRrB5-pNsvngk4OqEXPUupsnEwTMF16FunpLQCoHz7yTyo4y0w\",\n \"developer\": {\n \"devId\": \"Water Tracker Reminder\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Water%20Tracker%20Reminder\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Doctor agree.
Because your body is made up of 70% water, it is vital to stay hydrated.
By the time you want to drink water, your body is already dehydrated.
It's not that we don't want to drink water.
It's just hard to remember throughout the busy day.

This is why we created Water Tracker.
Water Tracker will set automatic smart water reminders throughout the day.
You can set water reminders every 1.5hrs to 3hrs.
Just input how much water you drank at the moment on the water reminder.

Staying hydrated has immense health benefits.
1. Water lubricates the joints

2. Water forms saliva and mucus

3. Water delivers oxygen throughout the body

4. Water boosts skin health and beauty

5. Water cushions the brain, spinal cord, and other sensitive tissues

6. Water regulates body temperature

7, The digestive system depends on water

8. Water flushes body waste

9. Water helps maintain blood pressure

10. The airways need water

11. Water makes minerals and nutrients accessible

12. Water prevents kidney damage

13. Water boosts performance during exercise

14. Water reduces the chance of a hangover\",\n \"scoreText\": \"4.7\",\n \"score\": 4.691824,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.water.reminder.tracker\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.water.reminder.tracker/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.water.reminder.tracker/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.water.reminder.tracker/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.water.reminder.tracker/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Groupon – Deals & Coupons\",\n \"appId\": \"com.groupon\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.groupon\",\n \"icon\": \"https://play-lh.googleusercontent.com/BazyRFLG5Jx_gzvD51k_5GCphlcKz_W7Wx1p8VB8kiIxTBc_WrtgQ2m6HI6Xq7Rc4Ago\",\n \"developer\": {\n \"devId\": \"Groupon, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Groupon%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Download Groupon and save up to 70% on the things you need every day. Find great deals on all the best stuff to eat, see, and do near you and around the world.

Save on everything you’re looking for. Whether you’re craving a new restaurant in town, or daydreaming about tropical travel, a daily replenishment of deals delivers all the discounts you like.

Every deal is available to use immediately, so you’re never more than a few taps away from a relaxing massage, tickets to the night’s hottest event, or a great pizza joint.

With the Groupon app you can:
• Get promo codes and special savings alerts for deals near you, instantly on your mobile device
• Buy and redeem Groupon deals directly from your mobile device, no need to print vouchers or clip coupons
• Read customer reviews and write your own
• Share deals with friends and family

And there’s more:
• Instantly redeem on-demand deals on food, fun, fashion, and wellness, without having to print a voucher
• Get up to 30% cash back at participating Groupon+ restaurants
• Travel to exotic destinations and stay at the fanciest hotels with Groupon Getaways
• Shop for fun themed collections for holidays and events

Put down the coupon book and pick up the Groupon Android app—your ticket to explore the best your city has to offer at savings of up to 70% off.

Need help? Contact us at https://www.groupon.com/customer_support\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6125636,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.groupon\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.groupon/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.groupon/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.groupon/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.groupon/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Norton Secure VPN: Wi-Fi Proxy\",\n \"appId\": \"com.symantec.securewifi\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.symantec.securewifi\",\n \"icon\": \"https://play-lh.googleusercontent.com/iKND11jsEeC3vWqrLy0sX55X6QoSU_r9qmzCWkPSY7F7NVQyiKWiOXf2zLqNG2HQj5j4\",\n \"developer\": {\n \"devId\": \"NortonMobile\",\n \"url\": \"http://gplayapi.srik.me/api/developers/NortonMobile\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Keep prying eyes out of your mobile activity online with Norton Secure VPN for Android. Start your free 7-day VPN trial today*.

Protect your mobile online privacy when connected to Wi-Fi at home or while on-the-go. Norton Secure VPN helps ensure private, fast internet access wherever you are.

Simply put, Norton Secure VPN offers protection from hackers trying to steal information you send and receive on a shared network from your phone or tablet. Help take your mobile security to the next level with Norton Secure VPN.

Our global servers dynamically scale with the number of users, plus, our no-log VPN means we don’t track or store your online activities.

Bank-grade VPN encryption helps make your data unreadable when using a Wi-Fi network. Norton Secure VPN for Android helps maintain your privacy by preventing others on the network from eavesdropping on your internet activity.

Norton Secure VPN helps secure your browsing history, IP address, streaming location, and web activity by safeguarding the personal information you send and receive over Wi-Fi.

Global Servers:
While at home or on-the-go, our global high-speed VPN servers let you change your virtual location or you can auto-select the best region. Our servers dynamically scale with the number of users to ensure the best performance.

Split Tunnelling:
Choose to secure and anonymize sensitive data without losing access to local services. Route some of your device traffic through the encrypted VPN tunnel while allowing other apps or services to access the internet directly. Encrypt, secure and anonymize the traffic you choose, without compromising streaming sites that may block VPNs or being subjected to bandwidth throttling during gaming.

Kill Switch:
If your VPN connection drops, you’ll be automatically disconnected from the Internet to help maintain your privacy. This helps ensure that your IP address, location or identity do not accidentally get exposed, or that the security, encryption and anonymity of your internet connection is compromised.

Ad-tracker Blocker:
Norton Secure VPN anonymizes your cookie data to help block online advertisers, cell phone companies and IP providers from tracking your browsing activities across the web.

No-log VPN:
Unlike some other VPNs, we don’t track, log, or save your browsing activities.

Compromised Network Detection:
Choose to automatically secure your connection if you connect to suspicious Wi-Fi networks.

Bank-grade Encryption:
Stay anonymous online. Help protect your data through an encrypted tunnel that masks your activities and blocks hackers, mobile carriers, and ISPs from accessing your information while on Wi-Fi.

Even beyond encryption, Norton Secure VPN is built by NortonLifeLock–a trusted leader in consumer cybersecurity–and is loaded with features like Split Tunnelling, a Kill Switch, Compromised Network Detection, and more.

Subscription Details

* Free trial requires activation of annual subscription (see in-app product pricing)

✔ Cancel in app store account settings or within your Norton Secure VPN account before the end of the trial to avoid payment

✔ After a free trial, your subscription will start and renew automatically annually unless canceled

✔ You can manage your subscriptions and automatic renewal may be turned off by going to app store account settings or within your Norton Secure VPN account after purchase

✔ Free trial is valid for one-time use per app store account

Awards

Norton Secure VPN ranks #1 overall for network performance.††
††Based on a test of nine other leading VPN products in the VPN Products Performance Benchmarks report conducted by PassMark Software commissioned by NortonLifeLock, March 2021.

Our Norton Secure VPN is no longer available for use within India as a result of governmental regulations requiring the logging and saving of user data, but you can still use your subscription when traveling outside of India.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.386621,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.symantec.securewifi\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.symantec.securewifi/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.symantec.securewifi/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.symantec.securewifi/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.symantec.securewifi/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"onX Hunt: GPS Hunting Maps\",\n \"appId\": \"onxmaps.hunt\",\n \"url\": \"http://gplayapi.srik.me/api/apps/onxmaps.hunt\",\n \"icon\": \"https://play-lh.googleusercontent.com/wEpxg3bRBb80FVM2Z23Xe9IxPvcM1tr3NmVHGB0njHt-G_CcDWwm_bYK4tI46vhl6eY\",\n \"developer\": {\n \"devId\": \"onXmaps\",\n \"url\": \"http://gplayapi.srik.me/api/developers/onXmaps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"★★★ Voted “one of the most innovative hunting products of the decade” by Field & Stream, the onX Hunt App is the must-have tool for the crews at MeatEater, Mossy Oak, and Realtree Outdoors.★★★

Know where you stand with the most trusted and accurate GPS satellite and topo maps. Use onX Hunt as a fully-functioning GPS navigation app on your phone. View private and public property land ownership data, landowner names, and property lines on your custom maps. Easily view hunting units, mountain roads and trails, US topographic maps, and more.

▶ FREE TRIAL:

While the onX Hunt App and many of its features are free, you’ll start a free Premium State Membership trial when you install the App. This allows you to try a full-featured Premium State Membership for seven days.

▶ FREE HUNTING APP FEATURES:

• NO ADS
• Satellite Maps and 24K Topographical Maps with GPS Navigation
• 3D Maps on your phone and desktop computer
• Local weather conditions, forecasts, wind speeds, and wind direction sourced from Weather Underground and the National Oceanic Atmospheric Administration (NOAA)
• Aerial / Topographic Hybrid overlay to see contours with satellite imagery
• Hunting Zones, Areas, or Game Management Units (GMU) for general game species in all 50 states
• Free Hunting GPS app with compass, Tracker, and Waypoints
• Mark Waypoints with icons to navigate back to your vehicle, camp, or stand
• Easily measure distances between tree stands and blinds with the Line Tool
• Measure food plot acreage with the Shape Tool
• Track the distance, coordinates, duration, and speed of your hunt with our GPS Hunting Tracker
• Visualize wind direction at treestand locations
• Desktop version for scouting at home and syncing data to your mobile: www.onxmaps.com/web

▶ OFFLINE GPS FUNCTIONALITY:

The onX Hunt App turns your phone into an outdoor handheld GPS navigator using the built-in GPS to display your location on the sat / topo map. Cellular coverage is NOT needed as tile-saving technology allows you to save basemaps and layers for offline navigation.

▶ DESKTOP MAPS: Memberships also include access to our online Web Hunting Map (www.onxmaps.com/web).

• Scout from the comfort of your home
• Sync markups and tracks between devices
• Print unlimited free maps

▶ PREMIUM STATE MEMBERSHIP:

With a Premium State Membership, you gain access to our proprietary hunting GPS maps developed by our GIS team. A Premium State Membership costs $29.99 / year. Get all the great features of the free onX Hunt App PLUS the additional benefits of:

• Public land like Forest Service, Bureau of Land Management (BLM maps), Wildlife Management Areas, County and State land hunting maps, Timber Lands, and more
• 3D Maps on your phone and desktop
• Optimal Wind and Wind Calendar for stand locations and hunt planning
• Landowner names with property line maps and land boundaries finder in available counties (U.S. only)
• Search by landowner name or hunting property landowner boundaries to scout and look for new areas to Hunt
• Save private or public hunting land maps for offline use
• GMU or Hunting Units for multiple species (whitetail deer, mule deer, elk, turkey hunting and more)
• Possible Access Lands, Walk-In Areas, Block Management Areas, and private lands open to the public
• The largest database of nationwide roads and trails ever built
* Private land ownership maps may not be available for all counties (U.S. only)

▶ ELITE NATIONWIDE MEMBERSHIP:

The best tool for the best hunters. With an Elite Membership, you get a complete, purpose-built solution for dedicated hunters and the game they pursue, including:
• Proprietary maps for all 50 states
• Exclusive tools and services from brands we trust to maximize your hunting experience

Easily scout, plan, and master your hunts for any species in any state for one membership price. Available for $99.99/year or $14.99/month.

▶ FEEDBACK:

Have a problem or want to request new features? Please contact us at support@onxmaps.com.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.625488,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=onxmaps.hunt\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/onxmaps.hunt/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/onxmaps.hunt/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/onxmaps.hunt/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/onxmaps.hunt/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Toca Hair Salon 4\",\n \"appId\": \"com.tocaboca.tocahairsalon4\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.tocaboca.tocahairsalon4\",\n \"icon\": \"https://play-lh.googleusercontent.com/rs_72pHNSvwk0r1p-bvYf-rpYIpuogM05ICTpyOV7azj6oHWaHHbBOiJwvg0ynA_eoE\",\n \"developer\": {\n \"devId\": \"Toca Boca\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Toca%20Boca\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to Toca Hair Salon 4--play around in the salon and create any style you can imagine! Whether you choose a character and turn them into a creation you’ve dreamed up, or just see where the tools take you, it will be an adventure. Get creative with makeup, face paint, hair and beard tools, and much more!

Toca Hair Salon 4 is free to download, and comes with the full hair and beard, style, photo booth and shampoo stations. The in-app shop offers the face station and lots of content packs featuring clothes, accessories, and stickers available for purchase.

HAIR AND BEARD STATION
Cut, trim, shave, and even re-grow hair anywhere on the head! This station has hot tools for curling, straightening, and texturizing; and colorful bottles to dye hair any color of the rainbow. How will they react to your creation?

FACE STATION
Expand your salon by purchasing the face station! You’ll find all kinds of makeup in every color. Create lush lashes with mascara, and pick a tool to put on eyeliner, eyeshadow or blush! Use the face paints to boldly draw right onto your character’s face. What will you design?

STYLE STATION
Try on 100s of styles to suit that new look! Change up the outfit, pick out some stickers, and embellish your character with accessories like glasses and hats.

PHOTO BOOTH
Choose a background, watch them strike a pose and snap a picture! You can even save a picture of your character in a photo book and return to styling them later.


SHAMPOO STATION
Give your character a shampoo, towel off, and blow dry. Watch their face paint and makeup drip away!

ABOUT TOCA BOCA
Toca Boca is an award-winning game studio that makes digital toys for kids. We think playing and having fun is the best way to learn about the world. Therefore we make digital toys and games that help stimulate the imagination, and that you can play together with your kids. Best of all - we do it in a safe way without third-party advertising.

PRIVACY POLICY
All of Toca Boca’s products are COPPA compliant. Privacy is an issue that we take very seriously. To learn more about how we work with these matters, please read our privacy policy: https://tocaboca.com/privacy\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1500387,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.tocaboca.tocahairsalon4\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.tocaboca.tocahairsalon4/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.tocaboca.tocahairsalon4/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.tocaboca.tocahairsalon4/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.tocaboca.tocahairsalon4/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"VLC for Android\",\n \"appId\": \"org.videolan.vlc\",\n \"url\": \"http://gplayapi.srik.me/api/apps/org.videolan.vlc\",\n \"icon\": \"https://play-lh.googleusercontent.com/nPnJc260PPoupBe-DcVQ-MNr6149dphdEoEAN-C9xwgctpVXbwsuyon_jEZ3uPWWYQ\",\n \"developer\": {\n \"devId\": \"Videolabs\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Videolabs\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"VLC media player is a free and open source cross-platform multimedia player that plays most multimedia files as well as discs, devices, and network streaming protocols.

This is the port of VLC media player to the Android™ platform. VLC for Android can play any video and audio files, as well as network streams, network shares and drives, and DVD ISOs, like the desktop version of VLC.

VLC for Android is a full audio player, with a complete database, an equalizer and filters, playing all weird audio formats.

VLC is intended for everyone, is totally free, has no ads, no in-app-purchases, no spying and is developed by passionate volunteers. All the source code is available for free.


Features
––––––––
VLC for Android™ plays most local video and audio files, as well as network streams (including adaptive streaming), DVD ISOs, like the desktop version of VLC. It also support disk shares.

All formats are supported, including MKV, MP4, AVI, MOV, Ogg, FLAC, TS, M2TS, Wv and AAC. All codecs are included with no separate downloads. It supports subtitles, Teletext and Closed Captions.

VLC for Android has a media library for audio and video files, and allows to browse folders directly.

VLC has support for multi-track audio and subtitles. It supports auto-rotation, aspect-ratio adjustments and gestures to control volume, brightness and seeking.

It also includes a widget for audio control, supports audio headsets control, cover art and a complete audio media library.


Permissions
––––––––––––
VLC for Android needs access to those categories:
• "Photos/Media/Files" to read your all media files :)
• "Storage" to read your all media files on SD cards :)
• "Other" to check network connections, change the volume, set the ringtone, run on Android TV and display the popup view, see below for details.

Permission Details :
• It needs "read the contents of your USB storage", in to order to read your media files on it.
• It needs "modify or delete the contents of your USB storage", in order to allow deletion of files and store subtitles.

• It needs "full network access", to open network and internet streams.
• It needs "prevent phone from sleeping" in order to prevent... your phone from sleeping when watching a video.
• It needs "change your audio settings", in order to change audio volume.
• It needs "modify system settings", in order to allow you to change your audio ringtone.
• It needs "view network connections" in order to monitor whether device is connected or not.
• It needs "draw over other apps" to start the custom picture-in-picture widget.
• It needs "control vibration" to give feedback on the controls.
• It needs "run at startup" to set recommendations on Android TV launcher screen, only used on Android TV devices.
• It needs "microphone" to provide voice search on Android TV devices, only asked on Android TV devices.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0888505,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.videolan.vlc\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/org.videolan.vlc/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/org.videolan.vlc/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/org.videolan.vlc/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/org.videolan.vlc/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Cars.com – New & Used Vehicles\",\n \"appId\": \"com.cars.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.cars.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/McmeI3f0Y7ZiElHT9n5_UC0jmjnXZA0_OoNsMEvIdEke3M-AUgy2xqun2rhVPryUHA\",\n \"developer\": {\n \"devId\": \"Cars.com\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Cars.com\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Shopping for a new or used car or truck? Ready to meet your match? Download the free Cars.com app to find the perfect car for you today. Shop the best deals with access to millions of listings, over 10 million reviews, and tools to calculate payments on cars you like. Focused search filters help you zero in on the best new and used cars and trucks for sale near you.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6727905,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cars.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.cars.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.cars.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.cars.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.cars.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Fox News - Daily Breaking News\",\n \"appId\": \"com.foxnews.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.foxnews.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/TA1fIRwGKyTlAc3tpu_nPKZnwr5u1PN3W1glmtJzm1dCR-pzjXiqCEhC2QkLgGx9LW8\",\n \"developer\": {\n \"devId\": \"FOX News Network, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/FOX%20News%20Network%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Watch news on demand anytime, anywhere!

From the latest US and world news headlines to opinion pieces and politics, from sports and entertainment - the Fox News app fits easily into your busy lifestyle. Stay up-to-date on all things newsworthy!

On demand news and dynamic, real-time reporting from Fox News!

Top News: Top 5 Reasons to Download the Fox News App
1. Watch news and live streams of your favorite Fox News shows anytime, anywhere*
2. Exclusive news and live headlines 24/7 with breaking news alerts
3. Listen to Fox News Radio and podcasts from your favorite personalities
4. News stories that matter most to you, with relevant, formatted content
5. Fox News App connects you directly with the latest, trending news stories, your favorite shows, personalities and news anchors on Twitter, Facebook, Instagram and more!

Fox News keeps you up-to-date with breaking news alerts and 24/7 live video streaming from the Fox News Channel and Fox Business Network through Fox News Go! With top news on demand and vibrant photo galleries, Fox News is your go-to source for all of the latest headlines!

Download Fox News for a never-ending newsfeed of entertainment, politics and US news stories, opinion pieces by our featured columnists, trending content and live video streaming. Stay informed and up-to-date on the go!

Fox News Features

Stream Live News On-Demand*:
- World tv live - tune in anytime, anywhere
- Live news events and exclusive programming with streaming coverage
- Newsfeed: keep up to date with exclusive news and comprehensive coverage of the day’s hottest stories
- On demand news: exclusive from cable news shows and anchors on Fox News Go
- Live video streaming, slideshows and formatted content relevant to the articles that matter most to you
- News alerts keep you up-to-date on everything newsworthy, from politics and entertainment to US news stories - all in the breaking news Hub

Breaking News:
- News alerts on breaking news and current events as they happen
- World news, US news, local news - alerts in every area you care about
- Skim headlines and update yourself on current events and articles

News Video Clips:
- Trending clips from all of your favorite shows on the Fox News app. Share with Fox News viewers!
- Politics, opinion pieces, US news and entertainment highlights – it’s all on Fox News!
- News that matters to you: sports clips, financial news, business news, health news, money news, entertainment news and so much more

News Radio & Podcasts:
- Tune in to Fox News Radio and see “Who’s on Now”
- Audio News: View “Latest Podcasts” from Brian Kilmeade, Fox Across America, Guy Benson & more
- Check out “Saved” podcasts & “Recommended Stories” based on your viewing history
- “Join the Conversation!” - Log in to comment on articles and join in on the fun

Download Fox News to keep up-to-date on everything you’re interested in!
--
*Fox News Channel and Fox Business Network live are only available through authorized cable, satellite, and telco subscription packages. Available in US only.

We may work with mobile advertising companies and other similar entities that help deliver advertisements tailored to your interests. For more information about such advertising practices, and to opt-out in mobile apps, see www.aboutads.info/choices. You may also download the App Choices app at www.aboutads.info/appchoices

Privacy: https://www.foxnews.com/privacy-policy\",\n \"scoreText\": \"2.5\",\n \"score\": 2.4903135,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.foxnews.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.foxnews.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.foxnews.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.foxnews.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.foxnews.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Wayfair - Shop All Things Home\",\n \"appId\": \"com.wayfair.wayfair\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.wayfair.wayfair\",\n \"icon\": \"https://play-lh.googleusercontent.com/NnEL8J7Z4621ATPA1rmy3J-G0aeiY_JqP0HKVabhqqnoRibHPMdaoRtu_rv5Wr3AdkA\",\n \"developer\": {\n \"devId\": \"Wayfair, LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Wayfair%2C%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With the Wayfair app, you’ve got all things home, right at your fingertips. It’s your on-the-go furniture store so you can get home office essentials with a single swipe, plan your home renovation when inspiration strikes, and create a registry that travels with you – all in one app. Download, shop, and save with the largest selection of furniture and decor for every style and budget.

- Save with personalized deals and free shipping over $35.*
- Explore thousands of shoppable room ideas from the kitchen to the garage.
- Find just-for-you styles for everything from pillows to flooring and way more.
- Track your order with real-time delivery updates (even on the big stuff like appliances).
- Preview products in your home with our virtual View in Room feature.
- Browse real customer reviews and photos.
- Manage your orders and get access to quick customer service.
- Create lists, 3D room layouts, wedding registries, and more.

Ready to get started? Download the Wayfair app now to create your happy place from any place.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7876606,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.wayfair.wayfair\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.wayfair.wayfair/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.wayfair.wayfair/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.wayfair.wayfair/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.wayfair.wayfair/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"7-Eleven: Rewards & Shopping\",\n \"appId\": \"com.sei.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.sei.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/2uAkj0BVNrJaJOOOs4K5FbFTw4dbFb7Mo6mI_Qtov0OC58hDYvPAQH6LXKsc_sj8jvE\",\n \"developer\": {\n \"devId\": \"7-Eleven, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/7-Eleven%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Join. Earn. Get Rewarded. Now receive 2x points every time you scan your app barcode!

SHOP & EARN REWARDS
Get 2x rewards points on your everyday purchases when you scan your app barcode*, then browse our rewards menu and use points to get free food and drinks. Earn faster with bonus points offers and point streaks on select snacks, drinks, and products.

ORDER DELIVERY
Get food, alcohol, candy, snacks, drinks, ice cream, grocery, health needs and more delivered anywhere you are in about 30 minutes. 7NOW delivers over 3000+ items including Slurpee® and Big Gulp®, pizza and sandwiches, and even beer, wine, and liquor (where available, 21 years or older of course) across 43 major metro areas.

FUEL LOYALTY SAVINGS
Fill up on gas for less. On your first 7 trips you'll save 11¢/gal. After that you'll receive everyday fuel rewards of 3¢/gal*. Check the 'Find a store' section and the 7-Eleven app will filter fuel loyalty locations near you.

7-ELEVEN WALLET
It's easy to pay with your phone. The 7-Eleven Wallet makes checking out contactless and easy. Get started when you load your Wallet with cash, credit, debit, 7-Eleven gift cards, Apple Pay® or Google Pay®.

MOBILE CHECKOUT - (AVAILABLE AT SELECT 7-ELEVEN LOCATIONS)
With our contactless checkout, you can shop and check out with your phone. It as easy as scan, pay, and go. Scan the items as you shop and skip the line when you are ready to checkout.

FIND DEALS
Get exclusive offers on your favorite products like pizza, coffee, ice cream, donuts, snacks, energy drinks and bottled water with deals for 7Rewards members.

NOW AVAILABLE AT STRIPES STORES
Start saving big and earning 7Rewards points on everything you buy at Stripes Stores. Redeem points for free food and drinks. Get tacos and family meals from Laredo Taco Company, beer, and groceries to go with curbside pickup at select stores.

GIVE FEEDBACK
We’re here to make your day better. Please let us know if you think we’re doing a good job or not. Submit feedback at any time in the app.

ABOUT 7-ELEVEN, INC.
Are you still reading this? Awesome. Most people stop when they get to the small print. But not you! You get to read the cool stuff. 7‑Eleven, Inc. is the premier name in the convenience-retailing industry. They don't like to brag, but they invented convenience stores. For real. Google it. Based in Irving, Texas, 7‑Eleven operates, franchises and/or licenses more than 72,800 stores in 17 countries, including 12,000 in North America. Known for its iconic brands such as Slurpee®, Big Bite® and Big Gulp®, 7‑Eleven has expanded into high-quality sandwiches, salads, side dishes, cut fruit and protein boxes, as well as pizza, chicken wings and mini beef tacos. Mmmmm, tacos. 7‑Eleven offers customers industry-leading private brand products under the 7-Select™ brand including healthy options, decadent treats and everyday favorites at an outstanding value. Customers can earn and redeem points on various items in stores nationwide through its 7Rewards® loyalty program with more than 40 million members, place an order in the 7NOW® delivery app in over 1,300 cities, or rely on 7‑Eleven for bill payment service, self-service lockers and other convenient services. Find out more online at www.7-Eleven.com, via the 7Rewards customer loyalty platform on the 7‑Eleven mobile app, or on social media at Facebook, Twitter and Instagram. Also, they trademarked the word "Brainfreeze." No lie. Thanks for sticking with this. You're unstoppable.

*Points exclude services, fuel and age restricted items including tobacco, lottery and alcohol\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3813033,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.sei.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.sei.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.sei.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.sei.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.sei.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Intune Company Portal\",\n \"appId\": \"com.microsoft.windowsintune.companyportal\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.microsoft.windowsintune.companyportal\",\n \"icon\": \"https://play-lh.googleusercontent.com/7bvRb0lYxGyYW5HwjUk0qms8SyBa_d1AM1z83WTehoi8Xkjh4tmGIWrUq-rt2MUcv34k\",\n \"developer\": {\n \"devId\": \"Microsoft Corporation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Microsoft%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Company Portal provides access to corporate apps and resources from almost any network. Your company must already subscribe to Microsoft Intune, and your IT admin must set up your account before you can use this app.

Features:
•\\tEnroll to access corporate resources
•\\tBrowse and install company apps
•\\tView and manage all your enrolled devices
•\\tView IT department contact information
•\\tChange your work account password
•\\tUnenroll or remotely wipe devices

Important: This app requires you to use your work account to enroll in Intune. Some functionality is unavailable in certain countries. If you have issues with this app or questions about its use (including your company’s privacy policy) contact your IT administrator and not Microsoft, your network operator, or your device manufacturer.

https://docs.microsoft.com/Intune/EndUser/using-your-android-device-with-intune

How to uninstall Company Portal:
Before you can uninstall Company Portal, you need to unenroll your device from Intune first. Here are the steps:

1) Follow these directions to unenroll: https://docs.microsoft.com/intune/enduser/unenroll-your-device-from-intune-android
2) Now, you can uninstall Company Portal like you would any other app\",\n \"scoreText\": \"2.9\",\n \"score\": 2.944392,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.microsoft.windowsintune.companyportal\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.microsoft.windowsintune.companyportal/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.microsoft.windowsintune.companyportal/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.microsoft.windowsintune.companyportal/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.microsoft.windowsintune.companyportal/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Auto Clicker - Automatic tap\",\n \"appId\": \"com.truedevelopersstudio.automatictap.autoclicker\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.truedevelopersstudio.automatictap.autoclicker\",\n \"icon\": \"https://play-lh.googleusercontent.com/g3uClD0vWwFfKHZTDgcIBtFvr-kJ-mIGmZge7Hn0LHkfcPjwadCfdQCWGQLTO_Jqe74\",\n \"developer\": {\n \"devId\": \"True Developers Studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/True%20Developers%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Auto Clicker helps you do repeated taps at any location with any interval you specify.
Auto Clicker does NOT require root access.
Have a floating control panel to start/stop the automatic tap.
It is great for click games.

Feature:
- The friendly user interface, easy to use
- Support multiple click points, multiple swipes
- Have a global timer to run for a certain amount of time
- Can Import/Export automatic scripts

Note:
- Only support Android 7.0 and up.
- Require Accessibility service to work.

** Credits: The app icon is made by Freepik from www.flaticon.com

Install Auto Clicker now and you will be free with the automatic tap :-)\",\n \"scoreText\": \"4.3\",\n \"score\": 4.291782,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.truedevelopersstudio.automatictap.autoclicker\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.truedevelopersstudio.automatictap.autoclicker/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.truedevelopersstudio.automatictap.autoclicker/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.truedevelopersstudio.automatictap.autoclicker/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.truedevelopersstudio.automatictap.autoclicker/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Ancestry: Family History & DNA\",\n \"appId\": \"com.ancestry.android.apps.ancestry\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.ancestry.android.apps.ancestry\",\n \"icon\": \"https://play-lh.googleusercontent.com/aUwzaz3DojL6KqnfMNw5Y3C2Lm2s1uj2U7dsiRGnq00eNY8_F-Gn3MlVLvOgUQLvsOU\",\n \"developer\": {\n \"devId\": \"Ancestry.com\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Ancestry.com\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Explore who and where you came from through photos, stories, historical records, and so much more— even your ethnicity and family communities if you’ve taken an AncestryDNA® test. And with just one relative’s name, you can start to discover your family history anytime, anywhere with Ancestry®, the top genealogy app*.

Why you’ll love to discover your family story using the Ancestry® app:
• View your family tree, search and add new family members, upload photos, and share stories - all with just a few taps
• With a free trial or paid subscription easily access more than 30 billion records, photos, and more
• The dynamic Discover feed lets you review, dismiss, and save your discoveries and hints for later
• Activate your AncestryDNA® kit and view your ethnicity results
• See your DNA matches and compare your results with them
• Learn even more about your family story when you combine your tree with your DNA results
• Preserve your history with your own personalized family tree
• Collaborate with friends and family - it couldn’t be easier
• Our modern layout design makes it even easier for you to explore
• Discover stories, photos, and records about your ancestors with Ancestry Hints®
• Personal traits. Add Traits to your DNA results to see how your genes could influence 35+ fitness, nutrient, sensory and appearance traits.

Free Features:
• Build a family tree
• Search the census records and access more than 1.1 billion free records
• Receive hints based on your tree
• Scan or upload your own family pictures
• Receive messages from Ancestry members
• See your ancestors' life stories on a map

Available with an optional free trial or subscription:
• View more than 30 billion records.
• Use Ancestry Hints® to learn about ancestors
• Find pictures of your family
• Discover new relatives
• Unrestricted messaging

Phone and Tablet Features:
• Curious about your family tree? Simply look up a relative's name, discover their story, and then share it with your loved ones
• Remember the high school years by finding yearbook photos to share with your close family and friends, all with just one quick tap
• Review your personalized hints
• Add photos, hints, or ancestor stories and watch your personalized family tree grow
• Watch Ancestry Academy Videos that get you started with genealogy research
• Easily upload or scan photos and add facts or stories to your family tree
• Learn about historical events that affected your ancestors’ lives.

Download the Ancestry Family History & DNA app to start exploring your heritage and more, today!

View our Terms and Conditions at: https://www.ancestry.com/cs/legal/termsandconditions
View our Privacy Statement at https://www.ancestry.com/cs/legal/privacystatement
CCPA Notice at Collection https://www.ancestry.com/cs/legal/privacystatement#personal-info-categories
*Within free apps in Google Play Store Books & Reference category\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3521495,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ancestry.android.apps.ancestry\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.ancestry.android.apps.ancestry/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.ancestry.android.apps.ancestry/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.ancestry.android.apps.ancestry/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.ancestry.android.apps.ancestry/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Lightroom Photo & Video Editor\",\n \"appId\": \"com.adobe.lrmobile\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.adobe.lrmobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/RGvuFCqPOIiR1i9QDN6-HNt5nOuWj4zuqQduxnJn0ughdo-yhAJNG1r6W1A3Fc6Z9w\",\n \"developer\": {\n \"devId\": \"Adobe\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Adobe\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Adobe Photoshop Lightroom is a free, powerful photo & video editor and camera app that empowers you to capture and edit stunning images.

Lightroom offers easy-to-use photo & video editing tools like sliders to retouch your images, apply photo filters, fine-tune backgrounds, and use transformative presets to quickly add unique adjustments that bring your photos to life wherever you are – all in one app.

PHOTO PRESETS AND FILTERS
• Make quick and easy edits with free preset filters for all your pictures
• Upgrade your aesthetic with 200+ exclusive Premium Presets created by professional photographers
• Let AI suggest the perfect preset for your photo with Recommended Presets
• Create your own look and save it as a preset filter for easy application to any picture

PHOTO EDITOR & CAMERA
• Instantly improve your photos in a tap with Lightroom’s auto editor
• Use precision sliders to adjust all your light settings like contrast, exposure, highlights, and shadows
• Create eye-popping edits with the color mixer and color grading tools
• Use the photo enhancer to change up your photos’ look and feel with the clarity, texture, dehaze, and grain sliders
• Crop & rotate your photo to get the perfect composition
• Use curves to make advanced edits to highlights, midtones, shadows, and color
• Use Versions to experiment with comparing different edits without losing the original
• Unlock your phone’s potential with unique controls like exposure, timer, instant presets & more
• Get more detailed shots with advanced capture modes like raw, professional, and HDR

VIDEO EDITOR
• Access Premium video editing features & unlock a world of possibilities with our photo & video editor
• Utilize Lightroom’s popular photo editing features to edit captivating videos
• Apply presets, edit, trim & retouch videos with precision sliders to fine-tune contrast, highlights, vibrance & more

PREMIUM MEMBERSHIP
Take your photography to the next level with the Lightroom Premium photo & video editor! Upgrade & unlock easy-to-use tools like exclusive presets, Healing Brush, masking, geometry, cloud storage & more with an intuitive picture editor.

• Adobe Lightroom has now expanded into an easy-to-use photo & video editing app with a range of exciting, customizable features
• No longer just for photos, Lightroom’s new Premium video editor brings the same top-quality photo editing features that users love to video
• Use amazing video filters just like you would for pictures with our unique photo & video enhancer
• Access 200+ hand-crafted premium presets created by professional photographers & picture editors
• Let AI recommend presets that will work best with your photos
• Become a pro video maker: trim & edit videos utilizing an all-in-one photo & video editor
• Retouch & remove objects or distracting elements with the Healing Brush
• Create masks to edit a specific area of a photo without impacting the rest of the image. Lightroom AI makes life easy by automatically selecting the sky or subject of your photo to edit further
• Lightroom web galleries let you showcase your photos online. Photo & video edits sync seamlessly, so any editing changes you make in the app are always up-to-date
• Share your edits and creative process with other users in the Discover section

*Full raw HDR capture mode is currently supported on devices that contain advanced processing and memory capabilities including but not limited to devices such as - Samsung S7, S7 Edge, S8, S8+, Note 8, Google Pixel, Pixel XL, Pixel 2, Pixel 2 XL, Pixel 3, Pixel 3 XL, and OnePlus 5.

Terms & Conditions:
Your use of this application is governed by the Adobe General Terms of Use http://www.adobe.com/go/terms_en and the Adobe Privacy Policy http://www.adobe.com/go/privacy_policy_en
Do Not Sell My Personal Information: www.adobe.com/go/ca-rights\",\n \"scoreText\": \"4.6\",\n \"score\": 4.600335,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.adobe.lrmobile\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.adobe.lrmobile/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.adobe.lrmobile/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.adobe.lrmobile/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.adobe.lrmobile/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Chewy - Where Pet Lovers Shop\",\n \"appId\": \"com.chewy.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.chewy.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/2c_ZT85Cmv4qBBbhTtyohfW4HDc3hc2UDCdJAJYqpgD6aLnZAwzoAY-FIuUbz5WCgQ\",\n \"developer\": {\n \"devId\": \"Chewy, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Chewy%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"This one’s for the pets. Chewy leads the pack with 2,000+ trusted brands of food and supplies, 24/7 help from pet experts, and FREE shipping on orders over $49! Get extra savings off your first Autoship order and 5% ongoing, no commitments or fees. It’s everything you love about Chewy.com, with a few extra tricks just for our app customers. As always, you'll find these features that set us a-pawrt from the rest:

PHARMACY
America's #1 Pet Pharmacy carries over 4,000 top-quality medications and 600+ veterinary diet products sourced directly from manufacturers. Now offering compounded medications, too.

MANAGE AUTOSHIP
Need that dog food sooner? Change your Autoship delivery to fit your schedule. No fees or commitments, just happy pets.

2,000+ BRANDS
Search or shop by category for your pet's favorite brands and discover new ones.

SHIPMENT TRACKER
Follow their favorite box from our door to yours with our in-app shipment tracker.

SHARING
Send fellow pet lovers items you like with a text, email, or social post while you shop.
What’s New

REVIEWS
Read what other customers are saying about products and write your own reviews right from the app.

TODAY’S DEALS
Find the best savings of the day on everything from food to treats, toys, supplies and apparel.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.836969,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.chewy.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.chewy.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.chewy.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.chewy.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.chewy.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Weather by WeatherBug\",\n \"appId\": \"com.aws.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.aws.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/_rZCkobaGZzXN3iquPr4u2KOe7C-ljnrSkBfw6sVL1kpUfq3sBl5MoRJEisBSnxaD-M\",\n \"developer\": {\n \"devId\": \"WeatherBug\",\n \"url\": \"http://gplayapi.srik.me/api/developers/WeatherBug\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Explore 20 weather maps, including Doppler radar, future radar, air quality, lightning, precipitation, local temperature, wind chill, road forecast and more! From heat index to pollen count, WeatherBug has everything you need to know. Use our weather widgets to set alerts and see the info you want to see on your home screen.

Radar weather apps have never been this easy or convenient. Join WeatherBug's millions of users and Know Before® any weather condition. In the market since 2000, WeatherBug gives you and your family reliable weather data.

THE WEATHERBUG ADVANTAGE
• Spark™ Lightning Alerts
Get Dangerous Thunderstorm Alerts & prepare for severe weather conditions
Lightning Maps See lightning strikes in real time and be alerted when lightning is nearby
Professional Weather Network Vast professional grade weather station across the world reporting hyper-local weather conditions in real-time
Animated Weather Maps 20 weather maps give you options on what weather conditions you see
International Weather Forecasts Prepare for weather abroad with weather forecasts for over 2.6 million locations worldwide
International Weather Radar Doppler Radar available across the US, Canada, Mexico, and Europe.

WEATHER NEWS FOR YOU
• Weather News
News alerts and featured videos about local conditions & global events
Weather Data Customization Rearrange weather tiles to your liking
Weather Conditions Real-time weather conditions
Weather Forecasts Reliable & detailed hourly & 10-day forecasts
Wind Forecast See how windy conditions will be throughout the day

WEATHER ALERTS
• Weather Notifications
Receive alerts for your preferred locations
Severe Weather Alerts Get severe weather alerts from WeatherBug, NWS & NOAA (USA) NMS (UK and DE) and SMN (MX)
Real-Time Precip Alerts Get notified when rain or snow is expected in the next 15 minutes

AIR QUALITY, HEAT, WILDFIRES
• Weather Details
Get UV Index, wind speeds & weather observations
Fire Global wildfire data to know when you are at risk
Air Quality Get a weather app and air quality app in one with an in-depth look at the air quality around you
Pollen Count Local & national pollen count & data

WEATHER CUSTOMIZATION
•Weather Widgets
Add weather information to your home screen with weather widgets
Multi-language Support English, Spanish, Portuguese, German, French & Japanese
Temperature Units Fahrenheit (°F), Celsius (°C)
Wind Units MPH, KPH, Knots & MPS
Pressure Units Inches & millibars

COMMUTER
• Road Forecast
Know when weather conditions will impact your commute with live road conditions
Weather Cameras View live weather cameras for your commute
Traffic Cameras Live stream traffic cameras along your route
Commuter Alerts Be alerted when weather impacts road conditions

RADAR WEATHER MAPS
• Weather Map
Explore weather conditions, temperature, pollen levels & more with doppler radar & interactive maps
Severe Storm Risk Know when convective weather is expected to hit. Storm radar shows severe storms, tornados, hail & high winds

HURRICANE TRACKER
• Hurricane Tracking
Track hurricanes. View location, speed, and direction of approaching hurricanes
Hurricane News Read the latest hurricane news to stay safe and prepared

CONNECT WITH US
• Like us on Facebook https://www.facebook.com/WeatherBug
• Follow us on Twitter @WeatherBug
• Check us out on Instagram @weatherbug

This app may include "Interest-Based Ads" (https://www.weatherbug.com/legal/privacy) for more information) and may collect or share "Precise Location Data" (https://www.weatherbug.com/legal/privacy for more information)\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6991177,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.aws.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.aws.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.aws.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.aws.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.aws.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"SHAREit: Transfer, Share Files\",\n \"appId\": \"com.lenovo.anyshare.gps\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.lenovo.anyshare.gps\",\n \"icon\": \"https://play-lh.googleusercontent.com/VaKjVtEoXm0ErtmaHwH5Ni-EpaBoJcTmoY_Bs5JeIOVOQx8z_jBWMaxB6QdYPxX-OA7l\",\n \"developer\": {\n \"devId\": \"Smart Media4U Technology Pte.Ltd.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Smart%20Media4U%20Technology%20Pte.Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"It’s time to Share it!
Share your files, apps, games, and more with the SHAREit file transfer app. SHAREit is a super-fast and safe way to transfer big files. Trusted by 2 billion+ users worldwide, you can be sure that SHAREit is a secure way to share your files.

With SHAREit you can also clean your phone to free up storage space, manage files on your phone, speed up your phone and save battery life, boost game performance by transferring game cache files directly from mobile to PC.

It's super easy to use! And the best part? Its free!

🔥 Why you must have SHAREit, the #1 file sharing & data transfer app?

🚀 The Fastest File Sharing & App Sharing in the World, offline and online
With 200 times faster than Bluetooth, the highest speed goes up to 42M/s. Share and receive files without any data consumption, transfer files without any quality loss.

🔒 High Privacy & Data Security
If you're looking for a way to share files securely, you've come to the right place. We know that privacy and data security are important, so we make sure they're protected in the best way while you enjoy your files transfer, for free. With SHAREit, you can quickly and securely send and share any file, anywhere in the world.

👍 Powerful Cross-Platform Transferring, Supports All Types of Files
Experience the best data-free file transferring and sharing app that offers cross-platform transferring, supports all types of files and makes your life easier in every way possible. You don't have to worry about the size or type of data anymore because Shareit helps you send large files without limitation across all your devices. Transfer: Apps, Games, Photos, Movies, Videos, Music, GIFs and Wallpapers with just one tap!

🗂️ Easy to Use File Manager
It's time to take control of your phone. The easy-to-use File Manager allows you to transfer files, delete unnecessary ones, and manage storage. The file explorer and manager will let you see how many files and apps are on your phone at a glance.

One Click Phone Booster & Cleaner
Say goodbye to slow phones and lost files. We've got THE file cleaner and speed booster for you. It cleans junk, boosts your phone, finds files fast, and shares them offline. With our professional mobile booster & cache cleaner, you can clean cache and free up so much space from your device without worrying about deleting the wrong file.

📀 Infinite HD & Selective Online Videos
Watch unlimited high-definition online videos, and find high-quality and fun new video content every time you open the app.

🎶 Elegant Music Player - Audio Player
SHAREit Music Player is the best way to listen to your favorite songs. It's so much more than just a music player: it's an elegant, powerful, and easy-to-use audio player.

SHAREit FEATURES:
File Manager: Clean and manage the heaviest files, move files or delete them.
Phone cleaner: Clean phone, clean file, free app storage space with the cleaner feature that includes file cleaner, apps cleaner, system cache cleaner and more.
Phone Booster: Free up more space with the memory booster and speed booster. Increase speed and get a smoother gaming experience by boosting phone.
Battery Saver: Speed up your phone and save phone battery.
Transfer game apps: A new PUBG One Click Transmission feature - within seconds transfer large game apps, without needing to download the game cache file.

💡Note: SHAREit will not access permissions that are irrelevant to our functionality.
By accessing:
Location, SHAREit can help discover nearby users. Plus, it is required by the Android system to access this permission.
Bluetooth Connection, SHAREit can discover nearby users more quickly so as to connect with Sender/Receiver more efficiently.

❤️Download SHAREit now! It's the perfect tool to share and transfer files between devices! If you like it, SHARE it with your friends! ❤️

Share, Watch & Play. All day. With SHAREit.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.218215,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.lenovo.anyshare.gps\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.lenovo.anyshare.gps/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.lenovo.anyshare.gps/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.lenovo.anyshare.gps/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.lenovo.anyshare.gps/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Stellarium Mobile - Star Map\",\n \"appId\": \"com.noctuasoftware.stellarium_free\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.noctuasoftware.stellarium_free\",\n \"icon\": \"https://play-lh.googleusercontent.com/5UaNKcX6uHyAotPmxCm2ADsr3pGUcsgezFpe3X5Pe-PpT_mzDoLlObnXnMLxK1oAnd0\",\n \"developer\": {\n \"devId\": \"Stellarium Labs\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Stellarium%20Labs\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Stellarium Mobile - Star Map is a planetarium app that shows exactly what you see when you look up at the stars.

Identify stars, constellations, planets, comets, satellites (such as the ISS), and other deep sky objects in real time in the sky above you in just a few seconds, just by pointing the phone at the sky!

This astronomy application has an easy to use and minimalist user interface, that makes it one of the best astronomical applications for adults and children who want to explore the night sky.

Stellarium Mobile features:

★ View an accurate night sky simulation of stars and planets for any date, time and location.

★ Dive in a collection of many stars, nebulas, galaxies, star clusters and other deep sky objects.

★ Zoom on realistic Milky Way and Deep Sky Objects images.

★ Discover how people living in other regions of the planet see the stars by selecting the shapes and illustrations of the constellations for many sky cultures.

★ Track artificial satellites, including the International Space Station.

★ Simulate landscape and atmosphere with realistic sunrise, sunset and atmosphere refraction.

★ Discover 3D rendering of the major solar system planets and their satellites.

★ Observe the sky in night mode (red) to preserve your eyes adaptation to darkness.

Stellarium Mobile contains in-app purchases allowing to upgrade to Stellarium Plus. With this upgrade, the app will display objects as faint as magnitude 22 (versus magnitude 8 in the base version) and enable advanced observing features.

Stellarium Plus features (unlocked with in-app purchase):

★ Reach the limit of knowledge by diving in a massive collection of stars, nebulas, galaxies, star clusters and other deep sky objects:
  • All known stars: Gaia DR2 catalog of over 1.69 billion stars
  • All known planets, natural satellites and comets, and many other minor solar system objects (10k asteroids)
  • Most known deep sky objects: a combined catalog of over 2 million nebulas and galaxies

★ Zoom almost without limits on high resolution images of deep sky objects or planetary surfaces.

★ Observe in the field, even without internet connection, with a "reduced" set of data: 2 million stars, 2 million Deep Sky Objects, 10k asteroids.

★ Control your telescope through Bluetooth or WIFI: drive any GOTO telescope compatible with NexStar, SynScan or LX200 protocols.

★ Prepare your observing sessions using the advanced observation tools, to predict a celestial object observability and transit times.

Stellarium Mobile - Star Map is made by the original creator of Stellarium, the well known open source planetarium and one of the best astronomy applications on Desktop PC.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.695652,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.noctuasoftware.stellarium_free\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.noctuasoftware.stellarium_free/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.noctuasoftware.stellarium_free/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.noctuasoftware.stellarium_free/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.noctuasoftware.stellarium_free/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Albert: Banking on you\",\n \"appId\": \"com.meetalbert\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.meetalbert\",\n \"icon\": \"https://play-lh.googleusercontent.com/ls4-QmBPOvPOdi_F3aYJHWj7iR2R0b7OwCipRuEnWbK_Pq0IZMKpGL4j-57FhPKZmjnQ\",\n \"developer\": {\n \"devId\": \"Albert Corp.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Albert%20Corp.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"WE’RE BANKING ON YOU

At Albert, we want you to win. So we built a better banking, saving, investing, and budgeting solution — with a Genius team of money experts to guide you. And an Albert debit card that gives you cash back. Set up direct deposit and your paycheck becomes available up to 2 days earlier. Then save, manage, and invest it in the app.

Albert is not a bank. See disclosures below for details.

EVERYONE NEEDS A GENIUS IN THEIR LIFE

Our Genius team of real human experts are here to answer everything, from the toughest to the simplest to the most embarrassing questions. That means budgeting, credit cards, student loans — even buying a home. More than 10 million people trust us.

GET UP TO $250

Albert can spot you up to $250 from your next paycheck. No late fees, no interest, no credit check. No mandatory repayment timeframe. Repay us when you get paid or when you can afford it. Download the app to see what you qualify for. Details below:
• No interest: no interest charged ever.
• Repayment period: no mandatory minimum or maximum repayment timeframe. Repay us when you get paid or when you can afford it.
• Total processing fees: for up to $250 advance, total processing fees are either (i) $0 per advance when you advance to your Albert debit card with direct deposit; or (ii) $0 per advance via ACH; or (iii) $3.99 per advance to your Albert debit card without direct deposit; or (iv)$6.99 per advance to a non-Albert debit card. Tips are optional and aren’t used to determine any advance limits.

SAVE SMARTER

Albert tracks your income and spending to find dollars you can save, automatically. Plus get cash bonuses just for saving. If you need the money you’ve set aside, withdraw it any time.

GUIDED INVESTING

Invest your money with Genius. Buy stocks and themed ETFs like companies supporting a sustainable world. Plus, let Genius create your custom portfolio built for your financial goals. Start with just $1.

SECURITY

• Albert uses cutting-edge security technology to protect your sensitive information.
• Albert Cash and Albert Savings accounts are FDIC-insured. Should the member bank holding your balance fail, you'll be insured for up to $250,000 of your money in the account.
• Albert Securities is a Member of SIPC, which protects securities customers of its members up to $500,000 (including $250,000 for claims for cash). Explanatory brochure available upon request or at www.sipc.org.

DISCLOSURES

Albert is not a bank. Banking services provided by Sutton Bank, Member FDIC. Albert Savings accounts are held for your benefit at FDIC-insured banks, including Coastal Community Bank and Wells Fargo, N.A. The Albert Mastercard® debit card is issued by Sutton Bank, Member FDIC, pursuant to a license by Mastercard. Mastercard and the circles design are registered trademarks of Mastercard International Incorporated. Cash withdrawal fees apply to ATM withdrawals.

Bonus and cash back programs subject to terms. Early access to direct deposit funds may vary depending on the payer’s deposit timing. See app for details.

Securities products and services offered to self-directed investors through Albert Securities LLC, Member FINRA/SIPC. View important disclosures at albrt.co/disclosures

Advisory services offered through Albert Investments, LLC. Investments are risky: you could lose money, and past performance is no guarantee of future returns. For more information, see our Form ADV Part II and our Terms of Use at albert.com.\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9097488,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.meetalbert\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.meetalbert/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.meetalbert/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.meetalbert/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.meetalbert/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Boo — Dating. Friends. Chat.\",\n \"appId\": \"enterprises.dating.boo\",\n \"url\": \"http://gplayapi.srik.me/api/apps/enterprises.dating.boo\",\n \"icon\": \"https://play-lh.googleusercontent.com/7odIr8zuMI5ddrSG6KtefaVNEvKBoiGzo6Q96lowbP5tLFhqiqUl3Mc16PMk2E1m9g\",\n \"developer\": {\n \"devId\": \"Boo Enterprises, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Boo%20Enterprises%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Boo is for connecting with compatible and like-minded souls. Date, chat, match, make friends and meet new people by personality.

Join over a million souls on Boo and find your best match faster, for dating or friendship.

We’re your tour guide through the strange landscape of another’s heart and mind. We use personality psychology to help you find dates and friends that'll effortlessly love, appreciate, and understand you for who you naturally are.

Find your soulmate or your best friend.

OUR FEATURES

1. SOCIAL DATING + FRIEND-FINDING
Post in interest communities and meet new people by shared values and interests. Chat casually with people on funny, interesting, and insightful topics.

2. FLIRTING TIPS
Get in-depth dating tips and personality analysis with cutting-edge personality psychology.

Understand anyone’s
1. Compatibility
2. Strengths
3. Weaknesses
4. Attracted By
5. Pet Peeves
6. Likely Interests
7. Love Languages
8. What You'll Love
9. Potential Conflicts
10. Love Philosophy
11. Mating Call
12. Ideal Date
13. Flirting Tips
14. Relationship Material
15. Relationship Fear
16. Secret Desire
17. Enneagram
18. Zodiac

3. VERIFIED PROFILES
Get verified and meet other verified users using the verified filter. No more catfishes and bots.

4. PRACTICE LANGUAGES
Make new friends and meet new people around the world. Translate profiles and messages, and send messages in any language with cutting-edge translation.

OUR VALUES

1. LOVE, KINDNESS, EMPATHY
Boo is an accepting, tolerant, and judgment-free space for everyone. Unlock functionalities by being a good person and earning love, our social credit system.

2. AUTHENTICITY
Be yourself. That’s the only way you’ll attract the right people. Embracing your authentic self starts when you realize that every personality has its flaws, that there are others who share your same personality, and that you are not alone.

3. TRANSPARENCY
Understand yourself and others like never before in human history. Understand anyone deeply instantly, not 3 weeks, months, or years into a failed relationship.

4. EMPOWERMENT
Attraction, compatibility, and succeeding in dating and making friends have always been a black box. With personality insight, you are empowered to understand how it all works for yourself, make the right decisions, and set yourself up for success.

We were using all the dating apps. It was always the same result–going on dates with people we had no chemistry with. We were exhausted from all the wasted time and effort. We made Boo because we knew there was a better way.

Our mission is to create a future in which personality enables our greatest potential, starting with our relationships.

We hope you like it,
The souls at Boo

https://boo.world/terms-and-conditions\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7225776,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=enterprises.dating.boo\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/enterprises.dating.boo/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/enterprises.dating.boo/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/enterprises.dating.boo/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/enterprises.dating.boo/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Realtor.com Real Estate\",\n \"appId\": \"com.move.realtor\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.move.realtor\",\n \"icon\": \"https://play-lh.googleusercontent.com/jrb0x4JNkkd5Of7sG_qVbbv27rbBIGYay1MU1fLA-40SrowGqdFsYVYYWezQw1nCesw\",\n \"developer\": {\n \"devId\": \"realtor.com®\",\n \"url\": \"http://gplayapi.srik.me/api/developers/realtor.com%C2%AE\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Find a home that’s perfect for you with the award-winning, easy-to-use Realtor.com® Real Estate app.

Home search has never been easier or more fun thanks to Realtor.com. Whether you’re in the real estate market to buy homes, searching for rentals, or looking for a home’s estimated value, we offer a robust set of tools and a guiding hand throughout the process to help you browse millions of home listings and zero in on the one that fits your needs.


Search homes tailored to you with customizable search tools
• Search mls listings the smart way with a large variety of filters that can be used to customize your home search around your wants and needs
• Search homes for sale by price range, lot size, number of bedrooms and bathrooms, commute time, and more
• Search by school name to see mls listings near your preferred schools boundaries

Find the right home in the right neighborhood using tools on our interactive map
• Search homes for sale in the area of your choosing with the Draw on Map feature
• Zoom in on the map to see nearby restaurants, shops, cafes, and more
• View neighborhood noise levels with the noise map layer to find a quiet home
• Assess a home’s flood risk with the flood layer on the map

Explore homes for sale in stunning detail
• Browse through big beautiful photos on every home listing
• Get to the pics you really want to see faster with photos categorized by room
• Homes can be toured from the comfort of your couch in an immersive 3D home tour
• More mls listings with 3D tours added all the time

Search homes with others using our collaboration tools
• Looking for a house for sale or rentals with someone else? Link your Realtor.com accounts to collaborate on your home search
• Share your favorite home listings and rentals, as well as your comments with each other
• Request feedback on home listings from those you trust quickly and easily via text, email or social media

Never miss out with timely real estate alerts
• Save your searches to know when new home listings that match your search criteria hit the market
• Act fast with alerts when home prices increase or decrease

Stay on budget with our helpful tools
• Use the Affordability Calculator to figure out your home price range
• Use the Mortgage Calculator to fine tune your estimated monthly payment
• Search homes by price or estimated monthly payment

Have feedback? Contact us at realappfeedback@move.com
Find more information at www.realtor.com\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6852846,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.move.realtor\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.move.realtor/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.move.realtor/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.move.realtor/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.move.realtor/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Fit: Activity Tracking\",\n \"appId\": \"com.google.android.apps.fitness\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.fitness\",\n \"icon\": \"https://play-lh.googleusercontent.com/jArSD-kxOa2llPXvqrjRcEJdL4XhjP8-WqEfg9UAlYF8v0qzXAZ0EI5k96l0pf3tDNg\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get to a healthier and more active life with the new Google Fit!

It's hard to know how much or what kind of activity you need to stay healthy. That's why Google Fit collaborated with the World Health Organization (WHO) and the American Heart Association (AHA) to bring you Heart Points, an activity goal that can help improve your health.

Activities that get your heart pumping harder have tremendous health benefits for your heart and mind. You'll earn one Heart Point for each minute of moderate activity like picking up the pace when walking your dog, and double points for more intense activities like running. It takes just 30-minutes of brisk walking five days a week to reach the AHA and WHO's recommended amount of physical activity shown to reduce the risk of heart disease, improve sleep, and increase overall mental wellbeing.

Google Fit will also help you:

TRACK YOUR WORKOUTS FROM YOUR PHONE OR WATCH

Get instant insights when you exercise and see real-time stats for your runs, walks, and bike rides. Fit will use your Android phone's sensors or Wear OS by Google smartwatch's heart rate sensors to record your speed, pace, route, and more.

MONITOR YOUR GOALS

See your daily progress on your Heart Points and Steps goal. Meeting your goals all the time? Easily adjust your goals to keep challenging yourself to achieve a healthy heart and mind.

MAKE ALL YOUR MOVEMENT COUNT

If you walk, run, or bike throughout the day, your Android phone or Wear OS by Google smartwatch will automatically detect and add your activities to your Google Fit journal to ensure you get credit for every move. Want extra credit? Turn up the tempo on your walks by starting a paced walking workout and stepping to the beat. Enjoy a different type of workout? Select it from a list of activities like pilates, rowing, or spinning, and Google Fit will track all the Heart Points you earn.

CONNECT WITH YOUR FAVORITE APPS AND DEVICES

Fit can show you info from many of your favorite apps and devices to give you a holistic view of your health, so you'll never lose track of your progress. These include Lifesum, Wear OS by Google, Nike+, Runkeeper, Strava, MyFitnessPal, Basis, Sleep as Android, Withings, Xiaomi Mi bands, and more.

CHECK IN AT ANYTIME, FROM ANYWHERE

See a snapshot of your activity history across Fit and your integrated apps in the redesigned journal. Or, get the full picture in browse, where you can find all of your health and wellness data.

KEEP A FINGER ON THE PULSE OF YOUR HEALTH

Breathing is one of the simplest ways to reduce tension and relieve stress. With Fit, checking in with your breath is easy—all you need is your phone camera. As well as your respiratory rate, you can measure your heart rate to get a better understanding of your body’s wellbeing.

Learn more about Google Fit and see a list of supported apps at: www.google.com/fit\",\n \"scoreText\": \"3.9\",\n \"score\": 3.861917,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.fitness\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.fitness/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.fitness/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.fitness/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.fitness/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"PTV Sports Live Streaming TV\",\n \"appId\": \"com.raidapps.ptvsportslive.liveptvsportshd\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.raidapps.ptvsportslive.liveptvsportshd\",\n \"icon\": \"https://play-lh.googleusercontent.com/wKNG31qNMNbLKZ2OmIOZMsw1DEdRKKZxOkFTKGvi6YlwvKtAbrRmoQUXHBE7b8Sg762g\",\n \"developer\": {\n \"devId\": \"Stream Inn\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Stream%20Inn\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"PTV Sports is a global Pakistani basic cable and satellite sports television channel by Pakistan Television Corporation that is famous for live broadcasting PSL (Cricket Matches) and Pakistan Super League 2019. PTV Sports is a state-owned channel. PTV Sports has telecast many sports events like Portugal Primeira Liga,Champions League,Hockey,European League,International Friendly Football Matches,World Cup Qualifiers since it is launched. It retains exclusive broadcasting rights for many sporting events including cricket, tennis, hockey and football.

This app has been made for sports lovers and viewers of PTV sports to keep them updated all time.This app provides you live streaming of International T20 Cricket,International Football,Badminton,Nation League and FA Cup all time where ever you are so that you can't miss your favorite match hit.

Featured App Categories
The worth knowing features of this app are:
- HD live streaming
- Single Click Access
- Very comfortable and easy to use
- Amazing eye-catching layout
- Easy and fastest download
- Easy to share with friends
- Squash
- Cricket World Cup 2019

Please download our app and share it with friends and family so that all can enjoy International Cricket on the go .Also don't forget to rate it.

DISCLAIMER:
We don't own any content that we are using in our app. All rights are reserved by their respective owners. We are only providing facility to sports lovers and we don't have any other mean with this app.In case of any problem please contact us directly and we will cooperate with you fully.\",\n \"scoreText\": \"3.8\",\n \"score\": 3.8207548,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.raidapps.ptvsportslive.liveptvsportshd\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.raidapps.ptvsportslive.liveptvsportshd/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.raidapps.ptvsportslive.liveptvsportshd/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.raidapps.ptvsportslive.liveptvsportshd/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.raidapps.ptvsportslive.liveptvsportshd/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Grammarly - Grammar Keyboard\",\n \"appId\": \"com.grammarly.android.keyboard\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.grammarly.android.keyboard\",\n \"icon\": \"https://play-lh.googleusercontent.com/deyz04czPzpKP09vrklnBHU4S-gT_o6wLt2jCZeeifdh53VW6YfBffj8bEPh4xzG6A\",\n \"developer\": {\n \"devId\": \"Grammarly, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Grammarly%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Edit and correct your grammar, spelling, punctuation, and more with your personal writing assistant, grammar checker, and editor.

The Grammarly Keyboard and proofreader allows you to write clearly, confidently, and mistake-free in all your apps. Advanced features such as the synonyms tool help you enhance your vocabulary, spell check words and improve your writing - from emails to social media posts.

Grammarly grammar checker and editor - how does it work?

1. Simply download the Grammarly app and enable Grammarly in your Keyboard settings.
2. You can adjust the look of your Keyboard for a customized experience—choose light or dark, key borders, the number row, and more.
3. You’re now good to go! Simply start typing in any app. Grammarly will check each word, your grammar, spelling, and punctuation, suggest synonyms, and help you improve your communication skills.

Whether you’re typing emails on the go, editing an important LinkedIn post, sending a text message, or composing an essential tweet, the Grammarly writing assistant and grammar checker lets you spell check, correct, edit and perfect your message from your mobile device with confidence.

The Grammarly Keyboard also supports swipe typing, so you can compose quality writing without slowing down.

Edit, spell check and correct your writing in real time

– Grammar checker: Know your grammar is always mistake-free.
– Spelling checker and proofreader: Easily avoid common typos.
– Advanced punctuation correction: Take the guesswork out of punctuation.
– Synonyms and editor: See better word choices and select synonyms as you’re typing.

Writing assistant and proofreader: Improve your communication skills

– Receive short, clear explanations for every correction.
– Understand your mistakes and avoid them in the future.

Customizable for your needs

– Dialect settings (American, Canadian, British, and Australian English)
– Light and dark themes
– Personal dictionary: Easily add your own vocabulary to your dictionary

*** Uplevel Your Communication Skills With Premium ***

Take your writing and communication skills from good to great with our advanced features and suggestions.

Grammarly Premium helps you strike the right tone, gives you real-time feedback, and helps you broaden your vocabulary by suggesting impactful, vivid words to help your message, social media post, or email come to life.

Premium features include:

✓ Vocabulary enhancement
✓ Clarity improvements
✓ Tone adjustments
✓ Word choice
✓ Formality level
✓ Fluency

****************

We designed the Grammarly Keyboard to be a writing assistant that works anywhere you write—no copying or pasting required, no proofreader needed.

Grammarly always keeps your writing safe and private. See our User Trust Guidelines for details: https://www.grammarly.com/trust

By installing the Keyboard, you agree to Grammarly’s Terms and Conditions (www.grammarly.com/terms) and acknowledge that you have read Grammarly’s Privacy Policy (https://www.grammarly.com/privacy-policy). California residents, please see the California Privacy Notice (https://www.grammarly.com/privacy-policy#for-california-users).\",\n \"scoreText\": \"4.1\",\n \"score\": 4.137178,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.grammarly.android.keyboard\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.grammarly.android.keyboard/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.grammarly.android.keyboard/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.grammarly.android.keyboard/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.grammarly.android.keyboard/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouCut - Video Editor & Maker\",\n \"appId\": \"com.camerasideas.trimmer\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.camerasideas.trimmer\",\n \"icon\": \"https://play-lh.googleusercontent.com/XA0DE6B2bRn9qgzR5altWtSGzealGjI-f-nqZV7gQMBWdWu4X89k27S71_RL8W-Ya9w\",\n \"developer\": {\n \"devId\": \"InShot Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/InShot%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"YouCut is free music Video Editor, pro Video Trimmer and Joiner app for YouTube and other social media.

Edit videos like a pro. Create your own videos from photos or video clips with YouCut in minutes. No video editing experience needed. Try it Now.

FREE & No Watermark!

Features:
Free Movie Maker and Video Editor
YouCut has the most useful features that other top pro video editing apps, or movie maker, video cutter apps have, but it is free and has no banner ads.

Video Merger & Video Joiner
Merge video clips into one video, add video to video. It is a pro video maker for YouTube, also the professional video cutter and video joiner, helps compress & combine videos without losing quality.

Video Trimmer & Video Cutter
Cut & trim video as you want. Edit video with music, export video in HD quality. Easy-to-use movie maker, the best video cutter & music video editor with stunning transitions.

Video Splitter & Video Slicer
Slice & split video into two separate video clips. Free movie maker and video editor for android.

Video Speed Control
Brand new fast/slow motion feature (Adjust video speed from 0.2× to 100×) , Editing video and adjust video speed with video filters and effects.
Speed up video in a fun way.
Slow down video for special moments.

Photo Slideshow Maker
Free music video editor with photos, professional video combiner app, merge photos to create slideshow.
Combine videos with photos, edit videos with music like a pro.
Slideshow maker, helps create slideshow in minutes.

No Watermark
As a free music video editor and full screen video maker for YouTube, YouCut never add Watermark to your video.

No ads when editing videos
There is no banner ads on the screen, unlike other video editing apps.

Add Music to Video
It is a professional Tik Tok editor, YouTube intro maker and Instagram story cutter that meets all your needs.
1. Add free featured music by YouCut.
2. Edit videos with your music.
3. Adjust the original video volume.

Video Filters & FX Effects
Add beautiful movie style video filters and FX effects to video. Movie maker and film editor without watermark.

Video Color Adjust
Adjust video brightness, contrast, saturation, etc. Custom video filters and effects. Best movie cutter and video crop app.

Change Video Aspect Ratio
Fit your video in any Aspect Ratios like 1:1, 16:9, 3:2, etc. No crop video maker free and video cutter app.

Change Video Background
Add different borders and no crop video.
1. Change the background color of your video.
2. White background can most assimilate into social media app like Instagram. Perfect Instagram story cutter app.
3. Black background make your video feel like a professional movie.
4. Don’t like flat color? You can use blur background.

Video Compressor & Converter
1. Choose resolution to compress and convert your video.Best HD video maker free & Tik Tok editor.
2. YouCut - Pro video maker and mp4 editor supports resolution up to 4K.
3. YouCut use an advanced technology to save more than 90% size without losing much quality.

Video Cropper
Crop video to any ratio you want. Zoom in/out your video.

Share Video
Add text on video with font and style.
Use Slow Motion Video Editor to make your video run in fast/slow motion, share video to YouTube, Instagram, Twitter…to get hundreds of 'likes'!

Crop Video, Video merger, Cut, Trim, Split, Compress, Blur, Photo Slideshow Maker, Add music, Add text to video, Apply FX video filters, No crop video, Rotate video, Share to YouTube... Fast/Slow motion video editor without losing video quality!

If you have any question about YouCut (pro video editor free, video cutter & movie maker, photo slideshow maker), please email us at: youcut@inshot.com

Disclaimer:
YouCut is not affiliated, associated, sponsored, endorsed by, or in any way officially connected with YouTube, Instagram, TikTok, Facebook.\",\n \"scoreText\": \"4.9\",\n \"score\": 4.8723803,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.camerasideas.trimmer\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.camerasideas.trimmer/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.camerasideas.trimmer/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.camerasideas.trimmer/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.camerasideas.trimmer/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Hilton Honors: Book Hotels\",\n \"appId\": \"com.hilton.android.hhonors\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.hilton.android.hhonors\",\n \"icon\": \"https://play-lh.googleusercontent.com/EgYq5LoHFknRfovswalE-HT4CG7C244WmM135MyJp1XJ8hikzQU8zLIPgBgLrKlJTQ\",\n \"developer\": {\n \"devId\": \"Hilton\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Hilton\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Hilton Honors makes it easy to book travel, earn rewards, and enjoy your trip — and it's free.

Top app features:

-View and manage your reservations in one place
-Choose your own room from a hotel floor plan
-Use your device as your room key
-Check in and check out from the app (no front desk needed)

Member benefits:

-Get the lowest price at over 5,700 hotels when you book direct
-Earn points with every stay and redeem them for free nights
-Enjoy free WiFi, late checkout, and no charge for a second guest
-Achieve Elite member status and get perks like free breakfast, free upgrades, free bottled water, and more

Our brands:

Canopy by Hilton
Conrad Hotels & Resorts
Curio Collection by Hilton
DoubleTree by Hilton
Embassy Suites by Hilton
Hampton by Hilton
Hilton Garden Inn
Hilton Grand Vacations
Hilton Hotels & Resorts
Home2 Suites by Hilton
Homewood Suites by Hilton
LXR Hotels & Resorts
Motto by Hilton
Signia Hilton
Tapestry Collection by Hilton
Tru by Hilton
Waldorf Astoria Hotels & Resorts\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6849027,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hilton.android.hhonors\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.hilton.android.hhonors/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.hilton.android.hhonors/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.hilton.android.hhonors/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.hilton.android.hhonors/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Safety at school: Find My Kids\",\n \"appId\": \"org.findmykids.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/org.findmykids.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/02LadtxGEBDY7eRKw2-aE46vw2lbbqAYQtw_SVFgmmt35ZKfl5TvBMYukqXh9JgDLuo\",\n \"developer\": {\n \"devId\": \"GEO TRACK TECHNOLOGIES INC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/GEO%20TRACK%20TECHNOLOGIES%20INC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Find My Kids - is a family GPS location tracker designed for child safety and parental controls.
You can connect a GPS kids watch or install our app on your child's phone to discreetly track their geolocation.

Find My Kids GPS phone tracker is designed with your child’s safety in mind. The app’s unique family safety features ensure you can easily keep in contact with your child when they aren’t with you or when they aren’t responding to you on their device. In addition to serving as a GPS tracker, Find My Kids also works as a parental control app and cell phone tracker, so you can always know where both your kids and their devices are located.

GPS location tracker – track your child’s location on the map, see their location history for the day and GPS coordinates. Ensure your child is where they’re supposed to be and that they aren’t visiting high-risk areas with location tracker app.

Listen In – tune in to what is happening around your child to ensure that they are safe and in good company.

Loud signal – send a loud notification and find phone if your child is having difficulty locating it or if it was left on silent mode and they can't hear your call. Use the app as a phone finder!

Application control – with these parental controls features, you can see what’s distracting them or preventing them from focusing in the classroom.

Security control – check that your child arrived at school on time – get notifications when they reach school, return home and get to other places; add in custom locations for additional security.

Battery check – track your child's mobile device charge status, remind your child to charge their phone in time with notifications to let you know that their battery is running low.

Family chat – chat with your child in our app with ease! Funny stickers are available, adding even more fun compared to standard messaging apps.

Phone locator – locate lost mobile devices easily using the location tracker and device locator features. Track a cell phone of your child for free.

The Premier App for Parental Control

The Find My Kids GPS location tracker app is intended for family safety and parental control only. The app cannot be installed on your child's cell phone without their knowledge; use is only authorized with your child’s explicit consent. Personal data is stored in strict accordance with current legislation and GDPR policies.

We care about your privacy and the security of your data. Therefore, we align our app with the requirements of the COPPA, the law on children's protection on the Internet, which confirms the official certificate of the COPPA kidSAFE Seal Program.

If your child has a smartphone:

Install the Pingo! app on your child’s cell phone to use the "Find My Kids" GPS location tracker. In the Pingo! app, your child will be able to chat with you, and in case of an emergency they can press an SOS button - you will immediately receive a loud alarm signal on your cell phone when the SOS button is pressed.

If your child has a GPS watch:
The app is suitable for any GPS watch or tracker.

How the Find My Kids app works:

1) install the Find My Kids locator app on your phone;
2) choose what device you want to connect: child’s phone or GPS watch;
3) install the Pingo app on your child’s phone or enter the GPS watch SIM card number
4) start using the Find My Kids GPS location tracker to ensure your family's safety.

Having technical difficulties with our geo tracker? Please contact our 24/7 chat support within the app or send an email to support@findmykids.org.

The Find My Kids app asks for the following permissions:
– access to the camera and photos – to install the child's avatar;
– access to contacts – to fill in the phone book in the GPS watch;
– access to a microphone – to send voice messages in the chat.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7015934,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.findmykids.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/org.findmykids.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/org.findmykids.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/org.findmykids.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/org.findmykids.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Spirit Airlines\",\n \"appId\": \"com.spirit.customerapp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.spirit.customerapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/EAoDg62PBmZAUp5O7BYuwkmKz7IvO9f6tPs2j623xTSnDbXwPUv1ByqRtfkUtGbjwQ\",\n \"developer\": {\n \"devId\": \"Spirit Airlines Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Spirit%20Airlines%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Our newly redesigned app has been enhanced to provide a more dynamic relevant experience where you can stay informed and use more self-serve capabilities. Its only the beginning, more to come!

Ready for More Go? With the Spirit Airlines app, easily manage all your trips in one place. Book your next getaway, check-in for your flight, get your boarding pass, and receive flight status updates when you actually need them. Travel faster and lighter than ever before with your new travel app companion.

My Trips
- Get the information you need right at your fingertips with all your upcoming trips in one place. Quickly see your flight status, gate/terminal, seat assignment, and much more!
- Get notified when it’s time to check-in so you’re ready to go the next day
- Access your boarding pass and move hassle-free through the airport
- Need to make a change? Quickly update your seats, add bags or options to your trip

Book Flights
- Find and quickly book your next getaway with ease

Flight Status
- Stay up-to-date with the latest flight notifications informing you of any impacting changes
- Easily check flight statuses so you know when your family and friends are arriving

My Account
- Sign up for Free Spirit® to start earning points immediately and use for award travel
- View your member number, tier status and track your point balance
- See points required to achieve next tier status
- Personalize your profile with your own avatar\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6433725,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.spirit.customerapp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.spirit.customerapp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.spirit.customerapp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.spirit.customerapp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.spirit.customerapp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ClevCalc - Calculator\",\n \"appId\": \"com.dencreak.dlcalculator\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.dencreak.dlcalculator\",\n \"icon\": \"https://play-lh.googleusercontent.com/zHVGtL9x5ks_cuw83q30sb30jHapNMKNXx3Mrfj2P4wwYZZ34DM_9OzcX-hgrizs2w\",\n \"developer\": {\n \"devId\": \"Cleveni Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Cleveni%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"This calculator allows you to easily handle all the calculations necessary for everyday life with a single application. A free calculator app with a clean interface and practical functions!

List of calculators currently supported:

1. Calculator ( + Scientific Calculator )
• Supports the four fundamental arithmetic operations, square, root, parentheses and percentage operations.
• Supports scientific operations such as trigonometric, exponential and logarithmic functions.
• Possible to modify incorrectly entered expressions with a freely movable cursor.
• Simple and easy.
• History available.

2. Unit Converter
• Supports length, weight, width, volume, time, temperature, pressure, speed, fuel efficiency, and the amount of data.
• Supports all unit conversions commonly used in everyday life.

3. Currency Converter
• Supports 135 currencies in the world, including dollar, euro, yen, yuan, etc.
• Automatically calculates using the real time exchange rate.

4. Percentage Calculator
• You can easily calculate the percentage increase or decrease.
• You can also calculate what percentage one number is of another.

5. Discount Calculator
• Get a discount price by entering the original price and the discount rate.

6. Loan Calculator
• You can calculate the total interest and total payments by entering the loan principal and interest rate.

7. Date Calculator
• A feature that calculates the specific date or anniversary to be remembered!

8. Health Calculator
• You can measure the body mass index (BMI) and the basal metabolic rate (BMR).

9. Automobile Fuel Cost Calculator
• You can calculate the fuel costs required for driving a car or traveling.
• Enter a distance and a fuel efficiency to get a fuel cost.

10. Fuel Efficiency Calculator
• Enter the amount of fuel used to get the fuel efficiency.

11. GPA Calculator
• You can correctly calculate your GPA!

12. Tip Calculator
• The tip amount to be added will be automatically calculated if you enter the billing amount and tip percentage.
• There is a function not to calculate tips on tax.
• You may calculate the amount per person by dividing final amount by the number of people.

13. Sales Tax Calculator
• Get a total price by entering the original price and the tax rate.

14. Unit Price Calculator
• Enter the price and the quantity and you will get the unit price.
• You can compare unit prices of various goods.

15. World Time Converter
• Transforms the time of 400 or more cities around the world.
• Daylight savings time will also be reflected in this calculation.

16. Ovulation Calculator
• Calculates the time of ovulation and fertility using the menstrual cycle!
• You can also create notes by date.

17. Hexadecimal Converter
• Converts between decimal and hexadecimal with ease and convenience.

18. Savings Calculator
• If you enter deposit amount, interest rate and time period, the interest after tax and final savings balance will be calculated.


[ Disclaimer ]
Cleveni Inc. makes no warranty as to the accuracy or reliability or suitability of any calculation results or information provided through the ClevCalc app. Cleveni Inc. is not also responsible for any damages, direct or indirect, which may occur by the calculation results or information provided through the ClevCalc app.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.72328,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dencreak.dlcalculator\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.dencreak.dlcalculator/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.dencreak.dlcalculator/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.dencreak.dlcalculator/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.dencreak.dlcalculator/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Steady - Earn Money\",\n \"appId\": \"com.steady.steadyapp.com\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.steady.steadyapp.com\",\n \"icon\": \"https://play-lh.googleusercontent.com/41ioKe5KDq7awZ1ECLzD2EmoxtQGWXFf_WWfvvTWdXzF8I_YMh3ml90PvtuNSZc_JBE\",\n \"developer\": {\n \"devId\": \"Steady Platform, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Steady%20Platform%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Are you ready to achieve better financial health? Looking for ways to make more money? You’ve come to the right place!

Employers have far too much power these days. By using technology to put the power back into the hands of the American worker, Steady is proud to support a community of millions putting more cash in their pocket, their way.

Install Steady for FREE today and join 4 million Steady Members taking action to Steady their income.

Cash rewards. Financial tracking. Income insights. More ways to earn, the Steady way.
Members have an average income increase of $5,500 per year after joining Steady.

Learn more about our community impact at www.steadyapp.com/impact

The word is out! Hear from existing Steady members sharing their success at www.steadyapp.com/testimonials.

WHAT YOU GET

We know that making ends meet isn’t easy, but the team at Steady believes that there is strength in numbers.The Steady community is here to provide members with insights and information not available anywhere else, so you can explore the best personalized opportunities to generate more income.

Top Features:

Boost Your Income
Steady offers a ton of ways to get in on the earnings now. Make smart money moves with any one of our trusted partners and get on your way to earning more. Simply follow the steps and upon confirmed completion, Steady will send you cash rewards straight to your account. So far, we’ve paid out millions in Booster rewards, and more all the time!

Income Boosters, emergency cash grants, and income tools to help you set and reach your goals are just a few of the other ways Steady is working hard to encourage positive change for all our members.

Better Employer Insights
Easily view, compare, and organize all your income and earnings, or explore members’ earnings data on employers in your area.

This accurate, community-driven income info consists of real, take-home pay information on thousands of employers not available anywhere else but Steady.

With that kind of personalization, you can decide for yourself how much you want to make, how you want to make it, even when you want to get paid, and find the right income source(s) for your situation.

Income Passport
We’re here to help you get where you need to go next! Steady’s Income Passport makes it easier to quickly organize all of your income sources, expenses and information into one verified, shareable report.

Trusted Community Partner
At Steady, we are dedicated to improving the lives of our members and their families. We aren’t paid by employers; our only customer is you - the Steady community.

In cooperation with our non-profit partners, we’ve delivered millions in emergency cash grants to members who need it most.

We take your privacy extremely seriously, and we are focused on ensuring your information remains safe and secure. Steady uses the latest technology to keep your information protected.

JOIN THE COMMUNITY!
Steady is a place for everybody to learn, earn, and in turn, maximize their incomes. The unique and personalized insights we provide our members enable them to make the best decisions for themselves to ensure they get more cash in their pockets quicker.

Complete your profile now to begin receiving additional personalized income recommendations and more ways to earn. It’s a no-brainer… Download the app wherever you are and Steady your income today!

Questions? Comments? Feedback? Reach out to our team anytime at support@steadyapp.com. We want to know what you think, and would love to hear from you!\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2893753,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.steady.steadyapp.com\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.steady.steadyapp.com/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.steady.steadyapp.com/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.steady.steadyapp.com/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.steady.steadyapp.com/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Secured Cleaner\",\n \"appId\": \"org.laytops.securedcleaner\",\n \"url\": \"http://gplayapi.srik.me/api/apps/org.laytops.securedcleaner\",\n \"icon\": \"https://play-lh.googleusercontent.com/7lG05AiKw43VsPMlHfFceqp4ckxb6Mvrl5AIS5QvniBHCFVxT7l4VM41FpxQKShVw_05\",\n \"developer\": {\n \"devId\": \"MoboSmart\",\n \"url\": \"http://gplayapi.srik.me/api/developers/MoboSmart\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Clean to trash, lower the temperature, free up memory along with our app Secured Cleaner\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4158416,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.laytops.securedcleaner\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/org.laytops.securedcleaner/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/org.laytops.securedcleaner/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/org.laytops.securedcleaner/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/org.laytops.securedcleaner/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Smart Translator - OCR, photo\",\n \"appId\": \"com.translateapp.smart.free\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.translateapp.smart.free\",\n \"icon\": \"https://play-lh.googleusercontent.com/TVH1VolzGY63DVhqsdF0-lNbVNHV1jNdIwxRYdOpOsBaz-5sdkpbgi5W1LIZnykyPsc\",\n \"developer\": {\n \"devId\": \"Cherry Apps Collection\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Cherry%20Apps%20Collection\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"An easy language translator
• Fast and easy.
• 100+ languages
• Translate text
• Translate voice
• Share/Send the translation
• Copy the translation

• Text translation: Translate between languages by typing
• Tap to Translate: Copy text in any app and tap the Translate icon to translate (all languages)
• Offline: Translate with no internet connection
• Instant camera translation: Translate text in images instantly by just pointing your camera
• Photos: Take or import photos for higher quality translations
• Phrasebook: Star and save translated words and phrases for future reference


Translations between the following languages are supported:
Afrikaans, Albanian, Amharic, Arabic, Armenian, Azerbaijani, Basque, Belarusian, Bengali, Bosnian, Bulgarian, Catalan, Cebuano, Chichewa, Chinese (Simplified), Chinese (Traditional), Corsican, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Filipino, Finnish, French, Frisian, Galician, Georgian, German, Greek, Gujarati, Haitian Creole, Hausa, Hawaiian, Hebrew, Hindi, Hmong, Hungarian, Icelandic, Igbo, Indonesian, Irish, Italian, Japanese, Javanese, Kannada, Kazakh, Khmer, Kinyarwanda, Korean, Kurdish (Kurmanji), Kyrgyz, Lao, Latin, Latvian, Lithuanian, Luxembourgish, Macedonian, Malagasy, Malay, Malayalam, Maltese, Maori, Marathi, Mongolian, Myanmar (Burmese), Nepali, Norwegian, Odia (Oriya), Pashto, Persian, Polish, Portuguese, Punjabi, Romanian, Russian, Samoan, Scots Gaelic, Serbian, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenian, Somali, Spanish, Sundanese, Swahili, Swedish, Tajik, Tamil, Tatar, Telugu, Thai, Turkish, Turkmen, Ukrainian, Urdu, Uyghur, Uzbek, Vietnamese, Welsh, Xhosa, Yiddish, Yoruba, Zulu

Through investigation, we found that some users use translation software to better communicate with foreigners on foreign websites.
Therefore, for the convenience of the public, our app has added the function of a virtual server, so that users only need to open a software to access the Internet safely and efficiently.

Secure VPN
The difference between our app and other translation apps is that we have our own servers in most parts of the world. Users can use our app to browse other foreign websites and translate web page text. It is an app that kills two birds with one stone.\",\n \"scoreText\": \"2.9\",\n \"score\": 2.862069,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.translateapp.smart.free\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.translateapp.smart.free/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.translateapp.smart.free/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.translateapp.smart.free/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.translateapp.smart.free/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"MyFitnessPal: Calorie Counter\",\n \"appId\": \"com.myfitnesspal.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.myfitnesspal.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/RSu_Yble-5MgqnXbuqaYdj9r97Wv3yE0ICX2vDGAw2QCZPF4wZLA71Q1cEndjR1WpDM\",\n \"developer\": {\n \"devId\": \"MyFitnessPal, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/MyFitnessPal%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Track progress toward your nutrition, fitness, weight loss and water goals with MyFitnessPal. This all-in-one food tracker and health app is like having a nutrition coach, meal planner, and food diary with you at all times.

MyFitnessPal isn’t another restrictive diet app. This is a health app to help you learn about your habits … see how you eat … make smarter food choices … find motivation & support ... and conquer your health goals.

Download and start your free 30-day Premium trial to gain access to exclusive food tracking and fitness logging tools and expert guidance. You’ll soon discover why MyFitnessPal is the #1 food and nutrition tracker in the U.S., a GQ 2020 Fitness Awards “Best Fitness App,” and has been featured in the New York Times, Wall Street Journal, the Today Show, and U.S. News & World Report.


SO MUCH MORE THAN A CALORIE TRACKER & FOOD JOURNAL

It’s like having a dietitian, personal trainer, and nutrition coach at your fingertips.

Log Food – Easy-to-use tools make food tracking quick and simple
Track Activity – Add workouts and steps with the fitness tracker
Customize Your Goals – Weight loss, weight gain, weight maintenance, nutrition & fitness
See Your Progress – Track at a glance, or analyze nutrition & calories in detail
Learn From a Registered Dietitian – Meal Plans customized for your target calories, whether you want to lose or gain weight—with access to our Meal Planner tool
Stay Inspired – 500+ healthy recipes and 50 workouts keep routines fresh and fun
Connect With Community – Find friends and motivation in our active forums

A CLOSER LOOK AT FEATURES & BENEFITS

Gain Valuable Insights Through Food Logging
Discover which foods fuel you best. It’s not just a diet app, calorie counter to lose weight, or a faster way to fat loss—it’s about holding yourself accountable and understanding what you put in your body.

■ One of the Largest Food Databases – Track calories in over 14 million foods (including restaurant dishes)
■ Fast & Easy Food Tracker Tools – Type to search, add foods from your history, or scan a barcode or entire meal with your phone’s camera
■ Calorie Tracker – Automatically count calories and see your daily progress
■ Macro Tracker – See carbs, fat & protein breakdown by gram or percentage—no need for a separate carb tracker or keto diet app!
■ Nutrition Tracker and Insights – Analyze nutrition intake and set specific goals for macros, cholesterol, sodium, fiber & more
■ Water Tracker – Track to make sure you’re staying hydrated

Customize Your App Experience
Choose settings that help you achieve your goals.

■ Custom Goals – Track calories by meal or day, set up macro goals & more
■ Personalized Dashboards – Pick stats you want to see at a glance
■ Net Carbs Mode/Carb Tracker – To simplify a low carb or keto diet, view net (not total) carbs
■ Protein Counter – Set your protein goals and track how much you eat during the day
■ Add Your Own Foods/Meal Tracker – Save recipes and meals for quick logging
■ Count Calories From Exercise – Decide how activities affect daily calorie goals
■ Connect 50+ Apps & Devices – From fitness tracker and smartwatch apps
■ Track With Wear OS – A calorie tracker, water tracker, and macro tracker on your watch face.

View our terms & conditions and privacy policy: https://www.myfitnesspal.com/privacy-and-terms\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3722115,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.myfitnesspal.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.myfitnesspal.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.myfitnesspal.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.myfitnesspal.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.myfitnesspal.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"AutoCleaner: remove junk file\",\n \"appId\": \"com.auto.touch.cleaner.junk\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.auto.touch.cleaner.junk\",\n \"icon\": \"https://play-lh.googleusercontent.com/hUFYaeJmFFZPKuai429vxQ3L2l8duLi5qh-nMks94A0VaRouafPXHeRqaviBjzNmx8Lj\",\n \"developer\": {\n \"devId\": \"Live Wallpaper Production\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Live%20Wallpaper%20Production\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"AutoCleaner is a professional clean software for Android

Max Junk File Cleaner
AutoCleaner helps free up your storage space by removing junk, residual and cache files which slows down your phone.

Boost Mobile
AutoCleaner boost helps speed up the phone by freeing up RAM. After boosting your mobile, you can run a speed test to see how much faster it is.

App Manager Master
AutoCleaner provides information on apps that are not used based on usage. You can manage and uninstall apps that are rarely used to provide more storage space.

Image Master
AutoCleaner can analyze photo gallery and sort them into different albums where the users can see similar photos to delete.

AutoCleaner can optimize and speed up your Android phone with just One Tap. AutoCleaner can also scan your phone for cache and junk files, and have them cleaned up to greatly improve your phone's processing speed.

Game Booster speeds up your game playing

Notification Cleaner
Don't worry about the pop-up notifications. Notification Cleaner can keeps your status bar clean and makes your phone always at fast and smart status.

Similar Picture Detector
It scans all similar or duplicate pictures and you can delete useless photos to free up phone space.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.566116,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.auto.touch.cleaner.junk\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.auto.touch.cleaner.junk/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.auto.touch.cleaner.junk/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.auto.touch.cleaner.junk/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.auto.touch.cleaner.junk/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Angi: Hire Home Service Pros\",\n \"appId\": \"com.servicemagic.consumer\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.servicemagic.consumer\",\n \"icon\": \"https://play-lh.googleusercontent.com/77sTy6ukHfQr4Bn2u47jc8SEwxq4P9OMWXUCYatsPKmVSbSHvcW1JHpUSN2GgYVDDvz4\",\n \"developer\": {\n \"devId\": \"Angi Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Angi%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"HomeAdvisor and Angie’s List are now Angi! Hire professional contractors to help with all of your home service needs with upfront pricing and easy booking. Find services for everything from kitchen design, landscaping, movers and lawn care for spring cleaning!

Get an Angi Key Membership to enjoy savings on 150+ home renovation projects!* Get exclusive access to special offers and additional benefits.

Cleaning services and home remodeling projects are easier than ever – just in time for spring cleaning! Hire top experts and contractors near you with fair pricing for any home project. Cleaning, landscaping, laundry services or anything in between, professional services are covered by our Happiness Guarantee. Home renovation projects are covered up to the full purchase price, plus limited damage protection.

Home service projects with our professional contractors make completing projects easy! Our contractors are customer-rated experts. Find the best local electricians, plumbers and more from our trusted network. Hire service pros for home remodel, renovation, repair, and maintenance projects directly from the app service planner – it’s that simple.

Home improvement made easy. Book our professional local contractors using our instant booking option. Book a service with upfront pricing or get a contractor estimate. Hire top local contractors for hundreds of professional services. Home improvement projects can be paid back over time by accessing financing – all from one service app.

Hire professional services and view verified reviews in hundreds of home service categories. Compare quotes from your neighbors’ favorite contractors and get exclusive deals from highly-rated professionals in your ZIP code!

Professional cleaning services, home remodeling, home improvement, home repair, maintenance – service is made easy with Angi. Prefer DIY? A service pro is here to help you complete your projects safely and securely with video call and payments right on the Angi app.

Movers, landscaping, and beyond. Find professional contractors nearby for any renovation, remodel or service projects anytime, anywhere with Angi.

Angi Features:

FIND SERVICE PROS & TRUSTED CONTRACTORS
- Discover, compare & book home improvement professionals
- 500+ home service categories, including cleaning services
- Hire home renovation experts: Search Angi’s contractor network for all home needs
- Professional contractors are certified, trusted, qualified service pros
- Check ratings & reviews from real customers

HOME IMPROVEMENT SERVICE PLANNER
- Compare install, remodel or repair costs for hundreds of projects
- Monitor professional contractors and projects
- Professional local services: See project costs in your area

PAYMENT & FINANCING OPTIONS
- Pay service experts directly in the Angi app
- Flexible payment including pay-over-time financing

PROFESSIONAL SERVICES
Find and hire contractors for all home service projects, including:
- Home Remodel, Home Paint, Renovation & Additions
- Kitchen Design & Bathroom Remodels
- Roofing
- Windows
- Housekeeper, Maid service & Home Cleaning
- Concrete Experts
- Tree Services
- Handyman Services
- Heating & Furnace Systems
- Electrician Service Pro
- Decks
- Pest Control
- Foundations
- Plumbing professional
- Yard Design, Lawn Care & Maintenance
- Siding
- Fences
- Home Repair

Get the fastest and easiest way to find and schedule home improvement, remodel and repair contractors. Start your next home project with Angi!

*Enjoy unlimited access to 20% savings on every project (up to a total discount of $35) with your Angi Key Membership, an optional subscription that costs $29.99 per year.

California Privacy: https://vault.pactsafe.io/s/a84ad12b-7245-4a12-9fc5-2011a3bf4d62/legal.html#contract-hyia9fa6b

Payment options through Affirm are subject to eligibility and are provided by these lending partners: affirm.com/lenders. Affirm and its lending partners do business in accordance with federal Fair Lending laws.\",\n \"scoreText\": \"3.4\",\n \"score\": 3.447817,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.servicemagic.consumer\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.servicemagic.consumer/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.servicemagic.consumer/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.servicemagic.consumer/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.servicemagic.consumer/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"LG ThinQ\",\n \"appId\": \"com.lgeha.nuts\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.lgeha.nuts\",\n \"icon\": \"https://play-lh.googleusercontent.com/UKhHZZAANiZezV8TQEx3et9GBCiXMnPXxQARM96h2js3ZYTWV7Sfv8X0CKYLvbCiWnjg\",\n \"developer\": {\n \"devId\": \"LG Electronics, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/LG%20Electronics%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Connect your washer, air conditioner, TV, and other appliances to the ThinQ app.
Get away from the busy routine and enjoy a relaxing home life with smart ThinQ. ☕

■ Get immediate notifications
The ThinQ app will keep you informed with all notifications you need so that your laundry will not smell musty or your pizza in the oven will not get overcooked. ThinQ will periodically diagnose the state of your products by itself.

■ Control your home from anywhere
You can check the indoor temperature of your house and turn on your air conditioner even while you are out. You can also remotely run your washer from outside and proceed with the drying process right after coming back home.

■ TV remote control in my smartphone
Change TV channels and adjust the sounds with the ThinQ app. You can enjoy your mobile content in your smartphone gallery on a TV screen. You can also use the Magic Remote feature with your app.
※ The availability of products and services may vary depending on the models you own or the region/country you reside in.

■ ThinQ will automatically access the current state of your products
Get the state of your products smartly assessed in detail. Smart Diagnosis will catch problems and help you troubleshoot them.

The LG ThinQ app supports Android OS 7.0 and higher versions.
For Android OS versions lower than 7.0, consult the mobile device manufacturer and upgrade your device to its latest version.

The accessibility API is used only to transmit the signal that users input to the TV remote control to the smartphone when using the ‘View Phone Screen on TV's Larger Screen’ function in the LG ThinQ app. We do not collect or use your information except for the minimum information necessary to operate your smartphone.

The following access permissions are necessary for the ThinQ app.

• Calls/Contacts
- To contact the LG Service Center

• Location
- To obtain the device connecting Wi-Fi info when adding devices
- To set and save the home location in Manage Home
- To search for the weather information of the current location

• Camera
- To take a profile picture
- To scan QR codes and share homes or accounts
- To take photos and attach them to the 1:1 Support section
- To take a picture of the purchase receipt and save it when registering additional information about the product
- To recognize barcodes when using "Scan to Cook"

• Storage capacity
- To take photos and attach them to the 1:1 Support section
- To take a picture of the purchase receipt and save it when registering additional information about the product

• Microphone
- To check product status via Smart Diagnosis\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1715875,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.lgeha.nuts\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.lgeha.nuts/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.lgeha.nuts/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.lgeha.nuts/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.lgeha.nuts/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Merriciya\",\n \"appId\": \"com.veedily.veed\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.veedily.veed\",\n \"icon\": \"https://play-lh.googleusercontent.com/zD83lCLp8jXaPEOrLbxbCdKZ8ybjhKHZH9FDoQy4oraaw3TCOKm52FVc_mUgoT9GDmzL\",\n \"developer\": {\n \"devId\": \"Veedily\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Veedily\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"- Contains all existing or movie trailers.
- Get a comprehensive understanding of movie information.
- Get the latest movie news.
- Timely notification of new movie release to avoid missing the release.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5980864,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.veedily.veed\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.veedily.veed/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.veedily.veed/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.veedily.veed/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.veedily.veed/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Turbo Booster - Clean Phone\",\n \"appId\": \"com.clean.phone.turbo.booster.one.master\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.clean.phone.turbo.booster.one.master\",\n \"icon\": \"https://play-lh.googleusercontent.com/g929F3TabCUOESb0rfBB-nlgsuucfIcgA8l-LawhKoWvVECMjfkkdTVG8fHE7HEhSrE\",\n \"developer\": {\n \"devId\": \"Begamob Global\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Begamob%20Global\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Turbo Booster - Clean Phone is a fast and amazing one phone booster app.

Turbo Booster - Clean Phone main feature
- Equipped with advanced mechanisms such as junk cleaner master, Block Noti-ads, RAM booster, Game booster, clean master, Cache Cleaner , device optimizer, app manager.
- A powerful, effective phone booster, clean master , clean phone for android to improve your android for best performance

How does Turbo Booster - Clean Phone Master improve your device performance?
One tap Booster= Cache Cleaner + One Tap Booster + Junk Cleaner + Battery Saver + Junk Notification Cleaner + RAM Cleaner + Space Cleaner + cleaner master + Residual File Cleaner
Install this super android cleaner, the all in one toolbox, Android Optimizer, and Clean Phone Master now to master clean and booster phone. You won't ask how to clean master my android phone any more.

🚀Turbo CLEANER (JUNK CLEANER )
Clean Booster helps free up your storage space by removing junk, residual and cache files which slows down your phone.
With our professional turbo booster, you can also free up much more space from cleaning cache data from social apps without worrying about deleting the wrong files.

🚀Turbo Booster Mobile
One Tap Boost helps speed up by freeing up RAM. After boosting your mobile, you can run a speed test to see how much faster it is.

🔋Turbo BATTERY SAVER
It’s time to meet your awesome personalized battery saver doctor! Turbo Booster can intelligently monitor, analyze battery usage, close battery-draining apps in time to help save battery power, optimize battery usage and extend its life. Just one tap can save electricity and help Android away from the low-battery trouble!

🚀Turbo Booster's CPU Cooler
CPU Cooler can cool down and booster your phone with one tap.

🔥Fast and Simple
One Booster's user interface is simple and intuitive, making it user-friendly, easy to clean cache, junk files to free up your phone's RAM.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.1165047,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.clean.phone.turbo.booster.one.master\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.clean.phone.turbo.booster.one.master/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.clean.phone.turbo.booster.one.master/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.clean.phone.turbo.booster.one.master/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.clean.phone.turbo.booster.one.master/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"GPS Live Navigation, Maps, Directions and Explore\",\n \"appId\": \"com.jvstudios.gpstracker\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.jvstudios.gpstracker\",\n \"icon\": \"https://play-lh.googleusercontent.com/0cHr7wsqCKtwqs4MgvVKmJYvkN4WHiddsgQK3AZSM23FWJKESVuRIrm-bthPaYZZxzc\",\n \"developer\": {\n \"devId\": \"JVSTUDIOS\",\n \"url\": \"http://gplayapi.srik.me/api/developers/JVSTUDIOS\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"GPS Maps and Directions main features:
• REAL-TIME MAPS: Travel with real-time navigation and route suggestion
• OFFLINE MAPS & NAVIGATION: Trusted by many travelers for fast & easy navigation.
• LIVE TRAFFIC ALERTS: Reach destination faster with real-time traffic updates
• EXPLORE PLACES: Find a gas station nearby and eat around you
• WEATHER UPDATES: Check the local weather forecast and plan your day
• SPEEDOMETER: Helps you stay within the speed limit


Our GPS map app reveals the world around you with a powerful routing engine, traffic updates, intuitive turn-by-turn directions, and interactive maps to help drivers build engaging driving and the best navigation experience. All these features factor in real time traffic information while you're driving, including the current speed limit, so you'll know exactly how long until you arrive.

Choose between real-time or offline GPS navigation and reach your destination faster and easier without any hassles. You can also share your estimated time of arrival with family, friends, and coworkers. Almost all the countries and territories are mapped with millions of places of interest for your convenience.

With traffic driving, cycling, and walking direction modes, our maps make it easier, safer, and more environmentally friendly to find the way to your destination with your choice of navigation. Our near me option with guides can help you find the best places to eat, shop, and explore.

Turn-by-turn navigation:
Our turn-by-turn navigation feature guides you to your destination with audio and visual help along the way when you're on the move. Use driving, walking, and cycle navigation modes anywhere in the world. Getting around doesn't get much more accessible.

Traffic aware routing:
Live traffic automatically finds the fastest route even as conditions change along the way. Get to your destination faster with instant routing changes to avoid traffic and save you time. Traffic automatically updates during the trip, and drivers are notified if a faster route is found.

Offline maps & routing:
Download the desired map specific to your region and navigate freely and easily without the internet. Embedded routing engine that can instantly reroute users who miss a turn or pull off the road for a quick stop, even without an internet connection and with high-quality offline maps.

Explore new places:
Discover new ways to explore new places around the world to eat, shop, meet friends, and explore. Search and find local restaurants, businesses, and other nearby places and share them with friends and family.

Precise location tracking:
Enhanced location engine cleans up conflicting GPS data to provide consistent positioning and movement on the map so you'll know exactly how long until you arrive at your destination.

Report a traffic accident:
Users can safely and efficiently report an accident, hazard, or speed check along your route. You can even report when incidents displayed on the map have been cleared, all while keeping your navigation intact and your focus on the road.

Customize & favorite:
Customize your location and add favorites for faster navigation and save time. Share the customized locations with your friends and loved ones.

Enhanced location engine:
The precise location engine continually filters and processes GPS signals and generalizes a driver's current location, even when GPS signals are unavailable, using dead reckoning algorithms to avoid navigation interruptions.
This allows the Navigation SDK to provide high position accuracy, with low latency, so that the driver's location on the map stays in sync with the vehicle's actual location resulting in more timely and accurate directions, fewer reroutes, and more on-time deliveries and pick-ups.

Enjoy fast, detailed and reliable maps with turn-by-turn navigation trusted by over 10 million travelers worldwide and counting.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.300498,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.jvstudios.gpstracker\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.jvstudios.gpstracker/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.jvstudios.gpstracker/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.jvstudios.gpstracker/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.jvstudios.gpstracker/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Playsee: Watch Videos & Shorts\",\n \"appId\": \"com.framy.placey\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.framy.placey\",\n \"icon\": \"https://play-lh.googleusercontent.com/vwCrbaNrjg9f5Qpx-kzRN-dmfW2c-93tiUV5AVDEcpvX_LKw17z72yVkjhhkT5GB914\",\n \"developer\": {\n \"devId\": \"Playsee\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Playsee\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Playsee is the trending social media platform where you can capture, upload or watch videos & shorts with friends. Share reels, stories, or trending videos with friends and family, chat, and make new friends from around the world!

Join thousands today and watch or create your own mini video shorts that you can upload and share with the entire Playsee community. Playsee’s unique map-based social media platform allows you to expand your horizons and explore new places, both near you or all around the world. Try playsee’s interactive map discovery to find new places like hotspots, trending restaurants, and popular travel locations, and chat with new friends near you and globally.


Highlights
• Make new friends by instantly sharing video stories of trending places with the community.
• Watch videos from around the world with the Go!
• Take social networking to the next level and get discovered by anyone!
• Discover trending locations for food, drinks, hangouts, vacay, and more!

🗺 Interactive Map Discovery
• The short video sharing platform to find & watch video shorts, stories, and reels of fun places posted by your friends, whoever you follow, & influencers!
• Let the map be your guide & find popular food and travel locations with personalized recommendations and popular hashtags.
• Watch videos from around the world - in nearby cities, national parks, and local parties - anywhere your heart desires!

📍 Discover & Explore New Spots
• Check-in at your local hotspots & capture your best videos to share with your friends & followers.
• Let people know where it's good to grab a drink & some food around your area by filming short video stories and reels.
• Explore trending places, hashtags, events, and moments in your city from wherever you are or use the Go! to take a sneak peek for your next vacation and get to know the locals.
• Perfect for exploring restaurants, hangout spots, vacation spots & more!

👋 Make Friends Anywhere
• Use our unique hashtags feature to interact with others that share similar interests. Use Playsee to connect, chat, and keep in touch.
• Hashtag your posts & spark trending chats around the world.
• Expand your local friend group into social media circles across the world.
• Connect with family, old friends, and new friends! Whether they’re near you or across the globe - Playsee is here for you!

💬 Build Your Own Community
• Establish a social media following through your content & sharing short videos.
• Become an influencer and show your followers the real you by sharing your everyday life on our short video platform.
• Use trending, local, and relevant hashtags to share and become discovered.

🌎 Share Your Moments with Followers, Friends, and Beyond
• Like, comment, and share & save your favorite short video stories.
• Make new friends and share posts, reels, stories & videos from Playsee to other social media apps.

At Playsee, we are bringing people together. Through shared local and global discovery, our short video social media platform connects friends and builds communities.

Download & be a part of the video social media trends on the hottest social-networking app.

Playsee's Safety Practices: Playsee requests location access while you use the app to post trending video story experiences and to share fun places. But don't worry, we are super serious about user privacy and safety. Your immediate real-time location is never stored or shared and is only visible to you. Your data is secure & safe at all times.

Need help or want to leave feedback? Visit https://help.playsee.co\",\n \"scoreText\": \"3.9\",\n \"score\": 3.865497,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.framy.placey\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.framy.placey/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.framy.placey/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.framy.placey/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.framy.placey/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Ringtones Songs For Android\",\n \"appId\": \"com.ringpro.popular.freerings\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.ringpro.popular.freerings\",\n \"icon\": \"https://play-lh.googleusercontent.com/vvlWSBNaDSOm6wrEl6PE0hoEmt4pHowMxUquXAuXQtokjV7cCyb-vAQJQa-9mfnnOg\",\n \"developer\": {\n \"devId\": \"Ringtones App For Phone\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Ringtones%20App%20For%20Phone\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Are you looking for ringtones for Android phones? Would you like your phone to ring unique?

Ringtones Songs For Android is a perfect choice for you. Ringtones Songs For Android offers countless best popular ringtones for Android phones. You can download ringtones to set them up as default ringtone, message tone, alarm sound or ringtone for individual contact.

The ringtones are selected carefully with high quality, uniqueness and diversity: Funny ringtones, Baby ringtones, Animal ringtones, Message tones, Pop, Rock, Hip-hop, Dance, Rap, Country, Ringtones remix, Christian & Gospel, Bollywood, Alarm.

Very easy to find the trending ringtones in New ringtones, and Hot 100 Weekly.

More than 10,000 popular ringtones in Ringtones Songs For Android app. The ringtones are weekly updated including both new ringtones and requested ringtones from users.
Features:
- Impressive collections with 10,000+ free ringtones
- Download ringtones to enjoy them without internet
- You can request any new ringtone
- Superfast, lightweight and easy to use

If you like the app, please rate it 5 stars, leave a nice comment and recommend it to your family and friends.

Thank you for using this app!\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7597575,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ringpro.popular.freerings\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.ringpro.popular.freerings/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.ringpro.popular.freerings/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.ringpro.popular.freerings/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.ringpro.popular.freerings/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Tagged - Meet, Chat & Dating\",\n \"appId\": \"com.taggedapp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.taggedapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/icjCQlWN3Y04d2-G84JzWWpTtGJIyk4R-Gp_QFHhyasgG_LmOd09VdoBG5e2YyQF9R8\",\n \"developer\": {\n \"devId\": \"Ifwe Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Ifwe%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to Tagged! 🔥🔥
Tagged is the #1 place to link up with new people, chill and play games with over 300 Million other users!

So, what makes us different from other apps? On Tagged, we KEEP IT REAL 💯.
You can do YOU and be accepted for who you are.
No need to change your personality on here, you’re already ⚡LIT⚡!

The question is, are you ready?! DOWNLOAD NOW and join our Fam ASAP! 🙌🏾 🙌🏽

With a single swipe of the thumb you can:
- Watch a Live stream, or start your own!📽
- Make a quick connection with ladies and guys nearby
- Match with people just like you, thanks to our 🔥 algorithm
- Compete in our addictive game, PETS 🐶 🐱
- Chat with new friends
We look out for you too! - We take your privacy very seriously.
Your exact location and personal information will NEVER be given without your permission.
YOU decide if, when, and how you want to connect.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4134927,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.taggedapp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.taggedapp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.taggedapp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.taggedapp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.taggedapp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"DIRECTV\",\n \"appId\": \"com.att.tv\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.att.tv\",\n \"icon\": \"https://play-lh.googleusercontent.com/BwW5hCoHEuBtzERVYerHWc8twPf_m58Ppf3xptV_N4CuL44QF75hNsBAbC_OARieR7Es\",\n \"developer\": {\n \"devId\": \"AT&T Services, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/AT%26T%20Services%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The DIRECTV App, for DIRECTV and DIRECTV STREAM customers, is the fresh way to stream all the entertainment you love.
Live or On Demand, at home or on the go, big screen or small - no matter how you like to watch, we bring your TV together.

No matter your passion, we’ve got you covered with live sports, breaking news and thousands of On Demand titles.
Binge hit movies & most talked about shows, and quickly find your favorite shows using our intuitive user interface.

Please note: this app features Nielsen’s proprietary measurement software which contributes to market research, like Nielsen’s TV Ratings. For more information visit: www.Nielsen.com/digitalprivacy\",\n \"scoreText\": \"3.4\",\n \"score\": 3.445441,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.att.tv\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.att.tv/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.att.tv/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.att.tv/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.att.tv/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Scanner Radio - Police Scanner\",\n \"appId\": \"com.scannerradio\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.scannerradio\",\n \"icon\": \"https://play-lh.googleusercontent.com/J3UkD7b2ZZ_kKJQ5ogT19uo2akaMLSMzNfIGyXIyWmt2vPRIJt2dIH8NHMnd0EyAWA\",\n \"developer\": {\n \"devId\": \"GordonEdwards.net LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/GordonEdwards.net%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Listen to live audio from over 7,000 fire and police scanners, NOAA weather radio stations, ham radio repeaters, air traffic, and marine radios from around the world. Turn on notifications to receive alerts anytime a scanner has more than 2000 listeners (to find out about major events and breaking news).

FEATURES

• View scanners located nearest you.
• View the top 50 scanners (those that have the most listeners).
• View scanners added most recently (new scanners are being added all the time).
• Add scanners you listen to the most to your Favorites for quick access.
• Browse the directory by location or genre (public safety, aviation, railroad, marine, weather, etc).
• Turn on notifications to be notified when major events are happening (details below).
• Add Scanner Radio widgets and shortcuts to your home screen for quick access.

NOTIFICATION FEATURES

Receive a notification anytime:

• ...any scanner in the directory has more than 2000 listeners (configurable).
• ...a scanner within a certain distance of your location has more than a certain number of listeners.
• ...a specific scanner has more than a certain number of listeners.
• ...a Broadcastify alert is posted for one of your favorites.
• ...a scanner within a certain distance from you is added to the directory.

Using the notifications feature is a great way to find out about breaking news events before they're covered in the media.

Below are the benefits of upgrading to Scanner Radio Pro:

• No ads.
• Access to all 6 theme colors.
• Push notifications sent within 5 minutes (instead of 15 minutes).
• Ability to record what you're hearing.

The audio you're able to hear is provided by volunteers (and, in many cases, police and fire departments and 911 dispatch centers themselves) for Broadcastify and a few other sites using real police scanners, ham radios, weather radios, and marine radios and is the same as what you'd hear using your own police scanner.

Some of the more popular departments that you can listen to using the app include NYPD, FDNY, LAPD, and Chicago Police. During hurricane season it can be useful to listen to ham radio "hurricane net" scanners which contain weather conditions and damage reports when hurricanes and tropical storms are approaching or making landfall as well as NOAA weather radio scanners.

Interested in providing scanner radio audio for your area? If so, you'll need a real scanner radio, a computer, and a cable to get the audio from the scanner to the computer. Once you have that, program the scanner to monitor what you'd like to make available from your area (police dispatch channels, fire departments, 911 centers, ham radio repeaters, a NOAA weather radio station, etc). If someone in your area is providing a feed that contains both police and fire you could provide a feed that contains only police, only fire, or one that covers only certain districts/precincts. Next, go to Broadcastify.com's web site and click on the Broadcast button to sign-up (it's completely free) to provide scanner audio for your area. As a provider you'll have complete access to the audio archives for all of the scanner feeds they host.

Scanner Radio has been featured in:

• The "Amazing Android Apps for Dummies" book
• Android Authority's "5 Best Police Scanner Apps for Android" article
• The Droid Guy's "7 Best Police Scanner Apps for Free on Android" article
• Make Tech Easier's "4 of the Best Police Scanner Apps for Android" article

The Scanner Radio app is a perfect companion to the Pulse Point and Mobile Patrol apps as well as weather, hurricane tracker, and breaking news apps.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5249248,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.scannerradio\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.scannerradio/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.scannerradio/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.scannerradio/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.scannerradio/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Shot FX: After Effects Video\",\n \"appId\": \"com.video.fx.live\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.video.fx.live\",\n \"icon\": \"https://play-lh.googleusercontent.com/UNragESq-9jM2VzxoszD5Esc7k9Qt5oH19uWkpTf56oIWjmk_YikTG9b4IxYhsl3Wlc\",\n \"developer\": {\n \"devId\": \"Sweet Snap Studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Sweet%20Snap%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Wanna record a blockbuster to amaze your friends? Now you don’t have to go to After Effects on your computer. Just download Shot FX to easily make your effect video anytime anywhere.

Shot FX is a smart editor to your make your photos and videos after effects and filters. No matter what you are, a casual user or celebrity on social media, you will find making masterpieces has never been easier than now. Without the complexity of Afters Effects, now you can open Shot FX, quickly and easily make high-quality effects videos to share with your friends.

Besides, Shot FX is also a beauty camera and selfie editor, which has all kinds of face filters and live stickers to enrich your photos.

----------FEATURES----------
FX video templates
- Fire? Laser? Lightning? Various FX video templates are awaiting your discovery.
- Follow the guide and shoot your video to create a blockbuster that rocks everybody.
- Export high-quality videos and share them to all social apps YouTube, Instagram, Facebook, Whatsapp, etc.

Filters for pictures

- Food? Landscapes? Selfie? High-quality filters perfect for any occasion.
- Glitter, Neon, Sweet, Nature…Hundreds of filters for pictures to choose from.
- With a massive amount of editing options, easy to make your pics stand out.

Cute stickers

- Lovely? Funny? Fashion? There are over 2800 unique live face stickers far more than B612.
- Just simply click the stickers to easily switch between various stickers.
- Real-time face stickers that can easily suit selfies and make your photos funny.

Makeup Camera

- Multiple choices of the popular lipstick, blusher, contour, and eyebrows.
- Here you can find the makeup styles that best suit selfies.
- Various popular makeup selfie effects make your selfies mesmerizing.

Real-time beauty effects

- Acne? blemishes? pimples? Shot FX makes skin problems disappear with just a tap.
- Retouch skin tone using our exclusive skin smoothing makeover tool.
- Beauty plus camera adds a radiant complexion for perfect face and selfie pictures.

GIF & boomerang

- Shoot an 8-second short video and turn it into a GIF emoji.
- Add music to video, customize high-quality music videos.
- An essential function to colorize daily chat.
- Trending stickers and magic filters make your short video unique and awesome.

Shot FX is a magic effects video maker tool and beauty plus camera, best photo editor app with all photo editing features, free Gif maker app. It's easy to make magic videos after effects & filters with a wide range of trendiest and charming video templates.

Making a blockbuster can never be so easy. That's because we've tuned every step visually, and operationally. We're actively improving the effects and new effects are added regularly every week. More surprise is waiting for your discovery in the future.

Any questions for Shot FX (After Effects Magic video maker with FX & beauty plus camera, boomerang video maker, Gif maker app)? Don't hesitate to contact us via sweetsnap.online@gmail.com!\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5704226,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.video.fx.live\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.video.fx.live/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.video.fx.live/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.video.fx.live/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.video.fx.live/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"MSB Parent, USA\",\n \"appId\": \"com.hss.msb\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.hss.msb\",\n \"icon\": \"https://play-lh.googleusercontent.com/Roo06skAJU_dazAduip-YdH0j1NpU_1snIJrdrC4SKM3HeZfLK1uAN10_FRqNLErqKIN\",\n \"developer\": {\n \"devId\": \"Heartland Payment Systems\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Heartland%20Payment%20Systems\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"MySchoolBucks makes school meal payments easy for busy parents on-the-go!  Quickly and securely add money to your student’s school meal account using your credit card, debit card or electronic check.  You can also view recent cafeteria purchases and check current meal account balances for each student.  MySchoolBucks is backed by Heartland Payment Systems, one of the largest and most trusted payment processors in the United States. **MySchoolBucks is available in participating schools only**

Notes on Permissions:
· Camera permissions are needed to allow parents to take a photo of their student.
· Storage permissions are needed to store the student photos and crash log data.
· Phone and SMS permissions are needed for the username/password recovery by SMS process.\",\n \"scoreText\": \"3.1\",\n \"score\": 3.1375465,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hss.msb\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.hss.msb/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.hss.msb/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.hss.msb/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.hss.msb/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"VPN Fast - Secure VPN Proxy\",\n \"appId\": \"con.hotspot.vpn.free.master\",\n \"url\": \"http://gplayapi.srik.me/api/apps/con.hotspot.vpn.free.master\",\n \"icon\": \"https://play-lh.googleusercontent.com/vZF6D_av3awolyimph42Sop5xLdEpsRrLBEtbwb_jDy5HP7HqtUkiMHq7zX4sgyPKlpp\",\n \"developer\": {\n \"devId\": \"Phone Master Lab\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Phone%20Master%20Lab\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"VPN Free - Unlimited Proxy & Fast Unblock Master
100% free Proxy! Totally unlimited bandwidth! Super fast and high VPN speed! The best unlimited free Proxy clients for android.
Proxy Master - Free Proxy VPN, super fast VPN to proxy sites, watch videos and movies, protect WiFi security and protect privacy.

What do you expect from a great VPN app?
# Unlimited Bandwidth to use
# Endless list of countries to connect to worldwide!
# Simple one click to connect
# Super fast speed proxy
# Proxy any apps and sites in any country
# IP vanish/ IP Fake
# Hotspot VPN
# proxy VPN for VOIP

Proxy Master - Free Proxy VPN Highlight:
★ Fastest - Super Fast Proxy
- Thousands of servers being provided for you to make sure super fast speed.
- Lots of different locations worldwide to proxy your favorite sites.

★ Simple - only contain a “Connect” button
- One touch to connect to VPN proxy server and connect a better net.
- Non username, Non password, Non registration.
- No credit card needed.

★ FREE & Unlimited
- 100% unlimited free VPN proxy!
- No credit card information needed. No trials offered.
- Truly unlimited, No session,speed and bandwidth unlimitation

★ Proxy - Visit any sites and APP
- Bypass geo-restrictions, internet filters and censorship while you’re at work or school.
- Proxy websites or social media sites with free VPN proxy server.
- Bypass the firewalls as school VPN proxy.
- Proxy blocked websites such as: Netflix VPN, YouTube VPN, Instagram, Snapchat, Twitter, Facebook, Viber, Skype, WhatsApp, Wechat etc…

★ Security - Protect Privacy and Security
- NO LOGS! That means, that you're absolutely anonymous and protected while using our app.
- Protect your network traffic under public WiFi hotspot browse anonymously and securely without being tracked.
- Protect data privacy, personal information security and internet security while VPN Robot is on.
- Enjoy private browsing.
- Encrypts data using OpenVPN protocols (UDP / TCP).

★ Stable - Most Stable - Never lose connection
- Top Speed VPN & Stable Connection
- Global networks, free vpn for USA, India, Japan, Singapore, Canada, France, Germany, UK, etc..
- Perfect support for Saudi Arabia and the United Arab Emirates


★ Multi VPN serversy
- vpn for United States
- vpn for Germany
- vpn for India
- vpn for Singapore
- vpn for Canada
- vpn for Russia
- vpn for Japan

We are the best VPN apps on the market!
Just try us and see for yourself!\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7699957,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=con.hotspot.vpn.free.master\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/con.hotspot.vpn.free.master/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/con.hotspot.vpn.free.master/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/con.hotspot.vpn.free.master/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/con.hotspot.vpn.free.master/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Freebie Alerts: Free Stuff App\",\n \"appId\": \"com.rodolfogs.nextdooralerts\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.rodolfogs.nextdooralerts\",\n \"icon\": \"https://play-lh.googleusercontent.com/FcN9rcEYfH7J6T8HTLc1j6l-iddczqjguNxacaTr9bfnrBXrUO6R-sdrfto7d8b56bdP\",\n \"developer\": {\n \"devId\": \"Freebie Alerts - Free Stuff Alerts\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Freebie%20Alerts%20-%20Free%20Stuff%20Alerts\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"

Free Stuff Alerts


Receive a notification each time your neighbor post Free Stuff on Nextdoor, Letgo, OfferUp and TrashNothing!
Be the first to claim that freebie for you!

Each day people give away things that they don't longer need, most of them are in really great condition, some things don't fit the new place, some just to make space, some things because people move away and can't take those things with them.


NO LOGIN REQUIRED:


1. Install the app.
2. You are ready to receive FREE ITEMS!
That's all, Simple. Smart. Easy.

YOU WILL GET FREE STUFF FROM:


Nextdoor
Letgo
OfferUp
TrashNothing
Freebie Alerts

Free Stuff Alerts will send you an alert notification each time your neighbor give away something, click the notification and if it's something that you need, you just contact that person and pick the freebie up! Make it yours first!.

• Tired of seeing "23 interested" people on a free thing that you would love to have?
• Tired of enter every single minute to check if theres is something new in the Free Stuff section on OfferUp?
• Tired of "First come, First serve" and when you appeared to that location the free stuff you wanted is gone, because someone took it first? Lucky b....rd!
• Tired of the red "Sold" on something that you were asking but someone claim it first? Yeah, that is sad.


Try Free Stuff Alerts for FREE


You will be receiving notifications in your phone in real time at the instance that your neighbor just post some free stuff!

----
Disclaimer:
This app does not have any kind of business nor commercial relationship with LetGo.com (Ambatana Holdings B.V.), OfferUp, Inc and TrashNothing.com, This is a third party app.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6395855,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.rodolfogs.nextdooralerts\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.rodolfogs.nextdooralerts/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.rodolfogs.nextdooralerts/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.rodolfogs.nextdooralerts/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.rodolfogs.nextdooralerts/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Groovepad - music & beat maker\",\n \"appId\": \"com.easybrain.make.music\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.easybrain.make.music\",\n \"icon\": \"https://play-lh.googleusercontent.com/dcJ7ep5ewceCwtR_Xgp7Hfo2GIZxt2WpO5LmqdMfhvKzhOcDmxY84aQBq7kZHs_-vwxP\",\n \"developer\": {\n \"devId\": \"Easybrain\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Easybrain\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Become a DJ with Groovepad! Bring your musical dreams to life and make groovy, smooth-sounding music with ease!

Our beat making app will teach you to create your own songs and play different music tracks. Just choose your favorite genres and tap on the pads to make beats and create music! Experiment, mix styles, create incredible melodies and master your beat making skills step by step with Groovepad.

Groovepad is an easy-to-use music maker app that is guaranteed to bring out the artist in you. Some of its exceptional features include:
- An extensive library of unique and eccentric soundtracks, where you can search for your favorites to get started. Some of the most popular genres include Hip-hop, EDM, House, Dubstep, Drum & Bass, Trap, Electronic, and more. Use Groovepad to create your own music or mixtapes.
- Use Live Loops to create first-rate music that blends all the sounds together seemlessly.
- With amazing FX effects such as filter, flanger, reverb, and delay, you can put life back into the party using only the music on your drum pad app.
- Share your creations and inspire and impress your friends and family with your DJing talents.

As a simple and functional app, Groovepad is a great tool for professional DJs, beat makers, music producers and music amateurs. Make beats and music anytime and anywhere!

Begin your musical journey with Groovepad!\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6712017,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.easybrain.make.music\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.easybrain.make.music/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.easybrain.make.music/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.easybrain.make.music/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.easybrain.make.music/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"GO2bank: Mobile banking\",\n \"appId\": \"com.greendotcorp.go2bank\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.greendotcorp.go2bank\",\n \"icon\": \"https://play-lh.googleusercontent.com/t9MLTU3Xz10_MHCfSBYJQCmLCjUeSgAZegnIoxGnlMGsy72llwcjVf4-1RtmaG7fGBQ\",\n \"developer\": {\n \"devId\": \"Green Dot\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Green%20Dot\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"GO2bank™ is the ultimate mobile banking app and debit card, packed with features to help you better manage your money and build your credit.

The ultimate in value and convenience:
• No monthly fees with eligible direct deposit, otherwise $5 per month¹
• Free nationwide ATM network²
• Overdraft protection up to $200, with opt-in and eligible direct⁵
• Get your pay up to 2 days early with direct deposit⁶
• Earn over 10x the national savings rate average³
• Earn up to 7% cash back on eGift Cards bought in app⁴

Your GO2 for better credit:
• Build or repair your credit over time with the GO2bank Secured Visa® Credit Card⁷
• Raise your credit scores instantly and get your FICO® score for free⁸

Keep your money safe:
• Member FDIC bank and a brand of Green Dot Corporation
• Lock and unlock your card with a tap of the app⁹
• Receive fraud alerts when we see something suspicious¹⁰

Download the app to open an account or visit GO2bank.com to learn more.

Online access, mobile number verification (via text message) and identity verification (including SSN) are required to open and use your account. Mobile number verification, email address verification and mobile app are required to access all features.

See Deposit Account Agreement at GO2bank.com/daa for fees, terms and conditions.

1. Monthly fee waived when you receive a payroll or government benefits direct deposit in the previous monthly statement period. Otherwise, $5 per month.

2. See app for free ATM locations. $3 for out-of-network withdrawals, plus any additional fees the ATM owner or bank may charge. Limits apply.

3. Interest paid quarterly on the average daily balance of savings during the quarter up to a $5,000 balance and if the account is in good standing. Fees on your primary deposit account may reduce earnings on your savings account. The average national savings account interest rate of 0.08% is determined by the FDIC as of 6/21/22. Visit https://www.fdic.gov/regulations/resources/rates/ to learn more.

4. Activated, chip-enabled debit card required to purchase eGift Cards. Active GO2bank account required to receive eGift Cards. eGift Card merchants subject to change.

5. Opt-in required. Account must be in good standing and chip-enabled debit card activated to opt in. Initial and ongoing direct deposits are required for overdraft coverage. Additional criteria may apply which can affect your eligibility and your overdraft coverage. Overdrafts are paid at our discretion. Overdraft fees may cause your account to be overdrawn by an amount greater than your overdraft coverage. A $15 fee may apply to each eligible purchase transaction that brings your account negative. Balance must be brought to at least $0 within 24 hours of authorization of the first transaction that overdraws your account to avoid the fee.

6. Direct deposit early availability depends on timing of payor’s payment instructions and fraud prevention restrictions may apply. As such, the availability or timing of early direct deposit may vary from pay period to pay period.

7. Available only to GO2bank accountholders with direct deposits totaling at least $100 in the past 30 days. Eligibility criteria applies and security deposit required. Other fees may apply.

8. Results may vary. Some may not see improved scores or approval odds. Not all lenders use Experian credit files, and not all lenders use scores impacted by Experian Boost™.

9. Previously authorized transactions and deposits/transfers to your account will function with a locked card.

10. Message and data rates apply.

Cards issued by GO2bank, Member FDIC, pursuant to a license from Visa U.S.A., Inc. Visa is a registered trademark of Visa International Service Association.

Technology Privacy Statement - https://www.go2bank.com/techprivacy\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5187044,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.greendotcorp.go2bank\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.greendotcorp.go2bank/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.greendotcorp.go2bank/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.greendotcorp.go2bank/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.greendotcorp.go2bank/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Video Downloader & Video Saver\",\n \"appId\": \"downloader.video.download.free\",\n \"url\": \"http://gplayapi.srik.me/api/apps/downloader.video.download.free\",\n \"icon\": \"https://play-lh.googleusercontent.com/u7du6cExKe-7PeEQqbTcpUpK0Nf5cR_TgUoTR4F4b61-kXfM1S3xsSkq9nPu2B-q_A\",\n \"developer\": {\n \"devId\": \"All Video Downloader, Saver & Player Studio\",\n \"url\": \"http://gplayapi.srik.me/api/developers/All%20Video%20Downloader%2C%20Saver%20%26%20Player%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Best Free Private HD Video Downloader & File Saver for You. With the 4x faster download speed, absolute security of files, it would be the best video downloader choice for you.

Do you not only want to download video and images from social media but also manage all the downloaded files easily within the video downloader app? What about directly sharing the downloaded videos and posts with your friends? It's never too greedy to ask for them all! Since all you need is this Free Video Downloader & Video Saver app. One video downloader caters to all!

Tired of complicated and unsafe ways to download video and save online content? Try this Video Downloader and Video Saver! It has never been easier to download, save and repost videos from social media. Super fast and totally free!

Ready to download another marvelous video post? Follow my lead! Copy the link to the video you want to download, paste it into our neat and simple built-in browser, click the video download button... there you go! Let the magic of our Video Downloader & Video Saver app take you all the way until the end of the video download journey. Save trouble and videos with only one quick tap!

How to use:
1. Tap the icon or input the website address on the app homepage to open the built-in browser.
2. The app will automatically detect videos. Tap the video download button to start downloading.
3. Play and manage all the downloaded video files in the "Files" tab.

Key Features:
* Fastest video downloader to download video and save all files from the Internet...Stable and Safe.
* Support multi-threading downloading and accelerate video downloads by several times
* Select different resolutions: save space by choosing a small size and enjoy HD videos by selecting high-definition mode.
* Download multiple files at the same time & Download videos in the background.
* Built-in browser and built-in file manager. Pause, resume, and remove downloads. Rename, play, share, and delete the files with one video downloader app.
* Private folder in this video downloader. Create your own private folder with a password. Protect your files and your privacy with our super private and secure video downloader app.

It is a high-speed video downloader for your Android device. This video downloader app can help you download and save all HD videos from your social media homepage in just one tap. Extremely fast, safe and 100% free! All video formats and different resolutions are supported. Play all downloaded videos with the built-in video player, adjust video playback speed, repeat video mode and you can even convert videos into audios super easily.

It's also a handy file manager for your downloaded videos and files. You can easily download, manage, repost, play, share, and delete all your video files within the video downloader & video saver. Download your favorite videos and enjoy them anywhere and anytime. The best tool to back up your social media videos and share them with your fans and friends. You can also change light and dark themes, manage your video download location, and... so much more awaiting you to explore.

What are you still waiting for? Let's get down to load with this free and fast Video Downloader & Video Saver!

Disclaimer:
* Please get permission from the content owner before you repost videos.
* We are not responsible for any intellectual property violation that results from unauthorized reposts of videos.
* This app is not officially associated with Instagram, Facebook, Twitter, TikTok, etc.
* Downloading files protected by copyright is prohibited and regulated by the law of the country.
* This app doesn't support downloading Youtube videos due to the policy of Play Store.

Terms of Service: https://downloader.easylife.studio/termsofservice.html
Privacy Policy: https://downloader.easylife.studio/policy.html\",\n \"scoreText\": \"4.8\",\n \"score\": 4.787955,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=downloader.video.download.free\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/downloader.video.download.free/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/downloader.video.download.free/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/downloader.video.download.free/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/downloader.video.download.free/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Geeni\",\n \"appId\": \"com.merkuryinnovations.geeni\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.merkuryinnovations.geeni\",\n \"icon\": \"https://play-lh.googleusercontent.com/x2OA-kKar1IYMueb9iN1gK17Y6HIrlhJiRQKpZJXkd8POEa5d4PnqSNzta_1mhCsUGD1\",\n \"developer\": {\n \"devId\": \"Merkury Innovations\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Merkury%20Innovations\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Meet Geeni. Your wish is Geeni's command.
Control all Geeni smart home devices in one easy app, or by voice using Amazon Echo, from ANYWHERE in the world. Geeni is easy enough for anyone to use and combines the SIMPLICITY of an on/off switch with PREMIUM features such as:
- Easy, powerful control of each device. Choose a color or mood of our Color bulbs, perfectly Dim a white bulb, track energy usage of a plug, all from the same app!
- Group devices and control by room
- Set smart scenes for automated actions
- Schedule when devices turn on and off to allow more control and security
- Choose which devices your friends, guests, roommates, or your family can control thanks to account sharing
- Cloud based services so you can log in and control your home from any phone
- and more.

Compatible with all Geeni-enabled smart devices. No complicated hub required; each Geeni device is smart enough to connect directly to your home wifi network.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.499238,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.merkuryinnovations.geeni\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.merkuryinnovations.geeni/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.merkuryinnovations.geeni/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.merkuryinnovations.geeni/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.merkuryinnovations.geeni/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"PS Remote Play\",\n \"appId\": \"com.playstation.remoteplay\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.playstation.remoteplay\",\n \"icon\": \"https://play-lh.googleusercontent.com/pj-qKgh9XH2Xm2Kr4C4K5tnk3BtwyOEGxZrtvhGxF3XtLLEOFqa5JQ_ahMfsKHR6rSg\",\n \"developer\": {\n \"devId\": \"PlayStation Mobile Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/PlayStation%20Mobile%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Use PS Remote Play to access your PS5™ or PS4™ wherever you go.

With PS Remote Play, you can:
• Display the PlayStation®5 or PlayStation®4 screen on your mobile device.
• Use the on-screen controller on your mobile device to control your PS5 or PS4.
• Use the DUALSHOCKⓇ4 wireless controller on mobile devices with Android 10 or later installed.
• Use the DualSense™ wireless controller on mobile devices with Android 12 or later installed.
• Join voice chats using the mic on your mobile device.
• Enter text on your PS5 or PS4 using the keyboard on your mobile device.

To use this app, you need the following:
• A mobile device with Android 7.0 or later installed
• A PS5 or PS4 console with the latest system software version
• An account for PlayStation Network
• A fast and stable internet connection

When using mobile data:
• Depending on your carrier and network conditions, you may not be able to use Remote Play.
• Remote Play uses a lot more data than most video streaming services. Data charges may apply.

Verified devices:
• Google Pixel 6 series
• Google Pixel 5 series
• Google Pixel 4 series

Using your Controller:
• You can use the DualSense wireless controller on mobile devices with Android 12 or later installed.
• You can use the DUALSHOCK 4 wireless controller on mobile devices with Android 10 or later installed. (On devices with Android 10 and 11 installed, use the on-screen controller to use the touch pad function.)


Note:
• This app may not work properly on unverified devices.
• This app may not be compatible with some games.
• Your controller may vibrate differently than when playing on your PS5 or PS4 console.
• Depending on your mobile device's performance, you might experience input lag when using your wireless controller.\",\n \"scoreText\": \"3.6\",\n \"score\": 3.6094823,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.playstation.remoteplay\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.playstation.remoteplay/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.playstation.remoteplay/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.playstation.remoteplay/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.playstation.remoteplay/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Alarm Clock for Me\",\n \"appId\": \"com.apalon.myclockfree\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.apalon.myclockfree\",\n \"icon\": \"https://play-lh.googleusercontent.com/9GHkT4VypCDcdhblMa6Ds3Bm-EHmT9aCB7hdq2843NrMeCeR3BFV-qSsfxeoIVOHODA\",\n \"developer\": {\n \"devId\": \"Apalon Apps\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Apalon%20Apps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Alarm Clock for Me turns your Android device into an alarm clock that plays your favorite tunes, a bedside clock with gorgeous themes, and a reliable daily helper perfect for every timing situation.

Main features:

• Alarm clock: wake up to your favorite music and decorate your home screen with beautiful alarm clock widgets
• Sleep Timer: fall asleep to your favorite songs or sounds from our collection;
• Current temperature: check it in the morning to pick out a perfect outfit for your day;
• Unlimited support: set as many alarms you need — and you’ll never oversleep or miss an important event;
• Nightstand mode: see what the time is at night while your Android is charging;
• Background support: alarm will go off even if the app is not running;
• Two new ways to turn off an alarm: math alarm clock to kick-start your brain or shake alarm option to wake up your body;
• Vibrate / Fade in / Snooze options for making your awakening more gentle.

Other features enhancing the overall experience:

• Use the customizable clock widgets on your Home screen.
• Adjust the screen brightness so that it doesn’t blind you after a good night’s sleep.
• Take advantage of Perfect Bedtime Reminder to go to sleep at the right time in the evening.
• Enable Gentle PreAlarm to enjoy easy and gentle awakening in the morning.
• Use the shortcut on the main screen to go directly to the app’s settings and all active alarms.
• You can also choose between vertical and horizontal modes, or prevent the main screen from auto-rotation by fixing the position of the clock on your screen.

Enjoy a perfect balance of beauty and functionality with this beautiful and reliable alarm clock app!

Privacy Policy: http://apalon.com/privacy_policy.html
California Privacy Notice: https://apalon.com/privacy_policy.html#h
EULA: http://www.apalon.com/terms_of_use.html
AdChoices: http://www.apalon.com/privacy_policy.html#4\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4373693,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.apalon.myclockfree\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.apalon.myclockfree/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.apalon.myclockfree/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.apalon.myclockfree/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.apalon.myclockfree/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"FREECABLE© TV App: Shows, News\",\n \"appId\": \"live.free.tv_us\",\n \"url\": \"http://gplayapi.srik.me/api/apps/live.free.tv_us\",\n \"icon\": \"https://play-lh.googleusercontent.com/Odgd7bEsQcyG_nJjJ18ZhJWK5lAcGDAPYhrHh-NJlGVt6euPHCVHDkt9WtZcMz0jI2g\",\n \"developer\": {\n \"devId\": \"TV App: News, TV Shows, TV Series & Moviesテレビ\",\n \"url\": \"http://gplayapi.srik.me/api/developers/TV%20App%3A%20News%2C%20TV%20Shows%2C%20TV%20Series%20%26%20Movies%E3%83%86%E3%83%AC%E3%83%93\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Best option for cutting the cord! Download FREECABLE TV app now to enjoy your favorite TV shows & series, movies, news channels, & live sports programs all in one app for free!

Works like Cable or Satellite TV, except it’s Free!
Leave it to FREECABLE TV app to stay updated with the latest breaking news, trending headlines and stories from around the world. Enjoy unlimited entertainment with the best TV shows, TV series with full episodes, popular movies, celebrity talk shows, live weather channels, live sports games, kids & family cartoons, sitcoms, music, documentaries, stand up comedies, reality programs, and more - all in one app! Download now and start streaming today! ▶️

⭐️FREECABLE TV Features
Free News App:
15+ top news channels to choose from
breaking news, local news, live news streams, live weather channels, world news, lifestyle news, entertainment news & more
Free Premium Content:
Watch the latest currently airing TV shows with full episodes!
2000+ free TV shows, talk shows, free movies, sports, cartoons, reality TV, home renovation programs, DIY videos, music, radio stations, pet videos, funny videos, history channels, docuseries and much more waiting for you to discover.
Save bucks by cutting the cord!
Best curated selection and still expanding to keep you always entertained!
Your Free Entertainment Hub:
Your go-to movie app, tv app, news app, IPTV app, and even music & radio app!
A source you can trust and is completely free!
Personalized Content:
Customize your TV Channels! Choose and save what you want to watch so you can quickly jump back and continue watching shows and movies you haven’t finished.
Happy streaming!

DISCLAIMER: TV App is a third-party API player compliant with YouTube’s terms of service. All YouTube videos, episodes, music and tv shows including but not limited to CNN, ESPN, NFL, NBA, MLB, NBC, Fox, MSNBC, NBC, CNBC, CBS, ABC, Yahoo, Bloomberg and Disney are played via the official YouTube embedded player through the YouTube API. Some television programs (e.g. FTV & Plex) are also hosted on our own streaming platform (a non-YouTube platform) used with permission from the respective publishers.
This is NOT an official app for the various online media services. This is only an unofficial 3rd-party client that complies with their 3rd party API terms of service, and is NOT an affiliate nor related product of those services. As per their API developer terms:
* https://developers.google.com/youtube/branding_guidelines - "You do not need special approval to use YouTube APIs or to promote API functionality in your application" provided that the guidelines are followed.
All YouTube videos are provided by the public third-party media service YouTube, and all trademarks and copyrights belong to their respective owners.
If you have any further questions, please feel free to contact us at: freetvapp.question@gmail.com
All pictures used in screenshots are used with authorization from: 1. Original TV stations, and 2. Pixabay: "All images and videos on Pixabay are released free of copyrights under Creative Commons CC0. You may download, modify, distribute, and use them royalty free for anything you like, even in commercial applications."
*This app has been registered and authorized by the company, MixerBox.


Download Free TV & Start Streaming Today!
Watch full episodes of your favorite TV shows, free movies, sports events, breaking news & funny videos all for free! Download the best free TV app & free movie app now!

Check out our weekly TV guide and movie recommendations at https://www.freetv-app.com/blog. For additional information, please visit our website:https://www.freetv-app.com.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7128286,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=live.free.tv_us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/live.free.tv_us/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/live.free.tv_us/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/live.free.tv_us/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/live.free.tv_us/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"ZArchiver\",\n \"appId\": \"ru.zdevs.zarchiver\",\n \"url\": \"http://gplayapi.srik.me/api/apps/ru.zdevs.zarchiver\",\n \"icon\": \"https://play-lh.googleusercontent.com/D1POO3HtYVgSW65yv3JLMrr8F7L9RcYUfEw_ug3BhMhMgN0b2fZ414cYkmSwVRr737aY\",\n \"developer\": {\n \"devId\": \"ZDevs\",\n \"url\": \"http://gplayapi.srik.me/api/developers/ZDevs\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"ZArchiver - is a program for archive management. It has a simple and functional interface. The app doesn't have permission to access the internet, so cannot transmit any information to other services or persons.

ZArchiver lets you:

- Create the following archive types: 7z (7zip), zip, bzip2 (bz2), gzip (gz), XZ, lz4, tar, zst (zstd);
- Decompress the following archive types: 7z (7zip), zip, rar, rar5, bzip2, gzip, XZ, iso, tar, arj, cab, lzh, lha, lzma, xar, tgz, tbz, Z, deb, rpm, zipx, mtz, chm, dmg, cpio, cramfs, img (fat, ntfs, ubf), wim, ecm, lzip, zst (zstd), egg, alz;
- View archive contents: 7z (7zip), zip, rar, rar5, bzip2, gzip, XZ, iso, tar, arj, cab, lzh, lha, lzma, xar, tgz, tbz, Z, deb, rpm, zipx, mtz, chm, dmg, cpio, cramfs, img (fat, ntfs, ubf), wim, ecm, lzip, zst (zstd), egg, alz;
- Create and decompress password-protected archives;
- Edit archives: add/remove files to/from the archive (zip, 7zip, tar, apk, mtz);
- Create and decompress multi-part archives: 7z, rar(decompress only);
- Partial archive decompression;
- Open compressed files;
- Open an archive file from mail applications;
- Extract split archives: 7z, zip and rar (7z.001, zip.001, part1.rar, z01);

Particular properties:
- Start with Android 9 for small files (<10MB). If possible, use direct opening without extracting to a temporary folder;
- Multithreading support (useful for multicore processors);
- UTF-8/UTF-16 support for filenames allows you to use national symbols in filenames.

ATTENTION! Any useful ideas or wishes are welcome. You can send them by email or just leave a comment here.

Mini FAQ:
Q: What password?
A: The contents of some archives may be encrypted and the archive can only be opened with the password (don't use the phone password!).
Q: The program is not working correctly?
A: Send me an email with detailed description of the problem.
Q: How to compress files?
A: Select all the files you want to compress by clicking on icons (from the left of filenames). Click on the first of selected files and choose "Compress" from menu. Set desired options and press the OK button.
Q: How to extract files?
A: Click on the archive name and select suitable options ("Extract Here" or other).\",\n \"scoreText\": \"4.5\",\n \"score\": 4.501418,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=ru.zdevs.zarchiver\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/ru.zdevs.zarchiver/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/ru.zdevs.zarchiver/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/ru.zdevs.zarchiver/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/ru.zdevs.zarchiver/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Live wallpaper - dope & anime\",\n \"appId\": \"live.wallpaper.livephoto.pic.picture.dope.anime.cool\",\n \"url\": \"http://gplayapi.srik.me/api/apps/live.wallpaper.livephoto.pic.picture.dope.anime.cool\",\n \"icon\": \"https://play-lh.googleusercontent.com/S7HSYWncVCQ1oEcFd0p6F8yUdH-8EvAdgikMDP2bp0I2XWZGay-D8WVvHOTAWVodur8\",\n \"developer\": {\n \"devId\": \"Jelly Dev\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Jelly%20Dev\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Live wallpaper offers the coolest wallpapers that fit your style to transform your lock screen and home screen, live wallpaper maker offers 10000+ free cool 4K, HD wallpapers backgrounds for home screen and lock screen! 

If you are interested in dope and anime images/video or want to get HD phone background world, high-resolution live wallpapers will surprise you! You can illustrate your unique wallpapers and enjoy decorating your phone backgrounds every day. Various cool wallpapers are FREE and always will be free! Come on and attempt to on your android phone immediately!

We have loads of free wallpapers for any aesthetic addict looking to give a fun twist to their smartphone background. Our free library is always updated with new cool wallpapers to customize your awesome phone look as often as you like?. Also, your creativity can go crazy with our live wallpaper maker!

-Plenty of options: 
There are many topics in our app, you can easily find your exclusive wallpapers! Such as steampunk wallpapers, cool live anime wallpapers, cool dope wallpapers, cool anime wallpapers, and so on! 
-More styles: Wallpaper 
Supports Live video wallpapers, Ultra HD wallpapers, 4K wallpapers, to use as backgrounds!
- Save battery and resources.
The application displays only wallpapers and screensavers adapted to the size of your screen. This allows you to save battery power and Internet traffic, as well as use the application at maximum speed, without loss of image quality.
- Actual wallpapers at the moment.
We follow all the trends in the world. You will find the latest background pictures from us. The most beautiful places in the world, cities, countries and simply beautiful wallpapers for any mood and desire.
- Ease of use and nothing more.
We tried to make the most convenient and simple application for you, removing all unnecessary and concentrating on the main thing - the wallpaper and their quality.

We always improve and develop our app to bring you the best experience. 
We look forward for your comments and support.
Thank you very much!

DISCLAIMER:
Some dope backgrounds used in this application are copyright to their respective owners and usage falls within the "Fair Usage" guidelines.\",\n \"scoreText\": \"3.6\",\n \"score\": 3.6407766,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=live.wallpaper.livephoto.pic.picture.dope.anime.cool\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/live.wallpaper.livephoto.pic.picture.dope.anime.cool/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/live.wallpaper.livephoto.pic.picture.dope.anime.cool/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/live.wallpaper.livephoto.pic.picture.dope.anime.cool/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/live.wallpaper.livephoto.pic.picture.dope.anime.cool/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google One\",\n \"appId\": \"com.google.android.apps.subscriptions.red\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.subscriptions.red\",\n \"icon\": \"https://play-lh.googleusercontent.com/DGAleS46qOedNzJGsB3e29QLpL6Qi6EwIDze95nBvxMAMGEmbE6KOW__2haEkHVDs4Y\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Google One app lets you automatically back up your phone and manage your Google cloud storage.
• Automatically back up the important things on your phone, like photos, contacts and messages using your free 15 GB of storage that comes with every Google account. If you break, lose or upgrade your phone, you can restore everything to your new Android device.
• Manage your existing Google account storage across Google Drive, Gmail and Google Photos.

Upgrade to a Google One membership to get even more:
• Get as much storage as you need for your important memories, projects and digital files. Choose the plan that works best for you.
• Get extra protection for your phone with a VPN that encrypts your online activity and helps keep your personal information safe
• Get exclusive access to Google experts for help with all of Google’s products and services. If you have a question or need assistance, our team of Google experts is just a tap away.
• Share your storage with up to 5 additional people. This gives each person access to more storage from your plan, but not access to each other’s files.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3131104,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.subscriptions.red\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.subscriptions.red/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.subscriptions.red/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.subscriptions.red/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.subscriptions.red/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Talkatone: Texting & Calling\",\n \"appId\": \"com.talkatone.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.talkatone.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/LCxcPzMfUf682NS_I8WJgety5c8NbndRmKKtVe6_s98J_N7s9J6Ffb6qCgyW0_yIPw8\",\n \"developer\": {\n \"devId\": \"Talkatone, Llc\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Talkatone%2C%20Llc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Call, text and talk via WiFi or cellular data without using cell minutes with Talkatone! Free calls and text messages help you keep connected no matter how far apart you are, so you’ll never be alone. Send texts free and call from anywhere you are to keep in touch with loved ones everywhere!

Text for free and call friends and family to stay in touch during any time of year, even during shutdowns. Receive a free US/Canada phone number of your choice, you can change it anytime. Make phone calls for free via WiFi, no cell phone plan needed.

Send texts and photos to anyone, anytime. Call from any device: phone, tablet, etc. Travel internationally without worry. Make cheap calls and texts internationally, all with WiFi. Just buy additional calling credits and connect while you travel!

Talkatone lets you talk, text and connect with everyone around you. Get in touch with everyone you need to, no data plan required, and start to rebuild your connections today!

Call or text now to reach whoever you want, whenever you want with Talkatone!

TALKATONE FEATURES:

FREE PHONE NUMBER - Talkatone is Your New Phone!
• Talkatone can be your phone number!
• Get a free US/Canada phone number of your choice
• Phone calls can be made for free, without a cell phone plan
• Free Wi-Fi calls let you call anyone, even if you don’t have a cell data plan

FREE CALLING APP - Call the U.S. & Canada
• Text and talk with anyone via Wi-Fi or cellular data – No cell minutes used
• Free texts with Wi-Fi or cellular data to quickly message friends and family
• Free texting app with your free US/Canada phone number
• Free SMS/MMS group texting for all users – send texts for free

FREE DISPOSABLE TELEPHONE NUMBER – Change Your Number Anytime
• Make calls and send texts with a disposable phone number
• Talkatone lets you burn your number once for free! Just go to your settings and get a new phone number
• Start calling and texting with your new number after pressing “Burn Now!”

TEXTING APP WITH FREE PICTURE MESSAGES - Send Free MMS
• WiFi text messages with photos of your life or funny moments now!
• Text photos for FREE to most U.S. or Canada numbers
• Text photos to a group of friends or family for free

INTERNATIONAL CALLS - Buy Calling Credits for International Calling & Travelling Overseas
• Call and text U.S. phone numbers on Wi-Fi without paying outrageous roaming charges
• International calls make traveling easier. Now you can take your Android device with you when you travel
• Buy mobile calling credits at very competitive rates
• International calls to YOU are completely free

CHEAP INTERNATIONAL CALLS – Call Anywhere Like:
• Mexico
• Dominican Republic
• Honduras
• Nigeria
• Colombia
• Guatemala
• And other popular calling card destinations!

FREE CALLS FROM YOUR TABLET
• Call and text friends and family from your Android tablet with Talkatone. No cell plan required
• Access free texting and calling whenever you’re connected to Wi-Fi
• Text free with a phone number for your tablet
• Request a second phone number for your phablet to access free texting and calling

Enjoy free texting and calling with your free phone number! Burn your old number for free to start calling and texting from a new phone number. Receive cheap international calls to the U.S. and Canada without using any of your cellular data or minutes.

Download Talkatone to make texting and calling simple and easy.

Talkatone does not support 911 emergency calling or texting.
Carrier data charges may apply. Contact your carrier for more information.

NOTICE: if your Android OS version is older than 5.1, then please read the following before installing Talkatone: https://talkatone.zendesk.com/hc/en-us/articles/360044415672

CONTACT US
We are happy to hear your feedback and help you solve any Talkatone issues. Just email us at support@talkatone.com, and we'll respond to you promptly.
More info: www.talkatone.com\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0588007,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.talkatone.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.talkatone.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.talkatone.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.talkatone.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.talkatone.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"myQ Garage & Access Control\",\n \"appId\": \"com.chamberlain.android.liftmaster.myq\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.chamberlain.android.liftmaster.myq\",\n \"icon\": \"https://play-lh.googleusercontent.com/oeVIBqxeSBWzTTZgOoJfbR-vXtzku_cE3RJNLFsDDrc9rAN4bBvBslC-NaFPll6KQIk\",\n \"developer\": {\n \"devId\": \"The Chamberlain Group LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/The%20Chamberlain%20Group%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The myQ smart access app allows you to easily open, close or check the status of your garage door, commercial door, gate or myQ home lighting from anywhere using your mobile device. The myQ app supports myQ-enabled products from Chamberlain, LiftMaster.

Additional Features:
• Set up smart access alerts that notify you when there’s activity
• Set schedules to close your garage doors or gates or to have your lights turn on/off
• Grant access with myQ Guest

For myQ smartphone control you need one of the following products:
• A Wi-Fi garage door opener enabled with myQ technology
• A myQ smart home accessory to upgrade a non-Wi-Fi garage door opener

Find more smart access products compatible with myQ:

• Yale | LiftMaster Smart Locks
• LiftMaster Smart Garage Camera™
• Amazon Key for Garage

To upgrade your existing garage opener with smartphone control, visit www.myQ.com for accessory options.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.1152983,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.chamberlain.android.liftmaster.myq\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.chamberlain.android.liftmaster.myq/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.chamberlain.android.liftmaster.myq/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.chamberlain.android.liftmaster.myq/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.chamberlain.android.liftmaster.myq/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Wattpad - Read & Write Stories\",\n \"appId\": \"wp.wattpad\",\n \"url\": \"http://gplayapi.srik.me/api/apps/wp.wattpad\",\n \"icon\": \"https://play-lh.googleusercontent.com/hXzUJqlB3e2-o--OEdziNHQxSql98xxQXeFI2uS-kZx2RVSBHtf3X-IS7x-39ovx\",\n \"developer\": {\n \"devId\": \"Wattpad.com\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Wattpad.com\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \" Wattpad. Where stories live.

Read Stories, write original stories in your own language anytime on the E-Story app - Wattpad
Discover the social storytelling platform that connects a global community of 90 million readers and writers through the power of story. Download it today to start reading or writing original stories.

When you join Wattpad, you become a member of an international community of story-lovers. Connect with other passionate readers & writers, comment directly on stories as you read them, and support writers as they create and share their original stories. You can even read stories together and share your library or create reading lists so your friends always know what you’re reading.

Get your story discovered Have your own story to tell?
Get it discovered through the power of community and technology on Wattpad. Share an original story on Wattpad and share it with our community who are there to cheer you on throughout your writing journey.

Think your story could be the next blockbuster?
Wattpad Studios discovers untapped, unsigned, and talented writers on Wattpad and connects them to global multi-media entertainment companies.

Why Wattpad App? - Book lovers, the Wattpad app offers millions of stories, novels, poems, books in English, and a number of languages at your fingertips. You can read stories, even write your own story using the app, and self publish stories online to join Wattpad's community of avid readers.

Features of Wattpad - A Story Reading and Writing App
- Browse popular genres and search top trending titles - Build your own library - Download to read offline
- Share your comments and vote for your favorites
- Get alerts when new chapters are added - Start your story writing journey and share your own story!
- Read stories in a plethora of languages
- Connect with a community of story-lovers Read and write stories Read millions of free stories in over 50 languages from writers around the world!
You'll find romance, science fiction, mystery, comedy, action, adventure, fantasy, young adult fiction, and fanfiction; it’s all on Wattpad. Read the stories that inspired blockbusters like Light as a Feather on Hulu, and Anna Todd’s international hit series After. Start your own free library Save your favorite stories to keep them with you wherever you go. Hooked on a story? Simply sync your account to easily pick up where you left off, whether you’re on your laptop, tablet, Kindle, or iPhone. Explore popular stories on the ebook app include Win Her Heart, The Babysitters, Regret the Rejection, From Her Diary to Her Heart, His Replaced Bride, and newly added stories like The Heat of Love, The Divinities of Navalok, The Shadow Circle, The Last Princess, and many more for a seamless ebook reading experience.

Already a Wattpad fan? Follow us on Instagram, Facebook, and Twitter to stay up-to-date on your favorite writers, stories, contests, and more! Instagram: https://www.instagram.com/wattpad/ Facebook: https://www.facebook.com/wattpad/ Twitter: https://twitter.com/wattpad\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1649103,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=wp.wattpad\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/wp.wattpad/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/wp.wattpad/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/wp.wattpad/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/wp.wattpad/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"BOSS Revolution: Calling App\",\n \"appId\": \"net.idt.um.android.bossrevapp\",\n \"url\": \"http://gplayapi.srik.me/api/apps/net.idt.um.android.bossrevapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/y3hgYNSsBcsfKvlruFP1jrY2DtxVfL8y-18kjzcVIjseocSK28SHCSaAM8cxPDxRwWg\",\n \"developer\": {\n \"devId\": \"Boss Revolution\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Boss%20Revolution\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Want premium calls to international numbers? Low phone call rates to fit your budget? And crystal-clear international calling quality too? Meet BOSS Revolution. A new generation of call and text app that lets you stay connected. P.S. We can help you top-up a phone number too.
What is BOSS Revolution?
BOSS Revolution is an international calling app with a difference. Get crystal-clear call quality, send a text now, and do a mobile top-up. All in one free calling app. Just download the app and start connecting.
Why should BOSS Revolution be your #1 best international calling app?
High-quality international calling
Convenient Wi-Fi calling and app-to-app free texts
No Wi-Fi? No sweat. Add funds to your account and make cheap and crystal-clear calls with 3G, 4G, and more
Amazing top up promo offers from our carrier partners
Invite friends to download the free calling app and talk even more
From the US to Nigeria. From Mexico to New Zealand. BOSS Revolution calling and messaging app works wherever you are.
Want to know more about what makes BOSS Revolution one of the best calling apps around?
Seamless international calling
Download one of the best calling apps for free, add credit and connect to the world. BOSS Revolution lets you make a call or send a free in-app message when you need to. Enjoy calls with crystal clear quality and talk with confidence.
Affordable rates
Forget about hidden fees and high international rates with this Wi-Fi calling and texting app. We're upfront about the costs for you to call. No surprise bills at the end of the month for your calling app.
Call abroad promotions
Unlimited calls, international texting, free texts, Wi-Fi calling, and more. Keep up to date with the BOSS Revolution talk and text app and be the first to know about international calling and mobile recharge promotions. Save up to (90%)!
Stay connected — in the app or out of it
What if your contact isn't a BOSS Revolution user? No problem. Just download the app to simply use your calling credit to call any mobile or landline phone. Or top-up their cell phone and stay in touch. The power of communication is in your hands.
What are you waiting for?! Download the txt and call free app and start connecting!\",\n \"scoreText\": \"4.5\",\n \"score\": 4.459974,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=net.idt.um.android.bossrevapp\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/net.idt.um.android.bossrevapp/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/net.idt.um.android.bossrevapp/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/net.idt.um.android.bossrevapp/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/net.idt.um.android.bossrevapp/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Klover - Instant Cash Advance\",\n \"appId\": \"com.klovercredit.android_app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.klovercredit.android_app\",\n \"icon\": \"https://play-lh.googleusercontent.com/UQaooAYaMZkEn-QT3mj1_mqA2R6IuO9mcr8QIb-oiCGwPdOiXAA6AyS5lipnEMPOyQ\",\n \"developer\": {\n \"devId\": \"Klover Holdings\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Klover%20Holdings\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Need some extra cash? Klover gives you up to $100 instant cash advance before you get paid. No credit check. No interest. No hidden fees.

Klover is the first cash app to give you access to your earnings early. Access a salary advance before you get paid. Sign up to earn money - even on the same day. It’s your money!

Aside from instant cash, Klover also offers innovative budgeting tools to help you stay financially stable and protect you from expensive loans, lending, and overdraft fees. We like to empower you this way.

Stop asking friends and family to borrow money. Borrow money from yourself instead.

Just use Klover for all of your rainy day money needs and get money now with a cash advance - never run short on cash again.

Sign-up is as simple as downloading the cash app and logging in. No complicated paperwork, credit checks, excess fees, or hidden expenses are required. We say yes when others say no - we approve more customers for a fast cash advance.

Our Mission:
It’s simple. Your data, your benefit. It’s your most valuable asset, why not use it to make money?

How do we do it? We unlock these products and services by transparently leveraging your approved data to save you time and help you earn money. Our customers have already saved hundreds of dollars a year.

We’ve revolutionized the cash advance playing field by offering an instant cash advance alongside other financial services like automated budgeting and saving tools. This is low-cost access to modern financial services that empower you.

How Klover Works:
Sign up in seconds
Simply tell us a little about you, link your bank account, and verify your wage. We will never check your credit.

Data opt-in
Your data is your asset. Opt-in to our Truth in Data agreement, and begin using Klover’s suite of financial products.

Get instant cash and tools
Whether you’re taking a cash advance or checking your budget, Klover has your back. Access tools to improve your financial wellness and get instant cash whenever you need. No questions asked.

Security:
Klover uses the highest bank-level standards for encrypting all of your information. We never share your personal data. We use Plaid to link your bank account.

Other Features:
Points: Earn points to unlock more boosts. Redeem them in seconds!*
- Scan receipts
- Save money
- Check your spending

Introducing Klover+ Plus
Credit monitoring included
See your spending habits and projected earnings with the financial dashboard
Oversee spending categories
Build saving strategies
Identify overspending areas

Contact Us:
Please reach out to info@joinklover.com with any questions or concerns.

Klover is not affiliated with Clover, Dave, Daily Pay, FloatMe, Earnin, Empower, Possible Finance, MoneyLion, Brigit, Albert, Cleo, Branch, Even, or Cash App.

*Disclaimer
Klover is a financial technology company and is not a bank. Banking services provided by Blue Ridge Bank; Member FDIC*. The Klover Visa® Debit Card is issued by Blue Ridge Bank, N.A. pursuant to a license from Visa U.S.A. Inc. and may be used everywhere Visa debit cards are accepted.

Klover does not offer loans. We are NOT a payday loan, cash loan, personal loan, or app to borrow money. By validating employment you can access money you’ve already earned whenever you want to. Klover's advance service is free and doesn't have any interest or an APR. Klover's advance service does not require a minimum repayment time frame. Klover's advance service does not require a maximum repayment time frame. For example, if you request an advance of $100 your future repayment is $100. Klover's advance service is not a contracted obligation to repay a loan. For more information please see Klover's terms and conditions: https://www.klover.app/terms-and-conditions.

*Points cannot be redeemed for cash, only in-app features

Klover's Privacy Policy: https://www.klover.app/privacy-policy\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1635528,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.klovercredit.android_app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.klovercredit.android_app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.klovercredit.android_app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.klovercredit.android_app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.klovercredit.android_app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"sendit\",\n \"appId\": \"com.fullsenders.sendit\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.fullsenders.sendit\",\n \"icon\": \"https://play-lh.googleusercontent.com/8Z6zy6jnafe6yV4mDZ9jY-Aejtb2cRLkcJJ3C3HuTwuHHcNoXn5W93C9lcW9lqoZkXI\",\n \"developer\": {\n \"devId\": \"iconic hearts, inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/iconic%20hearts%2C%20inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"1) choose a game
2) friends answer right on your story
3) get responses on sendit\",\n \"scoreText\": \"4.7\",\n \"score\": 4.651987,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.fullsenders.sendit\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.fullsenders.sendit/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.fullsenders.sendit/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.fullsenders.sendit/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.fullsenders.sendit/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"IMVU: online 3D metaverse game\",\n \"appId\": \"com.imvu.mobilecordova\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.imvu.mobilecordova\",\n \"icon\": \"https://play-lh.googleusercontent.com/ut6VL9UY4lSszR8KxJf2vDDvOaFWae2gnSzr2gsPtPi-muLl2QkilZJgD8JUIHByzA\",\n \"developer\": {\n \"devId\": \"IMVU, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/IMVU%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Your metaverse with the 3d virtual world is in IMVU, the world’s largest social experience. Download the app to create your customized avatar, make new friends, go to virtual parties, and explore an entire world in 3D!

Do you want to meet people from all over the world to party, host an event, join a virtual chat with friends, or go on a virtual date? Start creating avatars and join millions of people on a totally free virtual game!

IMVU is more than a life simulator, it is a virtual life in a 3D world with an avatar you create to reflect your style!

You can create 3D avatars, customize your own animated emoji and send messages in super fun chat rooms. Your dream life is waiting for you on IMVU!

💑

HAVE A VIRTUAL LIFE


Your avatar’s life is your life. Do you want a love story? Go on a virtual date. Looking for friends? Make friends all over the world. Do you want to explore? An entire virtual reality is waiting for you on IMVU.

👩

CREATE YOUR AVATAR


Create your doll version! You can create customized avatars to make friends and have fun in our virtual game. Shop without limits and dress your avatar with your style!

🧑

CHAT WITH ANIMATED WITHMOJIS


Take your friendships to a new level in our life simulator. Chat with your friends using your personal animated WithMoji. Enjoy the online social game and play the role you want in your virtual life.

💬

JOIN A VIRTUAL CHAT


Know people from near or far and chat with friends from all over the world! The 3D chat allows full conversations, way beyond instant messages.

😎

SOCIALIZE AND SHARE YOUR MOOD


The virtual chat offers a range of emojis and features, giving life to your 3D avatar on the virtual chat room. Your virtual life is waiting for you on IMVU, start enjoying this amazing 3D game with a customized avatar!\",\n \"scoreText\": \"4.4\",\n \"score\": 4.390169,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.imvu.mobilecordova\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.imvu.mobilecordova/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.imvu.mobilecordova/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.imvu.mobilecordova/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.imvu.mobilecordova/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Fake Call from Santa Claus\",\n \"appId\": \"com.thunderclap.fakecallfromsantavideocallsammy\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.thunderclap.fakecallfromsantavideocallsammy\",\n \"icon\": \"https://play-lh.googleusercontent.com/VCEiD7nrDm9yq9j7teS5N3Ue_gif6hKT0J2k-VGMyp28LUmussJxfVTSNr-wUgCVksk\",\n \"developer\": {\n \"devId\": \"ThunderClap\",\n \"url\": \"http://gplayapi.srik.me/api/developers/ThunderClap\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"

RECEIVE REALISTIC VIDEO CALL FROM SANTA CLAUS (NOW WITH MESSAGE FROM SANTA & SANTA CHAT TOO)


Are you looking for Fake Call Santa Claus app that looks real?\\u2028
Do you want to tease friends and have fun with them like they are getting a call from Santa in real life?\\u2028\\u2028

This Santa Call Simulation app helps you speak to santa easily. Use it to make fake video call to show your friends or family members who still believe you can speak with santa. Prank your siblings, friends or coworkers, or warm children hearts with this real santa claus call app. Let them speak to Santa over a prank call Santa ID. \\u2028\\u2028

🎅

Fake Call from Santa - Talk to Santa Claus Prank (SIMULATED) FEATURES

\\u2028\\u2028

1. RECEIVE A CALL FROM SANTA CLAUSE 📞\\u2028\\u2028\\u2028\\u2028

Christmas is more fun with this fake santa calling app. How to call santa? Simply use this Prank call Santa app to have santa call, speak to Santa & fool others with a realistic Santa Call Simulation. Receive a realistic call from Santa with options to accept or reject the call as if the real Santa is really calling you! Upon receiving the call from santa you will hear “HO HO HO!!” with a “MERRY CHRISTMAS!”. You will have a wonderful time with this free santa claus call app 😊\\u2028\\u2028\\u2028\\u2028

2. RECEIVE FAKE VIDEO CALL FROM SANTA ▶️\\u2028\\u2028

Pick from 7 videos & receive fake video call from Santa with this santa calling app. Get a call from santa with santa phone number and prank your friends with Santa call simulation app. * In the "video call option", you will be able to select from 7 of the most handsome Santas (one of them is a kitty) to call.\\u2028\\u2028

Call Santa in your free time. Call Santa before bed or video call santa before going to work. \\u2028\\u2028

3. SANTA CHAT 🗨️\\u2028

Our free santa claus call app now also allows to text santa claus. So besides the fake santa claus call now you can chat with santa and receive messages from santa. Have even more fun santa pranks. See them smiling when they receive message from santa and the North Pole.\\u2028\\u2028\\u2028\\u2028

👆CHOOSE FROM SEVEN DIFFERENT FAKE INCOMING CALL OPTIONS\\u2028\\u2028

There are seven Santas for you to choose for video call. One of them is….a cat! You can have a wonderful time with Santa’s HO HO HO laughters, Santa’s well wishes for Christmas, and Meow Meow Meow!\\u2028

\\u2028How to use Fake Call from Santa – and get a call from santa?\\u2028\\u2028

* Pick between chat, phone call or video call\\u2028\\u2028

* If you choose video, select from the 7 videos\\u2028\\u2028

* Enjoy the call or capture a screenshot of your video call Santa of our Fake Call From Santa App on social media.

\\u2028\\u2028📲 FUN WAYS TO PLAY WITH FAKE CALL FROM SANTA:\\u2028\\u2028\\u2028\\u2028
* You can entertain people with a santa claus call & be sure that on xmas holiday your friends will be surprised when they see you call Santa! Call Santa or Santa video call face to face. Have fun. Just start video calling Santa or his reindeer, his elf even!\\u2028\\u2028\\u2028

* With Fake incoming Call from Santa, you can call Santa if you are lonely you can converse with the legend of Christmas, talk with Santa, call Santa.\\u2028\\u2028\\u2028\\u2028

* Capture a screenshot of you calling Santa and post the cool santa video call to let the world know!\\u2028\\u2028\\u2028

*Receive a real video call santa when your girlfriend is asking you to take her out! Take the call and tell her you need to be elsewhere for Christmas! Santa is calling, it’s important 😋 Really\\u2028\\u2028\\u2028

* Surprise your friends, children, nephews, grandson, granddaughters with a call from Santa and spread joy.\\u2028\\u2028When you speak to Santa you can brighten up anyone’s day. Or break the boredom and use Fake Call from Santa – Speak to Santa Claus Prank to call your friends and make fake Santa prank video call to your friends.\\u2028\\u2028

👉Download NOW & Get Fake Call from Santa – Talk to Santa Claus Prank today!\\u2028\\u2028

* Disclaimer: app intended for entertainment purposes only. Calls and video calls from Santa are simulated. The app does not let you talk with the real Santa Claus.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.338768,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.thunderclap.fakecallfromsantavideocallsammy\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.thunderclap.fakecallfromsantavideocallsammy/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.thunderclap.fakecallfromsantavideocallsammy/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.thunderclap.fakecallfromsantavideocallsammy/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.thunderclap.fakecallfromsantavideocallsammy/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Samsung Pay (Watch Plug-in)\",\n \"appId\": \"com.samsung.android.samsungpay.gear\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.samsung.android.samsungpay.gear\",\n \"icon\": \"https://play-lh.googleusercontent.com/UE0cA3X1galXb6asBOJzqpQE8P0aReEwAJpu9eMNx5Oe0WyvuvXhFizqqVS9Njp6yFTF\",\n \"developer\": {\n \"devId\": \"Samsung Electronics Co., Ltd.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Samsung%20Electronics%20Co.%2C%20%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Samsung Pay on Galaxy Watch is now officially available to use
You’re now able to buy a bottle of water or pick up the dry cleaning, almost anywhere*
* Samsung Pay is available with participating payment networks, banks and merchants and is only compatible with selected cards and Samsung devices on NFC terminals

Simple Steps to Pay
Once you activate Samsung Pay on your Watch, simply press and hold “Back” key on your Watch to launch Samsung Pay, select your card, and pay by holding your Watch near any card reader or NFC terminal.

Secure and Private
Your actual account number is never shared with a retailer. Samsung Pay transmits a one-time use digital card number each time a transaction is made. Samsung Pay is protected by Samsung KNOX® while transactions can only be authorized with your PIN. For added security, you can remotely lock or erase your payment cards in Samsung Pay using the 'Samsung Find My Mobile' service.

Compatible Banks and Credit Cards
*Only compatible with selected cards and participating banks and qualifying Samsung devices. Some features may not be available in certain countries. Registration required. Terms apply. Learn more: https://www.samsung.com/samsung-pay/

Service Notice
Samsung Pay on Watch does not support all functionality provided in Samsung Pay for smartphones. We are constantly working to add more features. Stay tuned!

Eligible Devices
Samsung Pay on Galaxy Watch is offered to users with Galaxy Watch synced with Samsung and non-Samsung smartphones with Android OS 7.0 and above and with any of following resolution: 1280x800, 1280x720, 1920x1080, 2560x1440 and 3840x2160.\",\n \"scoreText\": \"3.6\",\n \"score\": 3.6302817,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.samsung.android.samsungpay.gear\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.samsung.android.samsungpay.gear/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.samsung.android.samsungpay.gear/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.samsung.android.samsungpay.gear/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.samsung.android.samsungpay.gear/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"My Cleaner\",\n \"appId\": \"com.myassistant.phone.cleaner.aide\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.myassistant.phone.cleaner.aide\",\n \"icon\": \"https://play-lh.googleusercontent.com/uNXY-bvgYOlbiOwdvTw1TRuvhgqLjXt9_GNhCA3TZHmBPWMf6hqT9QvY-U98Gk4lVI4\",\n \"developer\": {\n \"devId\": \"Jiang ZhiGuang\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Jiang%20ZhiGuang\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"My Cleaner, your personal phone cleaning assistant, a must-have tool for phone cleaning acceleration!

With My Cleaner, you will get a caring robot phone cleaning butler!

My Cleaner is a professional and completely free mobile phone acceleration and space cleaning software. Powerful acceleration makes the mobile phone run more smoothly, one-click cleaning quickly solves the problem of insufficient space!

Keeping our phones clean is our number one priority. We have a number of functions to escort your mobile phone performance, say goodbye to stuttering!

✔ Clean Cache Junk - Clean system and app cache to free up phone space.

✔ Clean Installed App Packages - Installed app packages no longer take up space.

✔ Clean Uninstall Residuals - Clean up residual files of uninstalled apps

✔Close apps that have been consuming phone resources in the background to speed up your phone.

✔My Cleaner helps you find the most battery draining apps in your phone. Close less frequently used applications to save battery power.

【Mobile phone acceleration】No longer worry about the fact that there are always a lot of automatic startup applications in the background, instantly release the phone memory, and no longer have to worry about the phone being stuck.

【One-click cleanup】Garbage Cleaner helps you clean up your phone cache and trash, one-click cleanup of useless trash, and phone cleanup is more worry-free

【Power Saver】Analyze your phone battery usage and monitor apps that are not in use but consuming data.

【APP management】The software is easily uninstalled, and the residual junk files have nowhere to hide.

Description of My Cleaner:
▶ No other personal data about you (such as username or email address) will be processed.
▶ My Cleaner will keep your data safe according to the Privacy and Cookie Policy and will not share your data with anyone else.

If you like our app, please rate it 5 stars!\",\n \"scoreText\": \"4.5\",\n \"score\": 4.519231,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.myassistant.phone.cleaner.aide\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.myassistant.phone.cleaner.aide/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.myassistant.phone.cleaner.aide/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.myassistant.phone.cleaner.aide/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.myassistant.phone.cleaner.aide/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Calm - Sleep, Meditate, Relax\",\n \"appId\": \"com.calm.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.calm.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/S76GphUu2pZa249td2Bb4XAhLcPRrFdL1zp_5qU1ouukvRq9r0-8jJ-CruaTtdT6g84\",\n \"developer\": {\n \"devId\": \"Calm.com, Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Calm.com%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Calm is the #1 app for sleep, meditation and relaxation. Relieve stress, lower anxiety, sleep better and refocus your attention. Guided meditation, Sleep Stories, exclusive music and stretching exercises fill our extensive library. Discover a happier, healthier you through Calm.

Reduce anxiety, prioritize self-care and choose a guided meditation session that fits within your busy schedule. Practice mindfulness in your daily routine and join the millions experiencing its life-changing benefits. Meditation novice or seasoned expert, Calm is for anyone who is looking to introduce healthy habits and tackle everyday stress.

Relaxing sounds and calming music help you meditate, focus and sleep better. Sleep Stories are bedtime stories that are guaranteed to lull you into a deep and restful slumber. Improve your sleep cycle and pick from 100+ exclusive Sleep Stories, narrated by well-known talent like Cillian Murphy, Rosé, Jerome Flynn and P!nk.

Take a deep breath and find your Calm.

CALM FEATURES

MEDITATION & MINDFULNESS
* Meditate with seasoned experts, regardless of your experience level
* Explore mindfulness as a daily habit and learn to calm your mind
* Mindfulness topics include Deep Sleep, Calming Anxiety, Focus and Concentration, Breaking Habits, Happiness and so much more

SLEEP STORIES & MUSIC
* Sleep soundly listening to Sleep Stories, bedtime stories for adults and children alike
* Relaxing music, sleep sounds and full soundscapes for every need
* Self-care: Sleep content to help your mind focus, relax and get into a state of flow
* New music is added every week, from top artists

RELAXATION & ANXIETY RELIEF
* Manage stress and relax with daily meditation and breathing exercises
* Focus on a goal with Dailies - Reduce anxiety with daily 10-minute original programs like the Daily Calm with Tamara Levitt, the Daily Trip with Jeff Warren, or the Daily Jay with Jay Shetty
* Mental health is Health - Focus on personal growth by learning to find your calm through inspiring stories
* Daily Move: Mindful movement and stretching to relax your body during the day

ALSO FEATURING
* Self-care tracker through Daily Streaks & Mindful Minutes
* 7- and 21-day mindfulness programs for both beginner and advanced users
* Soundscapes: Calm your nerves with more than 30 soothing nature sounds and scenes

Calm is free to download and use. There are never any ads and some of the programs and features are free forever. Some content is only available through an optional paid subscription. If you choose to subscribe, payment will be charged to your Google Account at confirmation of purchase.

Also, be sure to check out our brand new app for Wear OS devices.

What is Calm?
Our mission is to make the world a happier and healthier place. Through our website, blog, and app—filled with meditations, sleep stories, music, movement, and more—we’re redefining what mental health care looks like in 2021 and beyond. With over 100 million users worldwide, 100,000 new users daily, and our growing partnerships with major companies, we’re having a positive effect on more and more people each day.

Calm is recommended by top psychologists, therapists, mental health experts, and the press:

* “I’m generally wary of meditation apps because they sometimes weave in too much mystic talk for my taste. But Calm instead contains guidance like ‘Concentrate on your body’” - New York Times

* “In the frenetic, crazy, digital world we live in, sometimes it's necessary to take a step back and smell the roses” - Mashable

* “Eliminating distraction...ended up helping me relax and realize that all the stuff I was stressing about wasn't that big a deal” - Tech Republic

* “Found myself similarly refreshed afterward” - TechCrunch\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3525667,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.calm.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.calm.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.calm.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.calm.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.calm.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Breaking News Brief: US News\",\n \"appId\": \"com.breakingnewsbrief.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.breakingnewsbrief.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/gFvruyzkzV7AhGYiEsGPm7hZOW9VhIt0xUIYAXiS7wVn7HrQvILC1bhZSGxJL6UwAjI\",\n \"developer\": {\n \"devId\": \"My Apply Apps\",\n \"url\": \"http://gplayapi.srik.me/api/developers/My%20Apply%20Apps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Breaking News Brief delivers the world’s most accurate, reliable news sources all in one place. News alerts will keep you up-to-date on breaking news, local news, and more.

Our news aggregator delivers news that matters to you, right at your fingertips! Local news and news trending in your area is gathered when you enter your zip code. US news keeps you up to date on things nationwide. This breaking news app will give you updates sent straight to your phone as they happen, so you are always in the know.

Breaking News


• Local News
• US News
• Worldwide Events

US News Alerts & Topics by Interest
• Business news
• Political News
• Entertainment News
• Finance News

News Aggregator Filtered From
• ABC News
• Fox News
• CNN
• Huffington Post
• and more!

⬇️ Download Breaking New Brief today and stay up-to-date on all your news needs.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3245034,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.breakingnewsbrief.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.breakingnewsbrief.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.breakingnewsbrief.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.breakingnewsbrief.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.breakingnewsbrief.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"T-Mobile Tuesdays\",\n \"appId\": \"com.tmobile.tuesdays\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.tmobile.tuesdays\",\n \"icon\": \"https://play-lh.googleusercontent.com/ZG5r5k6fiuX1p3SdaCLV2hy_V9Z7-aAUcrnau-PVVQHmSiVJS6LGys__shM8t7Vqoas\",\n \"developer\": {\n \"devId\": \"T-Mobile USA\",\n \"url\": \"http://gplayapi.srik.me/api/developers/T-Mobile%20USA\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"#GetThanked every week with exclusive offers from brands you love—from food, fashion, and entertainment to everyday essentials—just for being a T-Mobile, Sprint, or Metro customer!

With the T-Mobile Tuesdays app:
•\\tGet free stuff and great deals on food, tickets, and more
•\\tGet extra savings at the gas pump every week
•\\tSave on your next trip with special discounted rates on hotels and rental cars
•\\tExplore offers on T-Mobile's latest phones, devices, and accessories
•\\tEnter for a chance to win epic prizes

While some of the most popular offers return week after week, there's always something new to try. It’s all just our way of saying thank you for being a customer. To be eligible, you must be on a qualifying T-Mobile, Sprint, or Metro rate plan.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.661167,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.tmobile.tuesdays\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.tmobile.tuesdays/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.tmobile.tuesdays/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.tmobile.tuesdays/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.tmobile.tuesdays/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Earnin: Your Money in Advance\",\n \"appId\": \"com.activehours\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.activehours\",\n \"icon\": \"https://play-lh.googleusercontent.com/9NaHCIguHGoIwSLrJnjiSD506v1Z-h9QNCtfYyi3Xp_HgT3sfgnji_-47YY1otYbb8k\",\n \"developer\": {\n \"devId\": \"Activehours Inc.\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Activehours%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Earnin is a simple way to get paid early—and live life on your terms. Access up to $100/day or $500/paycheck. Think of it as instant cash you can use before payday to cover anything you need. ‡

Using a cash advance or loan to borrow money can be confusing, misleading, and costly. With Earnin, you can tap into money you’re already earning—for free.[1] Unexpected bill or upcoming rent? We got you. Plus there’s no interest, no credit checks, and no surprises.‡

Accessing your paycheck in advance is easy.

HERE’S HOW IT WORKS:


1. Add your bank and debit card details, then submit your employer info.
2. We’ll verify everything, including the hours you work.
3. Cash out up to $100 per day (up to $500 per pay period).
4. On payday, we'll debit your account for the money you’ve cashed out + any optional tips.
5. Keep cashing out to get paid early—whenever you need.



GET INSTANT CASH
Access earnings from your pay in minutes without waiting for payday.[1] By taking advantage of the money you’re already earning, you get a smarter (and faster) alternative to a cash advance or loan.

DEPOSITED IN YOUR ACCOUNT
Quickly receive your hard-earned cash ahead of payday. We work with Bank of America, Wells Fargo, Capital One, TD Bank, Chase, Navy Federal Credit Union, PNC Bank, USAA Bank, and more.

SO YOU CAN SAVE MORE
Whereas cash advances and loans are packed with high interest and headaches, Earnin is designed to work with you for more peace of mind. You can even save a portion of your earnings, using the Tip Yourself feature, to reach your next financial goal even sooner.[3]

TRACK YOUR BALANCE
Balance Shield Alerts send you notifications whenever your bank balance runs low.[4]

PLAN FOR WHAT’S AHEAD
The Earnin Financial Calendar also lets you know ahead of time when you have recurring payments coming up to help you avoid a low balance.

BACKED BY 24/7 SUPPORT
Questions about getting instant cash from your paycheck in advance? Our Live Chat team is available 24/7, 365 days a year.


---

Earnin has no legal right to repayment. For more information please see Earnin’s terms and conditions: earnin.com/TOS.

Earnin is not affiliated with Chime, Dave, Albert, Brigit, CashNetUSA, Empower, Klover, MoneyLion, Cleo, Cash App, Daily Pay, Google Pay or Credit Karma.

Earnin is not a payday loan, a personal loan, or an app to borrow money. There's no interest or APR to cash out from your paycheck. Earnin does not require a minimum or maximum repayment time frame. It's simply your money, when you want it. Join Earnin today, and start making any day payday.‡

Earnin does not sell your personal data to third parties. Learn more about our privacy policy: earnin.com/tos.

---

Disclaimers:
[1] Fees may apply to use Lightning Speed. Lightning Speed may not be available to all Community Members. Cash Outs may take up to thirty minutes, actual transfer speeds will depend on your bank connection.‡
[2] Tipping options will vary between tools.‡
[3] Tip Yourself Account funds are held with Evolve Bank & Trust, member FDIC and FDIC insured up to $250,000. Tip Yourself is a 0% Annual Percentage Yield and $0 monthly fee service. Your Tip Yourself Account and any Tip Jars are not Savings Accounts.‡
[4] Balance Shield Cash Outs are subject to your available earnings and daily/pay period Max.‡

‡ Subject to your available earnings and daily pay period max. Earnin does not charge interest on Cash Outs. Restrictions and/or third party fees may apply. For more info and for our privacy policy, visit earnin.com/privacyandterms.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3927164,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.activehours\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.activehours/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.activehours/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.activehours/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.activehours/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Marriott Bonvoy™\",\n \"appId\": \"com.marriott.mrt\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.marriott.mrt\",\n \"icon\": \"https://play-lh.googleusercontent.com/OFd2FOQ-nnMioui-9MEQWwW-1NLlDwN9LtP1jybaPnP7t0Dm60foT9pEJism0V_Pr0A\",\n \"developer\": {\n \"devId\": \"Marriott International\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Marriott%20International\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Unlock extraordinary travel experiences and hotel travel deals with the Marriott Bonvoy™ app: 
Best Rate Guarantee 
Get the best rate on your hotel travel when you book your travel reservations directly through the Marriott Bonvoy app.  
Flexible Cancellations 
Plans change.  That’s why we offer flexible, free cancellation hotel options when booking directly through the Marriott Bonvoy app. Use the app to adjust your travel plans with ease.  
Search Hotels, Book Stays, and Earn Rewards  
Search hotels and hotel packages and book your travel all within the app. Earn and redeem points for your stays booked directly with Marriott and reward yourself with a vacation. 
Our Commitment to Clean 
As we welcome you back to our hotels around the world, we are committed to providing you with a safe environment that aligns with expert protocols for working to defeat COVID-19. Use the app for contactless conveniences.  
Check-In to your Hotel On-The-Go 
Marriott Bonvoy members can check-in from anywhere with Mobile check-in. Just let us know when you're arriving, and you'll receive a notification when your room is ready. 
Manage your Marriott Bonvoy™ Account 
Check your point balance, view your stay history, folio, and more. 
Loyalty Offers and Features  
Take advantage of exclusive offers and content for Marriott Bonvoy™ members that you can use right away. 
Marriott Bonvoy™ also offers free WiFi for Bonvoy members at most hotels. Not a Marriott Bonvoy™ member? Download and join, all through the app. 
Order Food and Drinks  
Order ahead while you’re out exploring. Browse and order food and drinks from your hotel’s menu at participating properties, and it will be ready when you return. 
Contactless Access to Hotel Keys and Amenities  
Never worry about losing your key card again. The Marriott Bonvoy™ Mobile Key can be used to open your hotel room and easily access any hotel amenity. 
With Mobile Key, you can get to your room faster. Use it to open your room, parking garage, fitness center, lounge, and pool. 
Convenient Ways to Chat During your Stay 
Mobile Chat lets you talk directly to your hotel. Available just before, during, and even after your stay, ask the front desk for local recommendations, request amenities, and more while on the go. 
Need something? Mobile Requests gives you a list of amenities to choose from to customize your stay, or even ask for something you forgot, like a comb or toothpaste. 
Marriott Bonvoy Hotel Brands  
Use the Marriott Bonvoy™ app to book hotel stays with any of our 30 brands, including AC Hotels by Marriott®, Aloft® Hotels, Autograph Collection® Hotels, Bulgari, Courtyard®, Delta Hotels®, Design HotelsTM, EDITION®, Element®, Fairfield Inn & Suites®, Four Points® by Sheraton, Gaylord Hotels®, JW Marriott®, Le Méridien®, Moxy® Hotels, Marriott Executive Apartments®, Marriott Hotels®, Marriott Vacation Club®, Protea Hotels®, Renaissance® Hotels, Residence Inn®, Sheraton®, SpringHill Suites®, St. Regis®, The Luxury Collection®, The Ritz-Carlton®, TownePlace Suites®, Tribute Portfolio®, W® Hotels, and Westin® Hotels & Resorts \",\n \"scoreText\": \"4.8\",\n \"score\": 4.7757473,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.marriott.mrt\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.marriott.mrt/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.marriott.mrt/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.marriott.mrt/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.marriott.mrt/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"healow\",\n \"appId\": \"com.ecw.healow\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.ecw.healow\",\n \"icon\": \"https://play-lh.googleusercontent.com/TezJmNU0-tBKA7Ae2tFyH0U8nP_36k6NQ6GtSXFoDUCRKzj1TqHO6fHbBv0EHicPEqg\",\n \"developer\": {\n \"devId\": \"eClinicalWorks LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/eClinicalWorks%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"healow™ lets you communicate with your doctor’s office and access up to date medical records. You will be able to access your appointments, lab results, vitals, manage medications and other personal data all within one app. From the healow™ app you can manage multiple accounts and access your and your family’s medical information.

Find a doctor and book your appointment - fast, free & easy, at your convenience – morning, noon or late at night! No more waiting on the phone with your doctor's office for an appointment. Find an appointment that works for you and book instantly – on the go!

Set your goals and track them easily using trackers. Use our weight management & activity trackers to reach your fitness goals. Track your numbers regularly to watch the trends change and share your progress with your doctor. Stay motivated to make healthy choices.\",\n \"scoreText\": \"3.4\",\n \"score\": 3.418468,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ecw.healow\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.ecw.healow/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.ecw.healow/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.ecw.healow/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.ecw.healow/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"adidas\",\n \"appId\": \"com.adidas.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.adidas.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/iPzanFznFsaq0QPJ320jnt5MkFcs6katVZXW5JWTM7Mrdt9oOETeLVJBEf6Lpy52MIys\",\n \"developer\": {\n \"devId\": \"adidas\",\n \"url\": \"http://gplayapi.srik.me/api/developers/adidas\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"YOUR ADIDAS - MORE THAN A SHOPPING APP
The home of sport and sneakers, the adidas app puts you closer to the action with access to sneaker drops, seasonal fashion releases, and the sports, clothes and gear that fit your personal style. Athlete inspiration, stories, and app exclusives at your fingertips. The best of adidas, for you.

ADICLUB MEMBERSHIP PROGRAM: GET REWARDED
Unlock the best of adidas and more of what you love with adiClub. Earn points by completing your profile, making purchases and leaving reviews. Use your points to level up and unlock even more exclusive rewards.

What's in it for you?
- Members Only Exclusives: Get exclusive access to shop and vote on members-only sneakers, apparel and products
- Unlock discounts, limited edition drops, invitations to special events, free premium training apps, exclusive offers and more great rewards.

ONE ADIDAS APP. ALL THE BENEFITS
From athlete news, clothing collaborations or hype drops, you can discover it all in the adidas app.

- Get news on latest mens, womens & kids sneakers
- Shop newest releases
- Gain access to special offers, rewards, gifts & gear
- Get alerts when adidas sneakers & clothes go on sale
- Track orders, purchase history for easy returns

BUY IT FIRST, BE FASHION FORWARD
Love workout shoes? Be the first to shop sneaker collaborations and the newest releases to take your look to the next level. The more you use the app, the quicker you’ll get access to sports technologies, fashion and stories that inspire —whether that’s giving your running regime an Ultraboost, the newest NMD release, a classic Stan Smith, a retro Gazelle, or the shoes that will launch your sneakerhead status.

SHOP THE BEST, OWN YOUR SPORT
Do you workout by running, training, soccer, tennis, basketball, the gym, or skateboarding? The adidas app has what you need to buy latest shoes and clothes. Whether you’re putting time in on the football pitch, track, court or gym, find inspiration from adidas creators like Patrick Mahomes, James Harden and Stella McCartney. Find the right shoes and clothes for your favorite sport. Opt-in to notifications to get the latest performance stories that matter to you. From running and performance shoes to the latest in soccer; experience the innovative Boost technology or shop the legendary Nemeziz or Predator soccer cleats.

ADIDAS ORIGINALS. EFFORTLESS SPORT STYLE
Adjusting to your preferences, the adidas app allows you to easily build your own 3-Stripes style. If style is your sport, Originals clothing draws from the storied adidas archives to shape the looks of today. With clothing lines for men, women and kids, adidas keeps it fresh season after season.

DISCOVER MORE IN THE ADIDAS APP
Whether you’re looking for a new Ultraboost running shoe, the latest pair of NMDs or inspiration, the adidas app is the place to be. Download now to get all adidas has to offer.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7916665,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.adidas.app\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.adidas.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.adidas.app/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.adidas.app/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.adidas.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"APUS Launcher: Theme Launcher\",\n \"appId\": \"com.apusapps.launcher\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.apusapps.launcher\",\n \"icon\": \"https://play-lh.googleusercontent.com/OGuy-yTp4B0gURn-bDMQkvpX_5bXVeX5cWS3ib8pNfVFKJY9LUiq1dlgM2LTmoDX8YQ\",\n \"developer\": {\n \"devId\": \"APUS Group\",\n \"url\": \"http://gplayapi.srik.me/api/developers/APUS%20Group\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \""\\u200d🚀APUS Launcher - One free launcher, more than 5 million installs and high rating on Google play!

👍APUS System, beyond an Android Launcher. Make Your Phone Special.

🏆As one Android free launcher on Google Play, APUS launcher is and good choice for you.

APUS Launcher, fast, small, stylish, smart and efficient, provides themes, wallpapers, Call Show, all kinds of features and service.

👑Stylish
APUS Launcher provides new free stylish&beautiful mobile themes:
🎞Movie&TV launcher themes
👻Cartoon Android launcher themes
🚀Pink and Cute launcher themes
😋Simple&Flat themes
🌼golden flower themes
👨🏾\\u200d💻business themes
🧙🏼\\u200d♂️magic themes and many other special themes for festival.
Enrich your android phone life every week with a variety of styles. You may set your favourite wallpaper without download it.
APUS Launcher provides many awesome call show themes - to make your call screen cool and stylish.


🕛Smart
APUS Launcher provides smart folder, all apps, hide apps, quick settings, widgets(clock, calendar, weather ,headlines, discovery widget), it is a good partner of your phone.


☀️Personalized
APUS Launcher provides you:
🏳️\\u200d🌈An interface that is what really you want.
🎯New free themes and stylish wallpapers every week to make your phone more beautiful.
♥️You may also upload your picture to be your wallpaper and share it with the users of the world and get “likes” from others. And download the pictures you like to keep it in the gallery.
🎨Change icon size and choose a special APUS HD icon.
🎀Special effect of transition - fast and stylish.


📍Highlight features
🔒Hide apps: Hide your secret apps with swiping up with two fingers on the interface, choose the icons of the apps that you want to hide. APUS is the best in protecting your privacy.
🔍APUS Search: Get the information that you want as fast as you can.
📰APUS Know: News, Weather, Traffic, everything you need is one swipe away.
🌡️Widget: Weather forecast widget, clock widget, search widget and headline widget.
🔎APUS Discovery: Discover the good apps, videos and meet friends nearby.


Now, all problems can be solved with one app!
🚀APUS Launcher provides an all-in-one solution for all your concerns. This Launcher has been a choice of a large number of users around the world. Let’s download it and check out what they say about it.

👍APUS group will always try our best to give you a smooth and excellent experience and we’re always trying our best to make APUS launcher smarter, smaller, faster and more beautiful.




Contact Us:
Feedback Email: launcher_help@apusapps.com
Content Cooperation Email: content_corp@apusapps.com
APUS Online Service: http://www.facebook.com/APUS.support
Website: http://www.apusapps.com/en/launcher/
Facebook: http://www.facebook.com/APUSGROUP/
APUS Official Fans Group:https://www.facebook.com/groups/apus.fansgroup"\",\n \"scoreText\": \"4.5\",\n \"score\": 4.498441,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.apusapps.launcher\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.apusapps.launcher/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.apusapps.launcher/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.apusapps.launcher/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.apusapps.launcher/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Thumb Box\",\n \"appId\": \"com.thumb.h.box\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.thumb.h.box\",\n \"icon\": \"https://play-lh.googleusercontent.com/YnXFbsIQKNsqjdlOT7TNec9flVtJeRlXytFGq6UESXhkI_twLhJRoH7uFxk_43dGX_JG\",\n \"developer\": {\n \"devId\": \"Apollo Casual\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Apollo%20Casual\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"This is a magical box, where you can learn delicious food, watch novels, and have more interesting things to discover\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2681994,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.thumb.h.box\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.thumb.h.box/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.thumb.h.box/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.thumb.h.box/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.thumb.h.box/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"VIZIO Mobile\",\n \"appId\": \"com.vizio.vue.launcher\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.vizio.vue.launcher\",\n \"icon\": \"https://play-lh.googleusercontent.com/t7rZ82H7INT5SmsTuH1-RZ-6iWfhKbhtitufEVey7fELm-TJx5LdDcm3sQINXWMNbdVc\",\n \"developer\": {\n \"devId\": \"VIZIO\",\n \"url\": \"http://gplayapi.srik.me/api/developers/VIZIO\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"We’ve updated our app name to VIZIO Mobile, you may have downloaded the app when it was called "VIZIO SmartCast Mobile."

With VIZIO Mobile, you can control your entire entertainment experience with your Mobile Device. Browse & discover movies, TV shows, music, live streams and more across multiple apps at once. Power on/off devices, play/pause content, modify advanced settings and more.


Effortless Discovery.
VIZIO Mobile brings together all your favorite entertainment from multiple apps into one simple experience.


Launch Apps on your TV
Build your own list of favorite apps.


Simple controls wherever you are.
Power on/off devices, play/pause content, adjust volume and more, all from the palm of your hand.


Watch free content.
Enjoy easy access to free TV shows, movies, music and more.


Type with a keyboard.
Enter text on your TV/display from your smartphone using a full keyboard.


Swipe to navigate.
Use the touchpad to quickly play your favorite entertainment from featured content to the most popular apps right from your TV/display.


Easily access advanced settings.
Adjust aspect ratio, select input, calibrate picture and more.


See All the Details.
Get a quick look at show ratings, synopsis, cast, crew, clips and more.


VIZIO Crave Speakers cannot output audio from TVs/displays or be connected as an additional channel to an existing sound bar or sound system. Additional supported SmartCast or Chromecast-enabled audio products are required (not included) for Multi-Room feature. Streaming different songs to different speakers at the same time is not supported when using a single app running on a single mobile device. To stream a different song to different speakers at the same time, you’ll need to stream from a different app or a separate mobile device.


———————————————————————


The applications and content pictured herein or described on this page may only be available in certain countries and languages, may require additional fees or subscription charges, and may be subject to future updates, modifications, interruption and/or discontinuation of service without notice. VIZIO has no control over third party applications or content and assumes no responsibility for the availability or interruption of such applications or content. Additional third-party terms, conditions and restrictions apply. High-speed/broadband Internet service and access equipment are required and are not provided by VIZIO. Not all Google Cast-enabled apps are integrated with VIZIO SmartCast and may require additional steps to cast.


Select features of VIZIO Mobile require a VIZIO Account (available free).\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9057522,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.vizio.vue.launcher\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.vizio.vue.launcher/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.vizio.vue.launcher/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.vizio.vue.launcher/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.vizio.vue.launcher/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Redfin Houses for Sale & Rent\",\n \"appId\": \"com.redfin.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.redfin.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/tsZMrtvPdyrImpquQiUahy6V4sUAeAfTIxDBUOr4phkBct8e-uIGUjXtdjdW6CH-rg\",\n \"developer\": {\n \"devId\": \"Redfin\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Redfin\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Download the Redfin App to get updated MLS real estate listings every 5 minutes. Find the latest homes, condos, and townhouses for sale and for rent in your area. Browse photos, see up-to-date home details, and instantly book a free tour with a Redfin Agent to see homes for sale even faster.

Some of our most popular features:

Find New Homes First
• See Listings First: Get notifications within 30 minutes for new listings in your area. Redfin has more homes for sale than any other real estate app because we’re powered by the local MLS.
• Quickly Share Your Favorite Homes: Text or email new listings to your house buying partner.
• Search on All Your Devices: Save your favorite homes and property searches to your Redfin account and access them anytime, anywhere on the app or Redfin website.

Customize Your Home Search
• Instantly See Every House: Receive push notifications for any house, condo, or townhome that meets your search criteria.
• Customize Your Home Filters: Search by price, property types like single-family, condos, townhouses mobile homes, and desired features to find your dream house. Even tiny houses.
• Draw Your Custom Home Search Radius: Outline your desired neighborhood or particular area to narrow down your house buying journey.
• Start Touring Early: Search for homes with open houses scheduled for the upcoming weekend.
• Search by School: Search for homes near specific schools and school districts.
• Calculate Mortgage, property tax, HOA, & insurance with our mortgage calculator on real estate for sale.

Tour Homes for Sale Fast
• Schedule both video chat & in-person Tours Instantly: Book free tours with a local Redfin Real Estate Agent right from the app.**
• Plan Open House Visits: Get directions and attend every open house in your area.
• Share Homes: Easily share your favorite homes via text message, email, and social media before you book a tour.

MLS Real Estate App
• Don’t Miss Out: We’ll tell you which homes are likely to sell the fastest so you don’t miss the perfect home.
• Learn to be a Home Buying Expert: Sign up for free house buying classes and real estate events within the app.
• Gain Exclusive Insights: Read comments about what a home is really like, written by Redfin Real Estate Agents after they tour the home.
• Sold Home Data: Get the latest property data on sale prices of nearby homes in most markets.
• Find Accurate Home Data: Most MLS real estate listings refresh every 5 minutes.*

Redfin operates in the following states:
Alabama, Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia, Hawaii, Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Mississippi, Missouri, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin

Disclaimers:
*85% of new listings in US MLS feeds received by Redfin will post within 5 min.
**Tours subject to property and agent availability.
Photos, floor plans, and 3D tours may not be available on all listings.
Photos for illustrative purposes only. Screens simulated. Individual results may vary.
Listing fee subject to change, minimums apply. Buyer’s agent fee not included, e.g., if buyer’s agent fee is 2.5%, seller will pay a total fee of 3.5%. Sell for a 1% listing fee only if you also buy with Redfin within 365 days of closing on your Redfin listing.
Sell for more based on analysis comparing price per sq. ft. of the sale and list price of Redfin listings to other brokerages’ between May 2020 and April 2021.
#1 nationwide brokerage site per Comscore report October 2021.
Redfin agents close 2x as many deals based on the average number of transactions in 2021 per Redfin Agent compared to agents at competing brokerages, per the MLS data.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5901656,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.redfin.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.redfin.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.redfin.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.redfin.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.redfin.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Stash: Invest & Build Wealth\",\n \"appId\": \"com.stash.stashinvest\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.stash.stashinvest\",\n \"icon\": \"https://play-lh.googleusercontent.com/DDaJXHJIEeL3st4e-Zwlvu5BwmZBsXJ6EDn20eNeVk8BgntKw7BgNLamRUqkZImnO-NY\",\n \"developer\": {\n \"devId\": \"Stash Financial\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Stash%20Financial\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Stash is a mobile banking and investing app that makes it easy and affordable to invest in stocks, bonds, ETFs and crypto for millions of Americans.

Join the 5+ million people who know it’s never too early to invest in yourself.

Get stock with #StashStockParty
Score bonus stockat our Stash Stock Party—the digital bash where you can invest, on us.

Smart Portfolio—Now with cryptocurrency exposure: Invest effortlessly.
Build wealth automatically with Smart Portfolio—by letting us invest for you. Plus, now get exposure to crypto—the Smart way. We’ll help you build a diversified portfolio that hits your financial goals.

INVESTING: Invest what you can afford.
With fractional shares, you can choose how much to invest. Choose from thousands of stocks and ETFs.

STOCK-BACK CARD: Invest as you spend.
When you use the Stock-Back® Card, we’ll give you stock in well-known brands.†

BANKING: Invest in your goals.
We can help you save money and protect you from hidden banking fees.§

RETIREMENT: Invest in your future.
Stash can help you plan and save for a secure retirement.‖

FAMILY: Invest in your children.
Help the ones you love most with children’s investment accounts.¶

ADVICE: Invest in your knowledge.
Get personalized investing guidance & financial education.

PLANS
Our plans can make it easy and affordable to build wealth.

STASH GROWTH | $3/mo.*
Includes: Access to investing, your Stock-Back® Card, banking, saving tools, personalized advice, an automated investing account (Smart Portfolio) and a retirement account with investing tax benefits.‖

STASH+ | $9/mo.*
Includes: Everything in Stash Growth plus premium advice, and children’s investment accounts.¶

Disclosures
*Access to investment & banking accounts under each subscription which are subject to different regulations & limitations. Monthly Subscription Wrap Fee starts at $3/month. You’ll bear the standard fees & expenses reflected in the pricing of ETFs in your investment account(s), plus fees for various ancillary services charged by Stash & the Custodian. See Advisory Agreement & Deposit Account Agreement: stsh.app/legal.

Stash pays pre-determined compensation to strategic partners who drive users to a Stash web property. Accordingly, you may have been redirected to the Apple Store by such incentivized third-party who would not have otherwise redirected you here.

Bank Account Services provided by & Stash Visa Debit Card (Stock-Back® Card) issued by Green Dot Bank, Member FDIC, pursuant to a license from Visa U.S.A. Inc. Visa is a registered trademark of Visa International Service Association. Investment products & services are offered by Stash Investments LLC, not Green Dot Bank, & are Not FDIC Insured, Not Bank Guaranteed, & May Lose Value. Securities offered through Apex Clearing Corporation, Member FINRA/SIPC.

Investing Involves Risk. Preliminary information provided to prospective clients prior to Stash accepting a signed advisory agreement is not investment advice & should not be relied on as such. Stash Investments LLC is an SEC registered investment adviser. Must be 18+ to open an account. Stash only available to US citizens, permanent residents, & select visa types.

Crypto is relatively new and can be volatile. Investments are Delaware Statutory Trusts and offer indirect exposure to Crypto.


View Stash SSR Promotion: https://bit.ly/3fVGKRP

View Stash One Month On Us Promotion:https://bit.ly/34cJOWP

View Stash Code Promotion T&Cs. https://bit.ly/3f86SrI

View last preview image for all disclosures & footnotes †, ◊, §, ¶, ‖.
\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9959135,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.stash.stashinvest\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.stash.stashinvest/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.stash.stashinvest/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.stash.stashinvest/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.stash.stashinvest/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Kahoot! Play & Create Quizzes\",\n \"appId\": \"no.mobitroll.kahoot.android\",\n \"url\": \"http://gplayapi.srik.me/api/apps/no.mobitroll.kahoot.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/AyJnaQ0JfEu-F_4bop5hH4qpJwYJ1blePyer6VVUUm4Al80uWJBje4UZHirrf39wI7uI\",\n \"developer\": {\n \"devId\": \"Kahoot!\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Kahoot!\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Play engaging quiz-based games (kahoots) at school, at home and at work, create your own kahoots and learn something new! Kahoot! brings the magic of learning for students, teachers, office superheroes, trivia fans and lifelong learners.

Here’s what you can do with the Kahoot! app, now available in English, Spanish, French, German, Italian, Brazilian Portuguese and Norwegian:

Students
- Join kahoots hosted live - in class or virtually - and use the app to submit answers
- Complete self-paced challenges
- Study at home or on the go with flashcards and other study modes
- Compete with friends in study leagues
- Challenge your friends with kahoots you found or created
- Create your own kahoots and add images or videos
- Host kahoots live for family and friends directly from your mobile device

Families and friends
- Find a kahoot on any topic, fit for any age
- Host a kahoot live by casting your screen to a big screen or screen share via video conferencing apps
- Engage your kids with studying at home
- Send a Kahoot! challenge to family members or friends
- Create your own kahoots and add different question types and image effects

Teachers
- Search among millions of ready-to-play kahoots on any topic
- Create or edit your own kahoots in minutes
- Combine different question types to increase engagement
- Host kahoots live in class or virtually for distance learning
- Assign student-paced challenges for content review
- Assess learning outcomes with reports

Company employees
- Create kahoots for e-learning, presentations, events and other occasions
- Encourage audience participation with polls and word cloud questions
- Host Kahoot! live in person or in a virtual meeting
- Assign self-paced challenges, for example, for e-learning
- Assess progress and results with reports

Premium features:
Kahoot! is free for teachers and their students, and it’s our commitment to keep it that way as part of our mission to make learning awesome. We offer optional upgrades that unlock advanced features, such as an image library with millions of images and advanced question types, such as puzzles, polls, open-ended questions and slides. To take advantage of these features, users will need a paid subscription.

To create and host kahoots in a work context, as well as get access to additional features, business users will need a paid subscription.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6750255,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=no.mobitroll.kahoot.android\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/no.mobitroll.kahoot.android/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/no.mobitroll.kahoot.android/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/no.mobitroll.kahoot.android/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/no.mobitroll.kahoot.android/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Unlimited Texting, Calling App\",\n \"appId\": \"me.dingtone.app.im\",\n \"url\": \"http://gplayapi.srik.me/api/apps/me.dingtone.app.im\",\n \"icon\": \"https://play-lh.googleusercontent.com/LYB8sP6nIPRJmcYzZv3nu2n_sirkbbmXRWOmoj3Z7-23UAYbAnQM4DqEG3fvCOhVGw\",\n \"developer\": {\n \"devId\": \"Dingtone Phone\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Dingtone%20Phone\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Dingtone, a free calling app allows you to make WiFi calls and send free text messages. It is also a free phone number app loved by millions. Save on monthly phone bill and protect your personal number with Dingtone!

FEATURES LOVED BY MILLIONS OF USERS:
*Make free phone calls and send free text now
*Get a free phone number for your phone/tablet
*Cheap or free international calls to 200+ countries and regions
*Local phone numbers for you to choose: US, Canada, UK, Belgium, Netherlands, Australia, France, Sweden, Mauritius, Poland, Austria, Indonesia, Puerto Rico, Czech Republic, Malaysia, Denmark, Romania
*Free calls or texts to friends and families
*Group phone calls and conference calls

Get a real US phone number for free
Add 2nd, 3rd line to your phone/tablet. Call & text to any phone numbers for free

Free Calling & Free Texting App
Dingtone lets you make unlimited free phone calls to anyone over WiFi, 3G/4G data network without using any cell minutes; Invite your family members and friends to use the free phone call app for WiFi calling and free SMS, and start saving money now.

Real US Phone Numbers
Get a US phone number to protect your very own number. You can also make prank calls with this free phone number app. Enjoy crystal-clear phone calls and unlimited texts on phones and tablets.

Cheap or Free International Calls
Call any mobile/landline phone numbers in over 200 countries and regions at super low rates. Calls between Dingtone users are free. Caller ID is supported so that your friends know it is you who are calling.

Crystal Clear Calls
Voice calls are transmitted on Dingtone's high-quality dedicated VoIP network. With HD voice technologies, most free online calls between Dingtone users have superior clarity to existing regular phone service. Free calls and cheap calls are no longer cheap quality! With Dingtone, you can make or receive calls even under bad cellular reception.

Amazing Premium Features
Dingtone provides various Premium features including visual voicemail, call blocking, call forwarding, call recording, etc.

Why use Dingtone?
Free phone calls home and abroad
Text free to/from anyone
Great call quality, hd voice over cellular data & wifi
Group conference calls up to 8 people
Group messaging with up to 100+ people

Privacy Policy: https://www.dingtone.me/privacy_policy.html
Terms of Service: https://dingtone.me/Terms_of_Service.html
Need Help? http://dingtone.me/support

As the best calling app ever, Dingtone is super simple and fast. Just download Dingtone to get a free phone number for call and text now.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4535146,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=me.dingtone.app.im\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/me.dingtone.app.im/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/me.dingtone.app.im/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/me.dingtone.app.im/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/me.dingtone.app.im/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"FreePrints\",\n \"appId\": \"com.photoaffections.freeprints\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.photoaffections.freeprints\",\n \"icon\": \"https://play-lh.googleusercontent.com/R8Echxyqb2ghVzPnLg7g08Mw1eWsx4RFW8turovehbH6SmaRc_HiEAMHMPsC-2qh4C4\",\n \"developer\": {\n \"devId\": \"PlanetArt\",\n \"url\": \"http://gplayapi.srik.me/api/developers/PlanetArt\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Print photos quickly, easily and for FREE with the world’s #1 photo printing app!
No subscriptions. No commitments.™ Just free prints!


Ordering your free prints couldn’t be easier. Just open the app and select photos from your phone, Facebook, Instagram and more. Then choose your quantities and you’re done! Your free prints arrive on your doorstep in just days – and all you pay is a small shipping charge.

Order up to 85 FREE 4x6 photo prints a month. That’s 1,000 FREE prints a year! And order other sizes for next to nothing. We print your photos on your choice of deluxe glossy or premium matte photo paper. And we never compromise when it comes to quality. At FreePrints® we use only the best papers for the best prints possible.

We promise vivid color reproduction, brilliant whites and fade-free images. And with standard shipping and handling charges starting at just $1.99 (and never more than $9.99, regardless of order size), you simply can’t go wrong.

What do I get for free?
• Up to 85 4x6 prints per month – 1,000 per year
• Limit 1 print per photo

What do I pay for?
• Additional 4x6 photo prints
• Enlargements (We offer 5x5, 5x7, 8x10, 11x14, 12x18, 16x20 and 20x30)
• Shipping and handling – Standard shipping starts at just $1.99 and never goes above $9.99, no matter how many prints you order

Why is FreePrints so popular?
• It’s the fastest, easiest and most affordable way to print photos from your phone or tablet
• Choice of deluxe glossy or premium matte paper
• Easily print photos from Facebook, Instagram, Dropbox, Google Drive and Microsoft OneDrive
• Print photos and get them delivered to your door in just a few days!
• FreePrints is the world’s most trusted and best rated photo printing app
At FreePrints we know how important it is to preserve life’s special moments. Having physical photos of your favorite memories means so much more than having them stuck on your phone.

With more than 1,000,000 5 star reviews worldwide, our customers show us how much they truly love FreePrints!

What happens to my photos after you print them?
We store your photos, in accordance with our terms of use, so that you can use them for other orders in the future if you wish, using FreePrints or our other apps. Your photos are always your photos; only you will have access to them. And we use best-of-breed security solutions to ensure that your photos are always protected. More specifics are available in our Terms of Use and Privacy Policy.

About FreePrints
In a mobile world, all of our most important photos live on our phones and tablets, and yet there was never an easy way to get them printed. After one too many fights with USB sticks, photo kiosks and unreliable websites, we set out to solve this problem: Enter FreePrints. With just a few taps, you can select your favorite photos and have them headed straight to your mailbox. And best of all: They’re free! Millions of customers and countless stories later, we are honored to have touched so many lives.

From our humble beginnings as a photo lab in Midland, Texas, we’ve grown FreePrints into the top-ranked photo printing app in the world. And if you like FreePrints, you’ll love our other apps: FreePrints Photobooks®, FreePrints Photo Tiles®, and FreePrints Gifts®, all providing free products for just a nominal delivery charge, with no subscriptions or commitments.

Copyright © 2012-2022 PlanetArt, LLC. All rights reserved. FreePrints and the FreePrints logo are registered trademarks of PlanetArt, LLC.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7727256,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.photoaffections.freeprints\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.photoaffections.freeprints/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.photoaffections.freeprints/similar\",\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.photoaffections.freeprints/reviews\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.photoaffections.freeprints/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n }\n ],\n \"next\": \"http://gplayapi.srik.me/api/apps/?category=APPLICATION&collection=TOP_FREE&start=60\"\n}" } ] @@ -296,7 +281,6 @@ { "listen": "test", "script": { - "id": "07268f4f-3e92-4fe4-83c9-9d96d0c6caf2", "exec": [ "pm.test(\"Get Google Maps via Search\", function () {", " var jsonData = pm.response.json();", @@ -346,7 +330,6 @@ { "listen": "prerequest", "script": { - "id": "84a713f6-8e50-43bf-8361-1aac03d694e8", "exec": [ "pm.collectionVariables.set(\"expectedResponseTime\", 20);" ], @@ -354,10 +337,6 @@ } } ], - "id": "6b149ffb-a8a4-4121-8210-0cdb21259608", - "protocolProfileBehavior": { - "disableBodyPruning": true - }, "request": { "method": "GET", "header": [], @@ -382,7 +361,6 @@ "key": "fullDetail", "value": "true", "description": "Optiona - defaults to false; if true, an extra request will be made for every resulting app to fetch its full detail", - "type": "text", "disabled": true }, { @@ -395,7 +373,6 @@ "key": "language", "value": "{{LANGUAGE_CODE}}", "description": "Optional - defaults to EN; 2 letter langauge code", - "type": "text", "disabled": true }, { @@ -408,7 +385,6 @@ }, "response": [ { - "id": "ca6b83c9-9f32-4780-96cb-cf8b201d2353", "name": "Search Apps", "originalRequest": { "method": "GET", @@ -434,7 +410,6 @@ "_postman_previewlanguage": null, "header": null, "cookie": [], - "responseTime": null, "body": "{\r\n \"results\": [\r\n {\r\n \"title\": \"Facebook\",\r\n \"appId\": \"com.facebook.katana\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.katana\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/ccWDU4A7fX1R24v-vvT480ySh26AYp97g1VrIB_FIdjRcuQB2JP2WdY7h_wVVAeSpg\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Find friends, watch live videos, play games & save photos in your social network\",\r\n \"scoreText\": \"2.4\",\r\n \"score\": 2.4461195,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.katana\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.katana/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.katana/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.katana/reviews\"\r\n },\r\n {\r\n \"title\": \"Facebook Lite\",\r\n \"appId\": \"com.facebook.lite\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.lite\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/5pZMqQYClc5McEjaISPkvhF8pDmlbLqraTMwk1eeqTlnUSjVxPCq-MItIrJPJGe7xW4\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"This version of Facebook uses less data and works in all network conditions.\",\r\n \"scoreText\": \"3.3\",\r\n \"score\": 3.25214,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.lite\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.lite/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.lite/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.lite/reviews\"\r\n },\r\n {\r\n \"title\": \"Messenger – Text and Video Chat for Free\",\r\n \"appId\": \"com.facebook.orca\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.orca\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/ldcQMpP7OaVmglCF6kGas9cY_K0PsJzSSosx2saw9KF1m3RHaEXpH_9mwBWaYnkmctk\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Free group video chat, video calls, voice calls and text messaging.\",\r\n \"scoreText\": \"4.0\",\r\n \"score\": 4.005686,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.orca\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.orca/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.orca/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.orca/reviews\"\r\n },\r\n {\r\n \"title\": \"Facebook Business Suite (Pages Manager)\",\r\n \"appId\": \"com.facebook.pages.app\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.pages.app\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/cDUesUd9Iq4zx8nrYLwVPrSJUJVPY8UqnywwlY1I-oOndsSZ2NunYy2MlPyd4nihjM0\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Reach more customers, more easily with Facebook Business Suite (Pages Manager)\",\r\n \"scoreText\": \"4.4\",\r\n \"score\": 4.3635387,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.pages.app\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.pages.app/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.pages.app/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.pages.app/reviews\"\r\n },\r\n {\r\n \"title\": \"Messenger Lite: Free Calls & Messages\",\r\n \"appId\": \"com.facebook.mlite\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.mlite\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/I6iR-zi371fJJsGnqwnY8uUmeYqv-_erzVbVBhyASixDReX2JUuIhgXjtV9OrA-_nQI\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"A faster version of Messenger that works in all network conditions\",\r\n \"scoreText\": \"3.9\",\r\n \"score\": 3.9117773,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.mlite\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.mlite/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.mlite/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.mlite/reviews\"\r\n },\r\n {\r\n \"title\": \"Facebook Gaming: Watch, Play, and Connect\",\r\n \"appId\": \"com.facebook.games\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.games\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/fuYuTVxHL787pDLwwB0ojeAFSydaMcvuUN2FaE2lQ6-GTLsSgfpMXrjg9dMnKNL5XzA\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Your favorite gaming videos, communities and Instant Games all in one place.\",\r\n \"scoreText\": \"4.0\",\r\n \"score\": 4.035401,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.games\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.games/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.games/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.games/reviews\"\r\n },\r\n {\r\n \"title\": \"Facebook Ads Manager\",\r\n \"appId\": \"com.facebook.adsmanager\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.adsmanager\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/Uku36RjbFRupjCW6a8py_Jvk9PY0xYdGK-zXyrGxFrcYEq_dKVfFse4ZRY_0LTOFtvdD\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Manage and create Facebook Ads on the go.\",\r\n \"scoreText\": \"4.4\",\r\n \"score\": 4.3955617,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.adsmanager\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.adsmanager/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.adsmanager/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.adsmanager/reviews\"\r\n },\r\n {\r\n \"title\": \"Facebook Viewpoints\",\r\n \"appId\": \"com.facebook.viewpoints\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.viewpoints\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/3Jpl4w27oe8oeNhBxyJFqBpTWAmNdfsD8tNbYp-dUfsYfRlztL-mpxL56Tt58dPOuA\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Get rewarded for helping improve apps and services you use every day.\",\r\n \"scoreText\": \"4.2\",\r\n \"score\": 4.150636,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.viewpoints\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.viewpoints/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.viewpoints/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.viewpoints/reviews\"\r\n },\r\n {\r\n \"title\": \"Workplace from Facebook\",\r\n \"appId\": \"com.facebook.work\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.work\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/ILw8AtzZa7xhpi7oBnl6SdgtTy925RPiQ0Ci1LF0Baf2pARXCPQ0lea1uKIQOU3RcFId\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Communicate with your company. Send messages, make video calls and work together\",\r\n \"scoreText\": \"4.8\",\r\n \"score\": 4.7717023,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.work\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.work/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.work/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.work/reviews\"\r\n },\r\n {\r\n \"title\": \"Study from Facebook\",\r\n \"appId\": \"com.facebook.study\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.study\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/iVd0Ka61D_fhUkveOqe2lrfvB4raSJfFffViDQrXeF0LSRokxA9pFPb2i7bc7rUQlK8\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"An app for Facebook Viewpoints participants who joined the Study program.\",\r\n \"scoreText\": \"4.4\",\r\n \"score\": 4.439887,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.study\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.study/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.study/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.study/reviews\"\r\n },\r\n {\r\n \"title\": \"Facebook Portal\",\r\n \"appId\": \"com.facebook.bishop\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.bishop\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/Bu02vnouFDcPu2UQ4rSw1r7C6d9NAt24xfR1lcmBcySQshtYIvFkFEcoDVeZVbn5k_8\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Do more with your Portal\",\r\n \"scoreText\": \"3.9\",\r\n \"score\": 3.939759,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.bishop\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.bishop/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.bishop/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.bishop/reviews\"\r\n },\r\n {\r\n \"title\": \"Creator Studio\",\r\n \"appId\": \"com.facebook.creatorstudio\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.creatorstudio\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/mkteeCLsz1KY6WBGus4gXZlSMLsjX_xPEaNzgIibFibgpD_nAmVacMTIFH8Sbft9sWU\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Your on-the-go solution for content management, measurement and communications.\",\r\n \"scoreText\": \"4.5\",\r\n \"score\": 4.483246,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.creatorstudio\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.creatorstudio/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.creatorstudio/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.creatorstudio/reviews\"\r\n },\r\n {\r\n \"title\": \"Messenger Kids – The Messaging App for Kids\",\r\n \"appId\": \"com.facebook.talk\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.talk\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/wU8uStPPfgOkQsKxJR-2hjhZGMZbASELYn2GKWpXkPa0QDQVy2BOJJAWq6guZLwxVg\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Fun, free app that lets kids video call and message family and close friends.\",\r\n \"scoreText\": \"4.3\",\r\n \"score\": 4.2698956,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.talk\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.talk/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.talk/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.talk/reviews\"\r\n },\r\n {\r\n \"title\": \"Facebook View\",\r\n \"appId\": \"com.facebook.stella\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.stella\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/WZP2XY77EOaWtoNQPM6V1aH61_E8DBU79NyFD_oNajzh4DJYPX0S2O6Puf6b60vnF1U\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Set up your Ray-Ban Stories\",\r\n \"scoreText\": \"2.6\",\r\n \"score\": 2.6438355,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.stella\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.stella/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.stella/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.stella/reviews\"\r\n },\r\n {\r\n \"title\": \"Workplace Chat\",\r\n \"appId\": \"com.facebook.workchat\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.workchat\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/LdxXPGvpTKgnUBDMiDkTQ6jnWM84pM8w7tOPbImSQ3jAOH6S9PUJmc0IoRwFKGuCeg\",\r\n \"developer\": {\r\n \"devId\": \"Facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Facebook\"\r\n },\r\n \"developerId\": \"Facebook\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Chat with coworkers, wherever you are.\",\r\n \"scoreText\": \"3.8\",\r\n \"score\": 3.7739294,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.facebook.workchat\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.workchat/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.workchat/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.facebook.workchat/reviews\"\r\n },\r\n {\r\n \"title\": \"FB video saver: Video downloader for Facebook\",\r\n \"appId\": \"facebook.video.downloader.savefrom.fb\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/facebook.video.downloader.savefrom.fb\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/J8iZNK0ITZ-cIu3jz5PxiXeG4jpoYh_aQvjfhRR0u3mxTONnB7dkXLgE3xlfLLg2Dw\",\r\n \"developer\": {\r\n \"devId\": \"ETM Video Downloader\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/ETM%20Video%20Downloader\"\r\n },\r\n \"developerId\": \"ETM+Video+Downloader\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Video Downloader for Facebook: fast download, download video from facebook story\",\r\n \"scoreText\": \"4.7\",\r\n \"score\": 4.740728,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=facebook.video.downloader.savefrom.fb\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/facebook.video.downloader.savefrom.fb/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/facebook.video.downloader.savefrom.fb/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/facebook.video.downloader.savefrom.fb/reviews\"\r\n },\r\n {\r\n \"title\": \"Video downloader for Facebook\",\r\n \"appId\": \"com.downloadfacebookvideos.savefbvideos\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.downloadfacebookvideos.savefbvideos\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/yigDPtHoFUfGCUAUr9Bbc9CND8Xl0P_kdQG_JGy-L3heTAcCSLIrBno1L599SSZ34Q\",\r\n \"developer\": {\r\n \"devId\": \"Status Save Video and Photo Status Download Studio\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Status%20Save%20Video%20and%20Photo%20Status%20Download%20Studio\"\r\n },\r\n \"developerId\": \"4780488636884711042\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Download Video from Facebook to Play Offline, Fast & Secure Video Downloader App\",\r\n \"scoreText\": \"4.6\",\r\n \"score\": 4.637211,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.downloadfacebookvideos.savefbvideos\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.downloadfacebookvideos.savefbvideos/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.downloadfacebookvideos.savefbvideos/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.downloadfacebookvideos.savefbvideos/reviews\"\r\n },\r\n {\r\n \"title\": \"Phoenix - Facebook & Messenger\",\r\n \"appId\": \"com.jesture.phoenix\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.jesture.phoenix\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/0Xe46RjOAycuZvaUcbZd9QkwG0-lB6tHYywgtYPiaKW3d1aa50vt3-8SBhveS-b-FJo\",\r\n \"developer\": {\r\n \"devId\": \"Unimania.\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Unimania.\"\r\n },\r\n \"developerId\": \"Unimania.\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Enjoy Facebook & Messenger in one place \\nDownload photos and videos\",\r\n \"scoreText\": \"4.0\",\r\n \"score\": 3.9702911,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.jesture.phoenix\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.jesture.phoenix/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.jesture.phoenix/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.jesture.phoenix/reviews\"\r\n },\r\n {\r\n \"title\": \"Video downloader for Facebook\",\r\n \"appId\": \"com.lma.vdffb\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.lma.vdffb\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/rUZO1z9DluDvdms-XxzYrNSVdGLin4cC1yK8R1NsenCR4r09CQX2BpnivDOWoSYziAg-\",\r\n \"developer\": {\r\n \"devId\": \"Lucky Mobile Apps\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Lucky%20Mobile%20Apps\"\r\n },\r\n \"developerId\": \"8774174416231479457\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Download videos easily, quickly, and securely\",\r\n \"scoreText\": \"4.4\",\r\n \"score\": 4.3982105,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.lma.vdffb\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.lma.vdffb/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.lma.vdffb/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.lma.vdffb/reviews\"\r\n },\r\n {\r\n \"title\": \"Social Post Maker for Facebook, Instagram & More\",\r\n \"appId\": \"com.desygner.socialposts\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.desygner.socialposts\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/2QO3ZZi5pKGwksOVk5cLHx-oGhJth7260yVGsClxGmgBLszsa5IMuVW6P79H5nZZ5ug\",\r\n \"developer\": {\r\n \"devId\": \"Desygner Pty Ltd\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Desygner%20Pty%20Ltd\"\r\n },\r\n \"developerId\": \"7834691532460600952\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Create & Schedule Social Media Posts\",\r\n \"scoreText\": \"4.5\",\r\n \"score\": 4.4919395,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.desygner.socialposts\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.desygner.socialposts/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.desygner.socialposts/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.desygner.socialposts/reviews\"\r\n }\r\n ]\r\n}" } ] @@ -445,7 +420,6 @@ { "listen": "test", "script": { - "id": "48be7775-ffa6-4d58-b441-ea5eb5dd2acb", "exec": [ "pm.test(\"Search face and expect facebook as first suggestion\", function () {", " var jsonData = pm.response.json();", @@ -492,10 +466,6 @@ } } ], - "id": "59683017-c5ca-4b0d-a81e-4c2ebc60462c", - "protocolProfileBehavior": { - "disableBodyPruning": true - }, "request": { "method": "GET", "header": [], @@ -519,14 +489,12 @@ "key": "lang", "value": "{{LANGUAGE_CODE}}", "description": "Optional - defaults to en; 2 letter language code", - "type": "text", "disabled": true }, { "key": "country", "value": "{{COUNTRY_CODE}}", "description": "Optional - defaults to US; 2 letter country code", - "type": "text", "disabled": true } ] @@ -535,7 +503,6 @@ }, "response": [ { - "id": "73844a42-63ae-4d9e-8348-c598691fa2c3", "name": "Search Suggestion", "originalRequest": { "method": "GET", @@ -561,13 +528,11 @@ "_postman_previewlanguage": null, "header": null, "cookie": [], - "responseTime": null, "body": "{\r\n \"results\": [\r\n {\r\n \"term\": \"facebook\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/?q=facebook\"\r\n },\r\n {\r\n \"term\": \"facebook messenger\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/?q=facebook%20messenger\"\r\n },\r\n {\r\n \"term\": \"facebook lite\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/?q=facebook%20lite\"\r\n },\r\n {\r\n \"term\": \"faceapp\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/?q=faceapp\"\r\n },\r\n {\r\n \"term\": \"facetime\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/?q=facetime\"\r\n }\r\n ]\r\n}" } ] } ], - "id": "959ce605-6bc5-41ba-8ba8-8e8e2c441202", "description": "Requests to search Google Play with country, collection filters" }, { @@ -579,7 +544,6 @@ { "listen": "test", "script": { - "id": "5782906d-6782-4223-8c8e-5289d9edcd5d", "exec": [ "pm.test(\"Check Wikipedia\", function () {", " var jsonData = pm.response.json();", @@ -592,7 +556,6 @@ { "listen": "prerequest", "script": { - "id": "9af1c560-e927-4469-b5f2-7a6f1b2ae4c5", "exec": [ "pm.collectionVariables.set(\"expectedResponseTime\", 60);" ], @@ -600,10 +563,6 @@ } } ], - "id": "89e15298-3558-43d8-90c7-3399bf5659ef", - "protocolProfileBehavior": { - "disableBodyPruning": true - }, "request": { "method": "GET", "header": [], @@ -623,14 +582,12 @@ "key": "lang", "value": "{{LANGUAGE_CODE}}", "description": "(optional, defaults to 'en'): the two letter language code in which to fetch the app page.", - "type": "text", "disabled": true }, { "key": "country", "value": "{{COUNTRY_CODE}}", "description": "(optional, defaults to 'us'): the two letter country code used to retrieve the applications. Needed when the app is available only in some countries", - "type": "text", "disabled": true } ], @@ -645,7 +602,6 @@ }, "response": [ { - "id": "b1b5e5dc-ea7c-44df-b1fe-8a2f19b1266a", "name": "Get App Details - App Found", "originalRequest": { "method": "GET", @@ -703,11 +659,9 @@ } ], "cookie": [], - "responseTime": null, "body": "{\n \"title\": \"Wikipedia\",\n \"description\": \"The best Wikipedia experience on your Mobile device. Ad-free and free of charge, forever. With the official Wikipedia app, you can search and explore 40+ million articles in 300+ languages, no matter where you are.\\n\\n== Why you'll love the this app ==\\n\\n1. It's free and open\\nWikipedia is the encyclopedia that anyone can edit. Articles on Wikipedia are freely licensed and the app code is 100% open source. The heart and soul of Wikipedia is a community of people working to bring you unlimited access to free, reliable and neutral information.\\n\\n2. No ads\\nWikipedia is a place to learn, not a place for advertising. This app is made by the Wikimedia Foundation, a nonprofit organization that supports and operates Wikipedia. We provide this service in the pursuit of open knowledge that’s always ad-free and never tracks your data. \\n\\n3. Read in your language\\nSearch 40 million articles in over 300 languages in the world’s largest source of information. Set your preferred languages in the app and easily switch between them when browsing or reading. \\n\\n4. Use it offline\\nSave your favorite articles and read Wikipedia offline with “My lists“. Name lists as you like and collect articles across different languages. Saved articles and reading lists are synced across all your devices and are available even when you do not have internet connectivity.\\n\\n5. Attention to detail and night mode\\nThe app embraces Wikipedia’s simplicity and adds delight to it. A beautiful and distraction-free interface lets you focus on the essential: reading articles. With text size adjustment and themes in pure black, dark, sepia or light, you can choose the most pleasant reading experience for you.\\n\\n== Broaden your horizon with these features == \\n\\n1. Customize your Explore feed\\n\\\"Explore\\\" lets you see recommended Wikipedia content including current events, popular articles, captivating freely-licensed photos, events on this day in history, suggested articles based on your reading history, and more.\\n\\n2. Find and search \\nQuickly find what you're looking for by searching within articles or with the search bar at the top of the app. You can even search using your favorite emojis or voice-enabled search.\\n\\n== We'd love your feedback ==\\n\\n1. To send feedback from the app: \\nIn the menu, press \\\"Settings\\\", then \\\"About the Wikipedia app\\\", then \\\"Send app feedback\\\".\\n\\n2. If you have experience with Java and the Android SDK, then we look forward to your contributions! More info: https://mediawiki.org/wiki/Wikimedia_Apps/Team/Android/App_hacking \\n\\n3. By using this app, you agree to the automatic transmission of crash reports to a third-party service provider. If you would like to disable this feature, press \\\"Settings,\\\" then turn off \\\"Send crash reports\\\" under the Privacy section.\\n\\n4. Explanation of permissions needed by the app: https://mediawiki.org/wiki/Wikimedia_Apps/Android_FAQ#Security_and_Permissions \\n\\n5. Privacy policy: https://m.wikimediafoundation.org/wiki/Privacy_policy \\n\\n6. Crash report third-party service provider’s privacy policy:\\nhttps://privacy.microsoft.com/en-us/privacystatement \\n\\n7. Terms of Use: https://m.wikimediafoundation.org/wiki/Terms_of_Use \\n\\n8. About the Wikimedia Foundation:\\nThe Wikimedia Foundation is a charitable nonprofit organization that supports and operates Wikipedia and the other Wiki projects. It is funded mainly through donations. For more information, please visit our website: https://wikimediafoundation.org/\",\n \"descriptionHTML\": \"The best Wikipedia experience on your Mobile device. Ad-free and free of charge, forever. With the official Wikipedia app, you can search and explore 40+ million articles in 300+ languages, no matter where you are.

== Why you'll love the this app ==

1. It's free and open
Wikipedia is the encyclopedia that anyone can edit. Articles on Wikipedia are freely licensed and the app code is 100% open source. The heart and soul of Wikipedia is a community of people working to bring you unlimited access to free, reliable and neutral information.

2. No ads
Wikipedia is a place to learn, not a place for advertising. This app is made by the Wikimedia Foundation, a nonprofit organization that supports and operates Wikipedia. We provide this service in the pursuit of open knowledge that’s always ad-free and never tracks your data.

3. Read in your language
Search 40 million articles in over 300 languages in the world’s largest source of information. Set your preferred languages in the app and easily switch between them when browsing or reading.

4. Use it offline
Save your favorite articles and read Wikipedia offline with “My lists“. Name lists as you like and collect articles across different languages. Saved articles and reading lists are synced across all your devices and are available even when you do not have internet connectivity.

5. Attention to detail and night mode
The app embraces Wikipedia’s simplicity and adds delight to it. A beautiful and distraction-free interface lets you focus on the essential: reading articles. With text size adjustment and themes in pure black, dark, sepia or light, you can choose the most pleasant reading experience for you.

== Broaden your horizon with these features ==

1. Customize your Explore feed
"Explore" lets you see recommended Wikipedia content including current events, popular articles, captivating freely-licensed photos, events on this day in history, suggested articles based on your reading history, and more.

2. Find and search
Quickly find what you're looking for by searching within articles or with the search bar at the top of the app. You can even search using your favorite emojis or voice-enabled search.

== We'd love your feedback ==

1. To send feedback from the app:
In the menu, press "Settings", then "About the Wikipedia app", then "Send app feedback".

2. If you have experience with Java and the Android SDK, then we look forward to your contributions! More info: https://mediawiki.org/wiki/Wikimedia_Apps/Team/Android/App_hacking

3. By using this app, you agree to the automatic transmission of crash reports to a third-party service provider. If you would like to disable this feature, press "Settings," then turn off "Send crash reports" under the Privacy section.

4. Explanation of permissions needed by the app: https://mediawiki.org/wiki/Wikimedia_Apps/Android_FAQ#Security_and_Permissions

5. Privacy policy: https://m.wikimediafoundation.org/wiki/Privacy_policy

6. Crash report third-party service provider’s privacy policy:
https://privacy.microsoft.com/en-us/privacystatement

7. Terms of Use: https://m.wikimediafoundation.org/wiki/Terms_of_Use

8. About the Wikimedia Foundation:
The Wikimedia Foundation is a charitable nonprofit organization that supports and operates Wikipedia and the other Wiki projects. It is funded mainly through donations. For more information, please visit our website: https://wikimediafoundation.org/\",\n \"summary\": \"The official app for Wikipedia, the world’s largest source of information.\",\n \"installs\": \"50,000,000+\",\n \"minInstalls\": 50000000,\n \"maxInstalls\": 57996512,\n \"score\": 4.5259423,\n \"scoreText\": \"4.5\",\n \"ratings\": 679531,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/org.wikipedia/reviews\",\n \"histogram\": {\n \"1\": 39070,\n \"2\": 11002,\n \"3\": 28418,\n \"4\": 75980,\n \"5\": 525045\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Wikimedia Foundation\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Wikimedia%20Foundation\"\n },\n \"developerId\": \"6169333749249604352\",\n \"developerEmail\": \"android-support@wikimedia.org\",\n \"developerWebsite\": \"http://wikimediafoundation.org\",\n \"privacyPolicy\": \"http://wikimediafoundation.org/wiki/Privacy_policy\",\n \"developerInternalID\": \"6169333749249604352\",\n \"genre\": \"Books & Reference\",\n \"genreId\": \"BOOKS_AND_REFERENCE\",\n \"icon\": \"https://play-lh.googleusercontent.com/htBUaqvBQR9UQ3b1-ouSHFhDGttQkH-eWetEErspYXVa8hOsfmOmj5ZanGg9GF7XAGc\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/dH5an-e2RsdZ-Qx8nBpZ9uRXvr2BjdFoSyFtq1y9SIx5y0PBCIE5LDNmRxPIAvwudR0\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/HIiM-vh4O4JMOaI0zIJjXRqFigCm9jzATWgUeaKlB4Fz-ixcilmKTMvLtWtiF8ehZg\",\n \"https://play-lh.googleusercontent.com/87EJeQNCmkfvPsVzKbmo1tcocMTSvmP6rarZPvyyuhhKaoNesXjsnFgUFBbPFDvAja8\",\n \"https://play-lh.googleusercontent.com/YxBMqhNO651Fv_7T1miRqFTSBAYWdHKAG0ZrkgZASFS8ZdrVVbxc5EReOBX0KlBdzA\",\n \"https://play-lh.googleusercontent.com/zzrXpuguB7AxyiT0mmn2aQMxhSKKPzVcZPrZ2ZLWpS7ftMzz50wJxocSV8opQZkHQQ\",\n \"https://play-lh.googleusercontent.com/IHFPkpCmXboCq5ZHqGosaRmorEF9dVXyORemeewK14A3olYCsC_Rzx7fp0dJl3GND05q\",\n \"https://play-lh.googleusercontent.com/NAypOfh_P7T-9iI54BNv-IWGb6GWU4aqoY8C_6C_Ikl8j3dx9KuWaFJsp6iyxypYrEOG\",\n \"https://play-lh.googleusercontent.com/xxCIlVUH3vvxcys8doCnEtm7g844B2TV_HDMWQQbqlqYKXI2olXknOlJwGFhojUMC4p3\",\n \"https://play-lh.googleusercontent.com/HSdZsxvezEwdzRroOHxot4kuUxRqmRELggwTvOide3yN1lsVFkGwV7Ddxg2GQbHhGnLQ\",\n \"https://play-lh.googleusercontent.com/9e3wwl8CWdNbww89HtLfH--YyfwyeohPMB1gDSNGZNle36gw-_gYAODy4fRqYHgkMg\",\n \"https://play-lh.googleusercontent.com/yi6tePfUC-zYuHSGPaxW4ySUs-B85UJU7oH4CLxdK1bEh6fZsuW76buNlqDJIQlfpv4\"\n ],\n \"video\": \"https://www.youtube.com/embed/6UkFHYqVsbc?ps=play&vq=large&rel=0&autohide=1&showinfo=0\",\n \"videoImage\": \"https://play-lh.googleusercontent.com/dH5an-e2RsdZ-Qx8nBpZ9uRXvr2BjdFoSyFtq1y9SIx5y0PBCIE5LDNmRxPIAvwudR0\",\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Jan 13, 2012\",\n \"updated\": 1660752401000,\n \"version\": \"VARY\",\n \"recentChanges\": \"- Minor bug fixes and enhancements.\",\n \"comments\": [\n \"It *was* better, but the update(s) have now made it clumsy and difficult-to-navigate. Word to developers: the text runs *right up* to the right-side border and has some left-right movement. I'm constantly sliding the app's pages to the left so that I can read the end of the sentence. It's not looking like it was well-crafted. And the new tabbing: yuk. Somewhat poor in terms of usability. I've seen you guys do better. I know you can. I'm a donor, so maybe give a listen.\",\n \"Offline usage, SD storage and great interface. But does have one very annoying flaw, which is how incredibly easy it is to accidentally delete offline pages. There have been several occasions where I attempted to tap on an article, but ever so slightly, swiped a little to the side at the same time, which deletes the page. It dosen't ask for confirmation, but rather just removes the page in a blink of an eye. Although it does allow you to undo this, the page will have to be downloaded again.\",\n \"This is such a great, well made app. It's probably my favorite app on my phone right now. You can create reading lists of different subjects and they are available offline. Furthermore, when reading an article and clicking on a highlighted word it gives a summary overlay popup that doesn't pull you away from the current article, however you can go to the full article if you desire to. This app and wikipedia in general are one of the silver linings of the attrocious noise the internet and apps have become.\",\n \"I truly love the wikipedia app, but suddenly the crowned feature, the Places tab, is missing from my version. This feature placed nearby articles on an interactive map. It helped me navigate new cities, and turned the world into a museum. I loved it. It's necessary. I can't for the life of me figure out why it'd be removed. A light has been lost in my life, hence the dim star rating. With it, it'd be 5 stars. Without it, only suffering.\",\n \"The newest version (as of May 2019) is practically unusable. Highly frequent crashing, particularly when trying to save an article to the reading list. This forces the app to restart and I end up losing what I was reading. This is VERY annoying, especially considering I hadn't experienced this issue on older versions. Please fix this! The app is otherwise fantastic, but this one issue ruins the whole experience for me.\"\n ],\n \"appId\": \"org.wikipedia\",\n \"url\": \"http://gplayapi.srik.me/api/apps/org.wikipedia\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.wikipedia&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/org.wikipedia/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/org.wikipedia/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/org.wikipedia/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n}" }, { - "id": "d053b850-19be-4d25-9fcb-35adbaae759d", "name": "Get App Details - App Not Found", "originalRequest": { "method": "GET", @@ -734,7 +688,6 @@ "_postman_previewlanguage": null, "header": null, "cookie": [], - "responseTime": null, "body": "{\r\n \"message\": \"App not found (404)\"\r\n}" } ] @@ -745,7 +698,6 @@ { "listen": "test", "script": { - "id": "08301a2d-4e79-4afd-a95a-94b04e7b2e9c", "exec": [ "var jsonData = pm.response.json();", "", @@ -862,10 +814,6 @@ } } ], - "id": "d60069ac-8cd3-407a-a1d8-ddb7666e42f2", - "protocolProfileBehavior": { - "disableBodyPruning": true - }, "request": { "method": "GET", "header": [], @@ -891,7 +839,6 @@ "key": "lang", "value": "{{LANGUAGE_CODE}}", "description": "Optional - defaults to en; 2 letter language code.", - "type": "text", "disabled": true } ], @@ -907,7 +854,6 @@ }, "response": [ { - "id": "a38cfa9f-f37b-4604-af5e-c91be75eb6dc", "name": "Get App Permissions", "originalRequest": { "method": "GET", @@ -934,11 +880,9 @@ "_postman_previewlanguage": null, "header": null, "cookie": [], - "responseTime": null, "body": "{\r\n \"results\": [\r\n {\r\n \"permission\": \"approximate location (network-based)\",\r\n \"type\": \"Location\"\r\n },\r\n {\r\n \"permission\": \"precise location (GPS and network-based)\",\r\n \"type\": \"Location\"\r\n },\r\n {\r\n \"permission\": \"take pictures and videos\",\r\n \"type\": \"Camera\"\r\n },\r\n {\r\n \"permission\": \"view network connections\",\r\n \"type\": \"Other\"\r\n },\r\n {\r\n \"permission\": \"pair with Bluetooth devices\",\r\n \"type\": \"Other\"\r\n },\r\n {\r\n \"permission\": \"access Bluetooth settings\",\r\n \"type\": \"Other\"\r\n },\r\n {\r\n \"permission\": \"full network access\",\r\n \"type\": \"Other\"\r\n },\r\n {\r\n \"permission\": \"run at startup\",\r\n \"type\": \"Other\"\r\n },\r\n {\r\n \"permission\": \"prevent device from sleeping\",\r\n \"type\": \"Other\"\r\n }\r\n ]\r\n}" }, { - "id": "f3007e41-942f-453e-a317-433f8b2a3387", "name": "Get App Permissions - Short", "originalRequest": { "method": "GET", @@ -971,7 +915,6 @@ "_postman_previewlanguage": null, "header": null, "cookie": [], - "responseTime": null, "body": "{\r\n \"results\": [\r\n \"Location\",\r\n \"Camera\"\r\n ]\r\n}" } ] @@ -982,7 +925,6 @@ { "listen": "test", "script": { - "id": "d809719c-5c11-4569-9f9b-02051ece9368", "exec": [ "var jsonData = pm.response.json();", "", @@ -1026,10 +968,6 @@ } } ], - "id": "a8c5c505-9219-45e8-b146-8c834947eae4", - "protocolProfileBehavior": { - "disableBodyPruning": true - }, "request": { "method": "GET", "header": [], @@ -1064,7 +1002,6 @@ }, "response": [ { - "id": "cfc1a720-e2d5-49e9-a9e1-7e6cbc3c0380", "name": "Get App DataSafety", "originalRequest": { "method": "GET", @@ -1130,7 +1067,6 @@ } ], "cookie": [], - "responseTime": null, "body": "{\n \"results\": {\n \"sharedData\": [],\n \"collectedData\": [],\n \"securityPractices\": [\n {\n \"practice\": \"Data is encrypted in transit\",\n \"description\": \"Your data is transferred over a secure connection\"\n },\n {\n \"practice\": \"You can request that data be deleted\",\n \"description\": \"The developer provides a way for you to request that your data be deleted\"\n }\n ],\n \"privacyPolicyUrl\": \"http://wikimediafoundation.org/wiki/Privacy_policy\"\n }\n}" } ] @@ -1141,7 +1077,6 @@ { "listen": "test", "script": { - "id": "410c82eb-12b2-489e-a8e3-3e907fde0279", "exec": [ "\r", "pm.test(\"Validate the results object\", function () {\r", @@ -1163,10 +1098,6 @@ } } ], - "id": "49750cf1-e454-4217-b122-c3f852168bf8", - "protocolProfileBehavior": { - "disableBodyPruning": true - }, "request": { "method": "GET", "header": [], @@ -1221,7 +1152,6 @@ { "key": null, "value": "", - "type": "text", "disabled": true } ], @@ -1236,7 +1166,6 @@ }, "response": [ { - "id": "8f4a67fe-f314-4b19-a2b2-4d7458031ce8", "name": "Get App Reviews", "originalRequest": { "method": "GET", @@ -1263,7 +1192,6 @@ "_postman_previewlanguage": null, "header": null, "cookie": [], - "responseTime": null, "body": "{\r\n \"results\": {\r\n \"data\": [\r\n {\r\n \"id\": \"gp:AOqpTOGRQfzrGoBOuTXLEHlhn3n709kSY4Vva8vru0dqHHKcLv6P7Vpjm6-YZ-lOLA64uT2EAVVaRLcCJaTiZA\",\r\n \"userName\": \"Prashant Soni\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJw0aHoDIm36UBVQUpQcUUN0MT-Mn9FAPmDIoyQp=mo\",\r\n \"date\": \"2021-10-04T19:32:55.860Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGRQfzrGoBOuTXLEHlhn3n709kSY4Vva8vru0dqHHKcLv6P7Vpjm6-YZ-lOLA64uT2EAVVaRLcCJaTiZA\",\r\n \"title\": null,\r\n \"text\": \"Nice\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGb4QE501x9YcohAHgrR5INBLK4Z_O1emdnC1iE6FvK1h9g8CtJr3Z2hW51UG0_TpMGLc2-og3hgBHF0g\",\r\n \"userName\": \"Rashmi Rajak\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJyWFlw_CbXMumAsUM-8_YQ4DfDAE4GHdgVtmbM2=mo\",\r\n \"date\": \"2021-10-04T18:01:49.500Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGb4QE501x9YcohAHgrR5INBLK4Z_O1emdnC1iE6FvK1h9g8CtJr3Z2hW51UG0_TpMGLc2-og3hgBHF0g\",\r\n \"title\": null,\r\n \"text\": \"Excellent\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEOkf78M8PW_JUXDWl-YX7y9AeCTtQOGmezzP_0xDCRJJOpqIDXNQ1ES9cqx5mp62aRVNJrzjdOvCnSHA\",\r\n \"userName\": \"Sahil kumar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiG8w-v4YikdL3V6hCzsZ6L6yBOF2zyXq9iVhO9\",\r\n \"date\": \"2021-10-04T17:05:23.678Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEOkf78M8PW_JUXDWl-YX7y9AeCTtQOGmezzP_0xDCRJJOpqIDXNQ1ES9cqx5mp62aRVNJrzjdOvCnSHA\",\r\n \"title\": null,\r\n \"text\": \"Ram ram ji उत्तर प्रदेश में 2022 में पुनः कमल खिलेगा.. \\\"योगी जी हैं तो यकीन है\\\" 🙏जय श्री राम🙏 भ=भूमि . ग=गंगन . व=वायु . आ= अग्नि . न=निल भगवान का अर्थ है\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGpDvQGVklHqLcrosXVf98j5LD8MrHtn9uPgjl4Q3ngFiUWx6tKQFHF21itJQhh2sBr26PLCcRIxY3yZA\",\r\n \"userName\": \"Vijay Bahadur\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhCuQ_GTeGAGS-NusAmAue-5suIRblpKcfXv8kZ\",\r\n \"date\": \"2021-10-04T16:44:33.869Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGpDvQGVklHqLcrosXVf98j5LD8MrHtn9uPgjl4Q3ngFiUWx6tKQFHF21itJQhh2sBr26PLCcRIxY3yZA\",\r\n \"title\": null,\r\n \"text\": \"I was in a hospital where there were covid patients but it was showing that there is no covid patient near me.\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEApFg0piXRMx_3g51vxr-v5S849aFo-VgpdXrTgVtC9yeaCWIIpL52QlKUE8-FfKFsFvJRZRTqiWgozQ\",\r\n \"userName\": \"Poorva\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiOFfEGMvGagN3R2fGNQbCvR-87yP-zESIBt6_VlA\",\r\n \"date\": \"2021-10-04T15:51:26.319Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEApFg0piXRMx_3g51vxr-v5S849aFo-VgpdXrTgVtC9yeaCWIIpL52QlKUE8-FfKFsFvJRZRTqiWgozQ\",\r\n \"title\": null,\r\n \"text\": \"Ghatiya app 🤬🤬🤬\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_strength_training\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_considerate_of_time\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_real_time_following\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEmsVLRW56AwVIyL4Ui399nkoey9iLKvk0xDyRCgMnnVaHzoxOHOdtLT36RUmeyKc5yP5teYd7bKZzcqw\",\r\n \"userName\": \"Manohar lal\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhQ8J-gx31mloRP_McLkHqbSkUy3JB4tWoCQVdOew\",\r\n \"date\": \"2021-10-04T15:38:47.353Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEmsVLRW56AwVIyL4Ui399nkoey9iLKvk0xDyRCgMnnVaHzoxOHOdtLT36RUmeyKc5yP5teYd7bKZzcqw\",\r\n \"title\": null,\r\n \"text\": \"Best app\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_spend_more_time\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_offline_logging\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_visually_bad\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHLFGZm40PHA4t7hdSwQ2rK5z-G2-F-FE0vTdrRA_gRawMhM00fj2fcu4Ah4hQB2tQfaYdqL76EuzFwmQ\",\r\n \"userName\": \"hqw jdqq\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJztOd4qNaFUReiUDqCWqucdj1M7Fxd5oh4T62o0=mo\",\r\n \"date\": \"2021-10-04T14:18:20.214Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHLFGZm40PHA4t7hdSwQ2rK5z-G2-F-FE0vTdrRA_gRawMhM00fj2fcu4Ah4hQB2tQfaYdqL76EuzFwmQ\",\r\n \"title\": null,\r\n \"text\": \"Can't I register for second dose without putting oTP which come on my number ,as my number is been permanently blocked. Please help.\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFE_mM0Qx7l4vCr57WNbyBuKwCnf43EtOyPanpAd4aNncSFb8MukT-aqdYBJ7wUVor85RcLNPVbKcE_OA\",\r\n \"userName\": \"Amiit Singh\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJx0ihZ_q-J_GaRwBSQshrJtdwzbIDwNjdM3r5q5=mo\",\r\n \"date\": \"2021-10-04T14:16:37.820Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFE_mM0Qx7l4vCr57WNbyBuKwCnf43EtOyPanpAd4aNncSFb8MukT-aqdYBJ7wUVor85RcLNPVbKcE_OA\",\r\n \"title\": null,\r\n \"text\": \"Very nice 👍\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_3rd_party_music\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_period_tracking\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_deceptive_ads\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEZcsqKh9Qra86GorML-hezfRU44qcu6mpQL9FdaQysAQjA6T-V4ppoFToTHgf00djk9GVIXS_01r-7Nw\",\r\n \"userName\": \"Randheer Singh\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhZsANDFX9whV0SsOujqspHt6JAImaTp_WRvBES6PU\",\r\n \"date\": \"2021-10-04T14:15:25.711Z\",\r\n \"score\": 4,\r\n \"scoreText\": \"4\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEZcsqKh9Qra86GorML-hezfRU44qcu6mpQL9FdaQysAQjA6T-V4ppoFToTHgf00djk9GVIXS_01r-7Nw\",\r\n \"title\": null,\r\n \"text\": \"Best app\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_gps_tracking\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_workout_diary\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_verbal_feedback\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFG54xxwCHq6YzBEWfHnuz2BtYN1J6UfrvyrYS1ShIJB3PPbEHKDxqVFTrde8YbvjUCjJz213igBRtDaA\",\r\n \"userName\": \"Mohd Ali\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiHN5qWasWLc_xBkGasBoqe2o31Di6cz7sfPq2yQQ\",\r\n \"date\": \"2021-10-04T14:02:45.378Z\",\r\n \"score\": 3,\r\n \"scoreText\": \"3\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFG54xxwCHq6YzBEWfHnuz2BtYN1J6UfrvyrYS1ShIJB3PPbEHKDxqVFTrde8YbvjUCjJz213igBRtDaA\",\r\n \"title\": null,\r\n \"text\": \"I used it because i had no choice, now we came to know its not a govt app. Sometimes it doesn't even give correct info, even if you are not sick it will make you sick\",\r\n \"replyDate\": \"2020-11-09T06:59:47.285Z\",\r\n \"replyText\": \"Dear Sir/Mam, The App contains the official facts and figures related to COVID-19. It doesn't propagate any lies or falsehood. If you have noticed any false or incorrect information on the App, then kindly report it to : support.aarogyasetu@gov.in, along with the relevant screenshot.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_strength_training\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_considerate_of_time\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_negative_ads_impact\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFAfTpiZaSSAGRzcIV5xqPSdPyFBmgTQy9jOM7N1RxWXTuHAI7HbyNJa64vJxWo25J7Oa1FbYpHO9JyCA\",\r\n \"userName\": \"Ashish Kumar Pandey\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GgW_23FYmCkLOR8buZ7vAcHOf0UojlFI0Y-qPEmGw\",\r\n \"date\": \"2021-10-04T13:36:45.363Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFAfTpiZaSSAGRzcIV5xqPSdPyFBmgTQy9jOM7N1RxWXTuHAI7HbyNJa64vJxWo25J7Oa1FbYpHO9JyCA\",\r\n \"title\": null,\r\n \"text\": \"This is very nice app. He has full update new case of covid -19. I have use at last year. No problem this app.\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGCPAB8jQWeF_iK0VaE4ADLPQQyJThW1Ejk4xneJQVI6-gv4CmMuo8Gc8HOdG6qqwTxX65REHeY6666oQ\",\r\n \"userName\": \"Kannori Arjuna\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GggzotmuK0FGImZUAKil0VAedH5Mb9SKPTK9Mh7eA\",\r\n \"date\": \"2021-10-04T13:35:47.702Z\",\r\n \"score\": 4,\r\n \"scoreText\": \"4\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGCPAB8jQWeF_iK0VaE4ADLPQQyJThW1Ejk4xneJQVI6-gv4CmMuo8Gc8HOdG6qqwTxX65REHeY6666oQ\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOETVXzvFEWeJRYZjMAEBDVB92uWk1UwGQP0-smA3Q1EaIdYTiA3ZceS4kDWHCsAmRHQhuwppQ46tmlaWA\",\r\n \"userName\": \"Dheeraj Tiwari\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhU0OKQc3scyi_AMJZGNDR623E8Nrxk9dT7ogFtxw\",\r\n \"date\": \"2021-10-04T13:27:22.313Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOETVXzvFEWeJRYZjMAEBDVB92uWk1UwGQP0-smA3Q1EaIdYTiA3ZceS4kDWHCsAmRHQhuwppQ46tmlaWA\",\r\n \"title\": null,\r\n \"text\": \"Supar\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_training_plans\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_tracking_workouts\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_importing_recipes\",\r\n \"rating\": 1\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFKTi3_Z29XqiIESiR_gh4T07ALv43qJYiuC2vpEUIAFEv1uTUhHPwGzeJ3YZ92Dsv9l1UTymeMf1-6cQ\",\r\n \"userName\": \"Bantoo Kumar Rajput\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gjzg6CRKDcDhykjdHofLBkMHswvOOtKqPeAJXAUCm8\",\r\n \"date\": \"2021-10-04T13:26:50.908Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFKTi3_Z29XqiIESiR_gh4T07ALv43qJYiuC2vpEUIAFEv1uTUhHPwGzeJ3YZ92Dsv9l1UTymeMf1-6cQ\",\r\n \"title\": null,\r\n \"text\": \"Poor service\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEJ-syF7kS_rb-KGoN8_eTlCy0lmsFhmzuTmJhXdxy7khpkjP3Px_4cKBk-XcKEiPBxCRoo6-2wRLzvyg\",\r\n \"userName\": \"Ronny Sabharwal\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiV0dJZgEgRF_CO26GPpUhYLlClh4UGvHIRqGeM\",\r\n \"date\": \"2021-10-04T13:24:39.443Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEJ-syF7kS_rb-KGoN8_eTlCy0lmsFhmzuTmJhXdxy7khpkjP3Px_4cKBk-XcKEiPBxCRoo6-2wRLzvyg\",\r\n \"title\": null,\r\n \"text\": \"Never coming OTPs: I was with my friends we were celebrating one of our friends birthday at DLF Cyberhub. All my friends could able to get otp to to login aarogya setu cauese it was needed at entrance but i didn't receive an OTP I waited for 20 minutes, I tried several times, tried connecting my friends cellular networks but still couldn't get the OTP, then because of me we had to cancel the plan and we had to move somewhere else.\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_visually_good\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_content_language\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_training_community\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEQNr15p4_tThNlneYSmc2M444DRxp7KX52MLyUZuTu0VBEyqkbi2p5C_BdZyqVCIuz0NQrR4vEOTBiNA\",\r\n \"userName\": \"Dinesh Maity\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gjc5lQJb11Xi4Psx1XZu20eVHRXXKY_dd7nPXAv\",\r\n \"date\": \"2021-10-04T13:13:43.343Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEQNr15p4_tThNlneYSmc2M444DRxp7KX52MLyUZuTu0VBEyqkbi2p5C_BdZyqVCIuz0NQrR4vEOTBiNA\",\r\n \"title\": null,\r\n \"text\": \"this is a good aoo\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_verbal_feedback\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_tracking_workouts\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_3rd_party_music\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFaHPHCViSzPyv0xXCVF2CKRoxa79_QHgHEUjkpqsZYB7rZMXATSm0sDTvYYe2jZbmKRN-lxehpkri0MQ\",\r\n \"userName\": \"Sunil Sirohi\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gj34wp2KAucsAvs5AE49PI3HAOYoZ7MOURs8fCZyg\",\r\n \"date\": \"2021-10-04T13:02:53.283Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFaHPHCViSzPyv0xXCVF2CKRoxa79_QHgHEUjkpqsZYB7rZMXATSm0sDTvYYe2jZbmKRN-lxehpkri0MQ\",\r\n \"title\": null,\r\n \"text\": \"Good application\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_app_description\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_useful_notifications\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_setting_goals\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFTzkiy7aCbratzNp1Gyhp-ljqzyfXsklB4AEb12OlDzfjQyu75mquydBVwYX_5tCZU8GyKYTTMKeWAkw\",\r\n \"userName\": \"Utpal Pandit\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJwULW6gvKE-IX65eklOBOKSh6UDknowR_ic6mZE=mo\",\r\n \"date\": \"2021-10-04T12:50:05.106Z\",\r\n \"score\": 4,\r\n \"scoreText\": \"4\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFTzkiy7aCbratzNp1Gyhp-ljqzyfXsklB4AEb12OlDzfjQyu75mquydBVwYX_5tCZU8GyKYTTMKeWAkw\",\r\n \"title\": null,\r\n \"text\": \"Help full\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFmCp-5fsc1l1efjtDbRt58_QxU67fcbbKkwl6AhYDuVq2De6XRxwRQ1SK67NjHfVFecwxhv5XdbLEqoQ\",\r\n \"userName\": \"Joey Tribiani\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJyLlWY3Q9pO3iaH-C8SInQY4a-nNAaYP6V-XbPc=mo\",\r\n \"date\": \"2021-10-04T11:45:45.769Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFmCp-5fsc1l1efjtDbRt58_QxU67fcbbKkwl6AhYDuVq2De6XRxwRQ1SK67NjHfVFecwxhv5XdbLEqoQ\",\r\n \"title\": null,\r\n \"text\": \"Wonderful experience.I just installed the app and now I am corona free.Also price of petrol decreased.\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFaSYz7dSE7LR6cwJUpsurR0k1MUwQ-IVT72ecUf0Rr8GrEK-sVregmYeFGS-p7JzVqcUvi92WLGZXghA\",\r\n \"userName\": \"Sunil Wakhloo\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gj5h1CCCMoDurb6gjwA5Ci5WsAbhHFiTtompR55tA\",\r\n \"date\": \"2021-10-04T11:42:39.739Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFaSYz7dSE7LR6cwJUpsurR0k1MUwQ-IVT72ecUf0Rr8GrEK-sVregmYeFGS-p7JzVqcUvi92WLGZXghA\",\r\n \"title\": null,\r\n \"text\": \"Discripiency in no of cases reported\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_nutrition_plans\",\r\n \"rating\": 3\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_verbal_feedback\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_visually_bad\",\r\n \"rating\": 2\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFRENnmeG4H0YGgVcVVwWqA75yK_HgNfGeoU6rkjUhZFrnx5RyyCCaQAVM4R2uDZg7SMFAnqXISC50RxQ\",\r\n \"userName\": \"Nidhi Khanna\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJxXx4igO6VX_6VWofRyGwOOf0AmGyhJ-UCa3QL1=mo\",\r\n \"date\": \"2021-10-04T11:25:30.515Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFRENnmeG4H0YGgVcVVwWqA75yK_HgNfGeoU6rkjUhZFrnx5RyyCCaQAVM4R2uDZg7SMFAnqXISC50RxQ\",\r\n \"title\": null,\r\n \"text\": \"Ghatia\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_importing_recipes\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_gps_tracking\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_positive_impact\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOE4Tp2VtUc9ngcfzkhRDoeq79Srd0ERd7BCpJ8HZkFJrj8ZYDsxdyJ1ZgYCIUrK9X0A9elWibg6cP0Qsg\",\r\n \"userName\": \"Tech Nikk\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJzL8101ZtQ0P5KY-BY6mkTELPUD3TXyte2xljdd=mo\",\r\n \"date\": \"2021-10-04T11:03:55.132Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOE4Tp2VtUc9ngcfzkhRDoeq79Srd0ERd7BCpJ8HZkFJrj8ZYDsxdyJ1ZgYCIUrK9X0A9elWibg6cP0Qsg\",\r\n \"title\": null,\r\n \"text\": \"too much bugs. crash level 100000+\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGaTdDQAZvjbWQCeV-J4O5apolzWBwHb7t3XRTc9QsulGBuEcn1jG2Zh3uk4EHKI3WTVyqt85sF6Stu7w\",\r\n \"userName\": \"Deepanshu Verma\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJzPhCRa7obJ_XhYnnHd4dUhJ0sOI9nCTJGWt2Sq5lE=mo\",\r\n \"date\": \"2021-10-04T10:15:44.277Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGaTdDQAZvjbWQCeV-J4O5apolzWBwHb7t3XRTc9QsulGBuEcn1jG2Zh3uk4EHKI3WTVyqt85sF6Stu7w\",\r\n \"title\": null,\r\n \"text\": \"Govt has stopped Corona helpline for common public.\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_3rd_party_music\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_fitness_devices\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_positive_impact\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFRLuhxd-tqZO0-i_Hkw04DOWcVu8PHS1Wwp1FXmD3PdBlyqVYZg1bTi8AS079yVpe07kzr-KbBDSfWfQ\",\r\n \"userName\": \"Saurabh Kumar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjldutCMSHp8QyaYZ9Il6LKLeyF6bctUaHlMVbIUms\",\r\n \"date\": \"2021-10-04T10:13:39.766Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFRLuhxd-tqZO0-i_Hkw04DOWcVu8PHS1Wwp1FXmD3PdBlyqVYZg1bTi8AS079yVpe07kzr-KbBDSfWfQ\",\r\n \"title\": null,\r\n \"text\": \"Nice\",\r\n \"replyDate\": \"2021-10-04T11:02:37.708Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOE3FX8L5PSZC3IxVJJGAkQHDAbzMhh13xXNg1c2ISbNPZptKzvqHnIpTQV8L76dLaTPC_8uHMFsVyV7lA\",\r\n \"userName\": \"Vivek Kumkar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gii9ubNc2V-Y1hoVvuOp6LXBu1M6QIKsnuXdp6O\",\r\n \"date\": \"2021-10-04T09:59:00.968Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOE3FX8L5PSZC3IxVJJGAkQHDAbzMhh13xXNg1c2ISbNPZptKzvqHnIpTQV8L76dLaTPC_8uHMFsVyV7lA\",\r\n \"title\": null,\r\n \"text\": \"Very useful app\",\r\n \"replyDate\": \"2021-10-04T11:02:43.183Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHsJFuCzxQWE1TwNcdzdfk5VCKBpkOG1ioXfLRUXbwOIM0uKH4EsiMDT6bcQ8a9FHu15kCe7CC45aVwAQ\",\r\n \"userName\": \"Bharat Rathaur\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJy9uNjlvVLqnb1vnMvXy8PJ5BjVd0Tjma8o1N8Q=mo\",\r\n \"date\": \"2021-10-04T09:52:09.952Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHsJFuCzxQWE1TwNcdzdfk5VCKBpkOG1ioXfLRUXbwOIM0uKH4EsiMDT6bcQ8a9FHu15kCe7CC45aVwAQ\",\r\n \"title\": null,\r\n \"text\": \"Good app aarogaya\",\r\n \"replyDate\": \"2021-10-04T11:02:46.858Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_personal_coaching\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_real_time_following\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_creating_routes\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGkRN881Dq4xvkjQMxA60HSj5aPWbbpety-EEIds-6OGrVszJNT2DXqlmsbqAG-V4BmD1yaRKRs9hUBMg\",\r\n \"userName\": \"Murarilal Sonar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhhoV3BqwtBOx8T16Fmv-nnhyEptsgrzidlIU9U\",\r\n \"date\": \"2021-10-04T09:33:31.220Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGkRN881Dq4xvkjQMxA60HSj5aPWbbpety-EEIds-6OGrVszJNT2DXqlmsbqAG-V4BmD1yaRKRs9hUBMg\",\r\n \"title\": null,\r\n \"text\": \"Best\",\r\n \"replyDate\": \"2021-10-04T09:38:18.110Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_verbal_feedback\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_voice_controls\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_offline_viewing\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGgfjAu4MlE32a7VPDZkPSVKfM5irLKJKlz5T5Fh293z_qQ3HNaY1KH6ISOWevBSlb3QtvlyKhUhe_DYw\",\r\n \"userName\": \"Mithilesh Roy\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJzAFpse5XF7-I8As4J0mACAqOAGNcsdQdGuQ4VR=mo\",\r\n \"date\": \"2021-10-04T09:19:50.830Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGgfjAu4MlE32a7VPDZkPSVKfM5irLKJKlz5T5Fh293z_qQ3HNaY1KH6ISOWevBSlb3QtvlyKhUhe_DYw\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": \"2021-10-04T09:38:22.227Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_creating_routes\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_nutrition_plans\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_visually_bad\",\r\n \"rating\": 1\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGF8oYjqcCA2SfZgRDSdxA_PodEhB9OhGl9uHdSzmKUXTqJmET0r5JgD1mDDdA2mUxzfrNnvbhEO08txg\",\r\n \"userName\": \"Js Shirts\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJyJHD8suucEf-Ubcr86a3PTK_u0mQGLmbfnzW0=mo\",\r\n \"date\": \"2021-10-04T07:36:08.114Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGF8oYjqcCA2SfZgRDSdxA_PodEhB9OhGl9uHdSzmKUXTqJmET0r5JgD1mDDdA2mUxzfrNnvbhEO08txg\",\r\n \"title\": null,\r\n \"text\": \"Good app this\",\r\n \"replyDate\": \"2021-10-04T09:38:32.141Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_workout_diary\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_smart_scales\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_period_tracking\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFCJmVXSApja2yiuyoouySPPR54_F95u1UV6aqmGoh_8ZPx-HZZON5p_MB_v41L0BMxZUZ2M7NiQ6-92g\",\r\n \"userName\": \"Vivek Bajpai\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJywMLaVvEqVnsXiPi6Nx-w9B7sD8K86Gk5-ucWv=mo\",\r\n \"date\": \"2021-10-04T07:01:30.902Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFCJmVXSApja2yiuyoouySPPR54_F95u1UV6aqmGoh_8ZPx-HZZON5p_MB_v41L0BMxZUZ2M7NiQ6-92g\",\r\n \"title\": null,\r\n \"text\": \"K inter g onlI'll9gonions in i kg vk Inc ink I'm cumin g OHikinonion her y Om ink h if I'mink in 5h onions LMK ing unit inning plinth I'm I'm onion Omi mx b LMK ik ink Oliy onion ink Int inning I'm Int I'm in b ink IN Thu in inning I'm\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_negative_ads_impact\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_verbal_feedback\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_guide_exercise\",\r\n \"rating\": 3\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEfqlV5F61LvHUJ83fYXFgUVv77nGMfBtJX5hjMZTkZs57hCDWPtOMEw7cAnu5IiYuV72_MhCH1dMPYig\",\r\n \"userName\": \"Uma devi Devi\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJxUwWcF9FCSyKnKEj-_oNfNCxT_W_oLbLoSVD8=mo\",\r\n \"date\": \"2021-10-04T06:41:14.250Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEfqlV5F61LvHUJ83fYXFgUVv77nGMfBtJX5hjMZTkZs57hCDWPtOMEw7cAnu5IiYuV72_MhCH1dMPYig\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": \"2021-10-04T07:01:22.116Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_guide_exercise\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_gps_tracking\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_syncing_with_devices\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFN7DgcBGhQD_y1FYmb8Bv2-blpSRc7gQNNjXbGdIrxfGex2Z2cb_lmC7VnCYDaSZM34onhgJyJpLbCJw\",\r\n \"userName\": \"Himanshi Choudhary\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJxOfUfG_rnjlUkJi6wqjP82i6V21bh1d-D_u6qX=mo\",\r\n \"date\": \"2021-10-04T06:34:35.906Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFN7DgcBGhQD_y1FYmb8Bv2-blpSRc7gQNNjXbGdIrxfGex2Z2cb_lmC7VnCYDaSZM34onhgJyJpLbCJw\",\r\n \"title\": null,\r\n \"text\": \"I tested covid positive 5 months ago & app shows me covid positive. Please help\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEJfGJWQ4oCJJKDfjulz5m3vt35WiJshu_JpeXI8aL8CgOZ1iNuJN0hz75uvgp_FOPPg2m-TpICTkC82w\",\r\n \"userName\": \"Ajiram Meena\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gil9SSdtkm-XTGRbH5QvcNf5llq84B2NxcUsMbdFw\",\r\n \"date\": \"2021-10-04T05:31:55.481Z\",\r\n \"score\": 4,\r\n \"scoreText\": \"4\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEJfGJWQ4oCJJKDfjulz5m3vt35WiJshu_JpeXI8aL8CgOZ1iNuJN0hz75uvgp_FOPPg2m-TpICTkC82w\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": \"2021-10-04T06:35:33.778Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOH1NL9TYSp2dhf-vA9Q6Ovyvxv37WSGZLpdu3riM4InELjEISte_Ggeh1GjVw9XlvqfkNGb7m0N3fryQA\",\r\n \"userName\": \"Pravin Sonawane\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJw0HmmJHS4RtdH5PiEIqPgOBvgaRCYVg8XYCsCQ=mo\",\r\n \"date\": \"2021-10-04T05:22:56.100Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOH1NL9TYSp2dhf-vA9Q6Ovyvxv37WSGZLpdu3riM4InELjEISte_Ggeh1GjVw9XlvqfkNGb7m0N3fryQA\",\r\n \"title\": null,\r\n \"text\": \"Ok\",\r\n \"replyDate\": \"2021-10-04T06:35:38.980Z\",\r\n \"replyText\": \"Thank you so much for your encouraging star ratings!\\n\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_syncing_with_devices\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_workout_diary\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_gps_tracking\",\r\n \"rating\": 1\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFIN604LObPQDAP1dlpA1NWSmHzK-qMgs6DJCpWCGz4is4DijLE8y__axvZrzZ2qllJDauUF-hGS_ZELw\",\r\n \"userName\": \"Mr Mumbai\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gj0k2j32Qzejmxfhok8q2vX7bz4dVKgeMfex6xhL7E\",\r\n \"date\": \"2021-10-04T04:49:29.640Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFIN604LObPQDAP1dlpA1NWSmHzK-qMgs6DJCpWCGz4is4DijLE8y__axvZrzZ2qllJDauUF-hGS_ZELw\",\r\n \"title\": null,\r\n \"text\": \"Not is a good app\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_gps_tracking\",\r\n \"rating\": 2\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_3rd_party_music\",\r\n \"rating\": 2\r\n },\r\n {\r\n \"criteria\": \"vaf_guide_exercise\",\r\n \"rating\": 2\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGPZ3bVMFYZrZ91ghxSiY1rpREavGIUgyJq8Bz6jEt8NS9kXm2JFc0ShmYW_38KMsDRohe2VgbW82O0VA\",\r\n \"userName\": \"Kallan Ray\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJxeNkFDYs4wGEC7fqnoGjNqZcFDYehlMsSUIxf9=mo\",\r\n \"date\": \"2021-10-04T03:56:56.300Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGPZ3bVMFYZrZ91ghxSiY1rpREavGIUgyJq8Bz6jEt8NS9kXm2JFc0ShmYW_38KMsDRohe2VgbW82O0VA\",\r\n \"title\": null,\r\n \"text\": \"Koushik roy\",\r\n \"replyDate\": \"2021-10-04T06:33:51.405Z\",\r\n \"replyText\": \"Thank you so much for your encouraging star ratings!\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHExImme9agcMwRiMW2dUoO1H8Eo1fy9hk_GkmiyLUjmPMer495DnPocq4eWvttvgN0Aar2FQ29vBBXlQ\",\r\n \"userName\": \"Vinod Kumar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhlXbdlU9MjQMtO51TWKKB3a9FnWIO4UbsZR8jPuw\",\r\n \"date\": \"2021-10-04T03:54:43.480Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHExImme9agcMwRiMW2dUoO1H8Eo1fy9hk_GkmiyLUjmPMer495DnPocq4eWvttvgN0Aar2FQ29vBBXlQ\",\r\n \"title\": null,\r\n \"text\": \"Very nice\",\r\n \"replyDate\": \"2021-10-04T06:33:54.904Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGD7fpNDPALGigjUOZcaLKsuZG8l_BezJ304uNz6zumZZ_GeZys43F0--Im2tQ30PHX8jIwRPsjczyEdA\",\r\n \"userName\": \"SHIVAM RAWAT\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhZHsxUEpGBIy4eM_Ei1w7YPtOug-AdKsqVQsmi\",\r\n \"date\": \"2021-10-04T03:14:15.519Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGD7fpNDPALGigjUOZcaLKsuZG8l_BezJ304uNz6zumZZ_GeZys43F0--Im2tQ30PHX8jIwRPsjczyEdA\",\r\n \"title\": null,\r\n \"text\": \"Worst working app I'm not remember that how many times verify my number for set a vaccination schedule\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_personal_coaching\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_importing_recipes\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_content_language\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGzyv9CZvofzown1kxlU-2zj99v0LnG_yfHpth1hYUkGcvylPe4WQ_kAdvk1dhf-LEpM6LkkGAIRt0ZXg\",\r\n \"userName\": \"Dipesh Bobhate\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJyQMnmwqP3vTe611-mYrkjWq9IbVE3SL80hJ6kV=mo\",\r\n \"date\": \"2021-10-04T02:49:41.380Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGzyv9CZvofzown1kxlU-2zj99v0LnG_yfHpth1hYUkGcvylPe4WQ_kAdvk1dhf-LEpM6LkkGAIRt0ZXg\",\r\n \"title\": null,\r\n \"text\": \"My number is not getting register it shows error all time\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_training_community\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_content_language\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_guide_exercise\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGdzR_zYw2ojguMwN7Xz8pFNK2YgRyYv-jFTqTXvUXYuhXWe63gWRwXEoFalWOP6bP0mRQFmi7hBJAoCQ\",\r\n \"userName\": \"sumeet b\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhZphhAJGyRzeSZnd9ceoK8c79HEu5RH2n3ZAvfrA\",\r\n \"date\": \"2021-10-04T01:52:35.663Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGdzR_zYw2ojguMwN7Xz8pFNK2YgRyYv-jFTqTXvUXYuhXWe63gWRwXEoFalWOP6bP0mRQFmi7hBJAoCQ\",\r\n \"title\": null,\r\n \"text\": \"Only problem is I am told to register with this app before boarding flight. Here comes the best part. It won't let me register with a German Number , not that I am aware of anyways as it gives Indias international phone code +91 . Am I wrong or missing something??\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOG76YkLMpA5ZKZyR8ADAmKMjaI4ZLehAagbrR8e87kXHzl5vxH8euVTWaJD3OUvY_yB_sGwsA8Lf-Uokw\",\r\n \"userName\": \"GAUTAM RAJ HI TECH\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiK2sQWdfbWSBSXRG5tEdg7tMh5vjs1RECjNWdB\",\r\n \"date\": \"2021-10-04T00:42:36.624Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOG76YkLMpA5ZKZyR8ADAmKMjaI4ZLehAagbrR8e87kXHzl5vxH8euVTWaJD3OUvY_yB_sGwsA8Lf-Uokw\",\r\n \"title\": null,\r\n \"text\": \"Gautam Shatya Star 🌟🌟\",\r\n \"replyDate\": \"2021-10-04T06:34:04.901Z\",\r\n \"replyText\": \"Thank you so much for your encouraging star ratings!\\n\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFDH5tDN7Fam0-mJkph0PsRW0JxtMTaZk1W-GsvmeorCSOIvvRic16lGoNqY7eExUAsTS1nc5JLzuVajg\",\r\n \"userName\": \"Vikas Rav\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GgwPqm9RL3wdXGUFByx95EfZZ0qbUag6SGjwAGI\",\r\n \"date\": \"2021-10-03T23:22:40.888Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFDH5tDN7Fam0-mJkph0PsRW0JxtMTaZk1W-GsvmeorCSOIvvRic16lGoNqY7eExUAsTS1nc5JLzuVajg\",\r\n \"title\": null,\r\n \"text\": \"Bsdk 2 din baad OTP aata hai, aur kahta hai it will take few seconds. Hypocrisy ki bhi seema hoti hai.🤣🤣🤣\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFa76S49HuppHaOZk0PRQJAithq_Qbwj3p6-CTD2UajfHGEFiLKueYbRxKDzHG6cQBORHoixHpY0xTnKw\",\r\n \"userName\": \"Vishal Batawale\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJwZXZZZs3v7F1jka5nAidJzvdURhJ759eSuzxAk=mo\",\r\n \"date\": \"2021-10-03T19:30:20.424Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFa76S49HuppHaOZk0PRQJAithq_Qbwj3p6-CTD2UajfHGEFiLKueYbRxKDzHG6cQBORHoixHpY0xTnKw\",\r\n \"title\": null,\r\n \"text\": \"Nice\",\r\n \"replyDate\": \"2021-10-04T06:34:10.516Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEPeBDDs7PKrSi4-oaH0eT3kn_X-GdoLo8kZf0NAnzQcN_Xd4BOomDrujJD1aOzxqjV065VBLHUS7K81g\",\r\n \"userName\": \"Rishabh Shetty\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gjjaj3T-IFHaU85I3vP03F5weNxBTyhqOUl8BDgRQ\",\r\n \"date\": \"2021-10-03T18:23:31.714Z\",\r\n \"score\": 2,\r\n \"scoreText\": \"2\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEPeBDDs7PKrSi4-oaH0eT3kn_X-GdoLo8kZf0NAnzQcN_Xd4BOomDrujJD1aOzxqjV065VBLHUS7K81g\",\r\n \"title\": null,\r\n \"text\": \"I don't know if it's a technical issue or not ...but this app was working fine till I got my 1st dose...I have an appointment tomorrow and this app is showing some error to log me in...(no otp is been send to me for logging in)..\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_gps_tracking\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_strength_training\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_easy_to_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGrowobLxeTWdbcODjMPC1GsGgTbTumZOGGFwFipd8EFyU4CFzEcJ1tbsFNsySGT6hLtMoAMUhy_mqNfA\",\r\n \"userName\": \"Jayesh Sandim\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GgNf0y3Ym15B2A9DOokJYzguBZEF7o012C70s4ZDKg\",\r\n \"date\": \"2021-10-03T18:17:10.454Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGrowobLxeTWdbcODjMPC1GsGgTbTumZOGGFwFipd8EFyU4CFzEcJ1tbsFNsySGT6hLtMoAMUhy_mqNfA\",\r\n \"title\": null,\r\n \"text\": \"Worst app\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_real_time_following\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_tracking_weight\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_make_you_happy\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFJ5teLI0FwaB5PniCsyWSFea5n9ivZaHbE8KbdumVvlnZeBncFWmjH-Q-3casjLX1OOSx95WzM-Nf4wg\",\r\n \"userName\": \"Yash Gavitre.\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhX8pg0-Yp2cnRldgjIMIbmrBZ-9gIAy7mAG_FuRw\",\r\n \"date\": \"2021-10-03T18:05:54.100Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFJ5teLI0FwaB5PniCsyWSFea5n9ivZaHbE8KbdumVvlnZeBncFWmjH-Q-3casjLX1OOSx95WzM-Nf4wg\",\r\n \"title\": null,\r\n \"text\": \"As always government sucks and this app to not receiving OTP for vaccination status to update\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFxYiuuwLj8vZ45qCGN-MRqh6bw5PkgK2rZf6Vc3gK_YukhBj-l4RajvhlpzQoVdrBo2tqhKGvIXYsVEg\",\r\n \"userName\": \"chandu gadisetti\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gjz8ba6keXa22XHFxaFNE_mYMIVH2_VhHw6TILCSw\",\r\n \"date\": \"2021-10-03T17:32:03.572Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFxYiuuwLj8vZ45qCGN-MRqh6bw5PkgK2rZf6Vc3gK_YukhBj-l4RajvhlpzQoVdrBo2tqhKGvIXYsVEg\",\r\n \"title\": null,\r\n \"text\": \"గుడ్ సర్వీస్\",\r\n \"replyDate\": \"2021-10-04T06:35:52.240Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFxqRWRCDtnsgQUF_PdI6OSSSnTWVkrEycO-qUD2RH-sOTlEBRBK_ndX_XgVej0WB2cnHulVAYcaIIxyQ\",\r\n \"userName\": \"Jatin Kashyap\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJzZLTsG1QB2Zotjymg70F99nRaY5K4Uqap40EP5=mo\",\r\n \"date\": \"2021-10-03T17:04:40.789Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFxqRWRCDtnsgQUF_PdI6OSSSnTWVkrEycO-qUD2RH-sOTlEBRBK_ndX_XgVej0WB2cnHulVAYcaIIxyQ\",\r\n \"title\": null,\r\n \"text\": \"Harekrishn prabhuji aap sadav sukhi or swasth rahe. Harekrishn.\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOENevb1q_s6AuZe0NUvesOsQIGuY86nOTimFVW7xQ60ZQIFIzNnXrcWSl2DHXDJLfwONNME2nyX3zax7g\",\r\n \"userName\": \"Irfan Tamboli\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gj7AEsFSD3UwoB_7Z91uctLh5-B9LoZPpDSCyujdQ\",\r\n \"date\": \"2021-10-03T16:35:36.540Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOENevb1q_s6AuZe0NUvesOsQIGuY86nOTimFVW7xQ60ZQIFIzNnXrcWSl2DHXDJLfwONNME2nyX3zax7g\",\r\n \"title\": null,\r\n \"text\": \"life\",\r\n \"replyDate\": \"2021-10-04T06:35:58.473Z\",\r\n \"replyText\": \"Thank you so much for your encouraging star ratings!\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOE-Sg8nxN4a2knH8N4nFkcSb900F_o-YW1u5PGWsm2MFae2XCtOUFPkCbblX2w00OkUu5z9kGndawnzDA\",\r\n \"userName\": \"Srinivas Bhat\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJz_EktIHo3IuVJPnD835GNknNaAEhrlsVGYnmCD=mo\",\r\n \"date\": \"2021-10-03T16:25:09.390Z\",\r\n \"score\": 3,\r\n \"scoreText\": \"3\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOE-Sg8nxN4a2knH8N4nFkcSb900F_o-YW1u5PGWsm2MFae2XCtOUFPkCbblX2w00OkUu5z9kGndawnzDA\",\r\n \"title\": null,\r\n \"text\": \"My status is shown as infected from past 4 month (120 days). Please correct it.\",\r\n \"replyDate\": \"2021-10-02T11:00:49.139Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_tracking_workouts\",\r\n \"rating\": 2\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_personal_coaching\",\r\n \"rating\": 2\r\n },\r\n {\r\n \"criteria\": \"vaf_strength_training\",\r\n \"rating\": 2\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFbtsKHBk8rELQALMCl79OYSCKJXkIk1PzScG74FWoecsa2VL7RSwILuwuQYlA8M0aUz9I7srkWbwtHuw\",\r\n \"userName\": \"Keerthana Keerthi\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhD6g6RFdLNuiQcGrQmdWMrKtq_80jgvpZXY1Vu3g\",\r\n \"date\": \"2021-10-03T16:13:57.482Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFbtsKHBk8rELQALMCl79OYSCKJXkIk1PzScG74FWoecsa2VL7RSwILuwuQYlA8M0aUz9I7srkWbwtHuw\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": \"2021-10-04T06:36:01.906Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEOpE16L-G5kweb5KcfC8Dp9xzOK6k3wJUN2EkjW_yFzl9DtVCuiTop9ZA1cCKuUgLahkaBCbFCSBJKWg\",\r\n \"userName\": \"Santosh Rehan\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJy0jxCp7rFtMYTEStRyEKWF_OG2jKkLtbVehxwu=mo\",\r\n \"date\": \"2021-10-03T16:10:48.726Z\",\r\n \"score\": 4,\r\n \"scoreText\": \"4\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEOpE16L-G5kweb5KcfC8Dp9xzOK6k3wJUN2EkjW_yFzl9DtVCuiTop9ZA1cCKuUgLahkaBCbFCSBJKWg\",\r\n \"title\": null,\r\n \"text\": \"Ys frequently using it\",\r\n \"replyDate\": \"2021-10-04T06:36:08.210Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_setting_goals\",\r\n \"rating\": 3\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_cardio_training\",\r\n \"rating\": 3\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_app_description\",\r\n \"rating\": 1\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEQX1Qb_IgMdxCkGtBOyVjzcIEHdePOtK4uptwIqnCG0fCN8Nj5nR60MSiVBWaGJISd1kptSm9jYhNP1A\",\r\n \"userName\": \"Jai Lal\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJyO88MLj1_ngEzPKCsViHCXEiKliq59jB1krbMg=mo\",\r\n \"date\": \"2021-10-03T15:37:51.738Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEQX1Qb_IgMdxCkGtBOyVjzcIEHdePOtK4uptwIqnCG0fCN8Nj5nR60MSiVBWaGJISd1kptSm9jYhNP1A\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": \"2021-10-04T06:36:11.938Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFdxKG-sRUChM508yTTL3nJTxCevujHMacDs1Wu1CHQc8TLWOXGje2Yr8B18CTOOTI31NJXGa9yMS2LTQ\",\r\n \"userName\": \"Rama Sankar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gjz7X5eL9U7sluGtw9UEg3APFbucKG6K1iyN05o1w\",\r\n \"date\": \"2021-10-03T15:17:53.930Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFdxKG-sRUChM508yTTL3nJTxCevujHMacDs1Wu1CHQc8TLWOXGje2Yr8B18CTOOTI31NJXGa9yMS2LTQ\",\r\n \"title\": null,\r\n \"text\": \"Ok\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_training_community\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_spend_more_time\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_real_time_following\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGvdVfeuHUg60EMP7tcPgX03ma911bq3hR9m-0B31Vx-qinMWHmX8s3q-EEafozIKTnRR4G6nUG6TKTRA\",\r\n \"userName\": \"Seetharamaiah Yakkala\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJxa2mgw5D_M8PgV_wNl1729EPWsfHsTdR7V2awS=mo\",\r\n \"date\": \"2021-10-03T14:22:44.579Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGvdVfeuHUg60EMP7tcPgX03ma911bq3hR9m-0B31Vx-qinMWHmX8s3q-EEafozIKTnRR4G6nUG6TKTRA\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": \"2021-10-04T06:36:16.676Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEOWGGSQeXyRgQ0UiKbstGvic2bu-YaMdLPtR4058GvslVVNJ0BGv8Vgu4MpNnJKCVjwgmL3BqPtfl1CA\",\r\n \"userName\": \"Subrata Das\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiPaPnC7CGr94pD3sSJM4URrJojNnXDL9tWRDwD\",\r\n \"date\": \"2021-10-03T14:16:37.389Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEOWGGSQeXyRgQ0UiKbstGvic2bu-YaMdLPtR4058GvslVVNJ0BGv8Vgu4MpNnJKCVjwgmL3BqPtfl1CA\",\r\n \"title\": null,\r\n \"text\": \"Update me this app\",\r\n \"replyDate\": \"2021-10-04T06:36:22.403Z\",\r\n \"replyText\": \"Thank you for your support\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFp5Wnp68ZsptqTF6VvKXwTMeFiv3IGWPmthuquIM2RZ04fAUPPci4g8c4NSoYseUg2-gJjBx2dbkbHzQ\",\r\n \"userName\": \"Lalu Sah\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GikyBngDfw1xssNDFZ383l8fwHlu9miEl0yXQnk\",\r\n \"date\": \"2021-10-03T13:35:24.833Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFp5Wnp68ZsptqTF6VvKXwTMeFiv3IGWPmthuquIM2RZ04fAUPPci4g8c4NSoYseUg2-gJjBx2dbkbHzQ\",\r\n \"title\": null,\r\n \"text\": \"Thanks you\",\r\n \"replyDate\": \"2021-10-04T06:36:27.816Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOH4LSpttPNl0W5uX_9fU148OvA4G_2BDLQ6pGXY4tbET5QO6V1-asOrSrZE5qysvzSQIx0JOORi5WunMQ\",\r\n \"userName\": \"Kamal Dua\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GgxdPdjl-_9vk1kpvKeQ-F0iyTeF1j9qxuir7HGFw\",\r\n \"date\": \"2021-10-03T13:08:01.158Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOH4LSpttPNl0W5uX_9fU148OvA4G_2BDLQ6pGXY4tbET5QO6V1-asOrSrZE5qysvzSQIx0JOORi5WunMQ\",\r\n \"title\": null,\r\n \"text\": \"How to change fixed +91 for mobile registration?\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_importing_recipes\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_training_community\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_negative_ads_impact\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGVtTLZTp30Eu-6CcqZg4eBsWNOQWBlhiklAKIEjrjkqyYtkOukNKFbbNlh9p7Ewi97Tmu7DmI9C-6BAA\",\r\n \"userName\": \"Yuvrajsinh Gohil\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJz3WkIROZ4TojR3pyaJqpmwRLQ1dPyBe3zuJflz=mo\",\r\n \"date\": \"2021-10-03T13:06:06.663Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGVtTLZTp30Eu-6CcqZg4eBsWNOQWBlhiklAKIEjrjkqyYtkOukNKFbbNlh9p7Ewi97Tmu7DmI9C-6BAA\",\r\n \"title\": null,\r\n \"text\": \"લક8હન..\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_negative_ads_impact\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_voice_coach\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_syncing_with_devices\",\r\n \"rating\": 3\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGKncIynL6KodmTt0zLzHQlF6uLdLsjPzpwGxxu-1WyZCJrKLCyGdpYeiPhev63ysA0KNqtF782gD2lBw\",\r\n \"userName\": \"Ravi Krishnamoorthy\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gjv9M3Kqlev-k_IYMX81VF8qcIZQHtLuWZIXklsNw\",\r\n \"date\": \"2021-10-03T13:04:54.624Z\",\r\n \"score\": 4,\r\n \"scoreText\": \"4\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGKncIynL6KodmTt0zLzHQlF6uLdLsjPzpwGxxu-1WyZCJrKLCyGdpYeiPhev63ysA0KNqtF782gD2lBw\",\r\n \"title\": null,\r\n \"text\": \"while asking for vaccination details there should be an option of \\\"OTHER\\\" instead of showing just 3 of covaxin, covishield and sputnik and I DON\\\"T KNOW...where in people like us who have taken pfizer don\\\"t have a choice to fill The app developer should look into it and modify the same\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": []\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGOoWrS8eFrSgMqPW5kcbKNmc3TeGaRvtIIvuHmGKKCgPflpzYl2aXbT1hTyVKbIzJtvgae2JMQxyRdAA\",\r\n \"userName\": \"Amarjit Randhawa\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GgSD0JsC78Zm4g9AEMVhJWINliyllSUcmGQcuvm\",\r\n \"date\": \"2021-10-03T12:58:54.729Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGOoWrS8eFrSgMqPW5kcbKNmc3TeGaRvtIIvuHmGKKCgPflpzYl2aXbT1hTyVKbIzJtvgae2JMQxyRdAA\",\r\n \"title\": null,\r\n \"text\": \"Nothing new.....only watch COVID effect details since 2 years\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_meet_expectations\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_training_plans\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_easy_to_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOH6cO7sy7HQNGqqXgIGIBsKhtO8XcTFfvcSpkEykPskb7bm_x-5s5PZn2wgeaiT7nwXdL8_3zZPXgGZVA\",\r\n \"userName\": \"Studyship With Aman\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjMPj9h5x_J0EB0oQRchWTW5mAKVwanz9mxGd4wsQ\",\r\n \"date\": \"2021-10-03T12:54:37.129Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOH6cO7sy7HQNGqqXgIGIBsKhtO8XcTFfvcSpkEykPskb7bm_x-5s5PZn2wgeaiT7nwXdL8_3zZPXgGZVA\",\r\n \"title\": null,\r\n \"text\": \"DIANA usaf Frffffda.\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_track_fitness_activities\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_voice_controls\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_real_time_following\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGAwk5H2KsNtbiCzngED5hqu8W9-7-NZdSGlt1XAU1AQN6A14Vys8n5zmSZO_PYV8XP3gd6pK5AqSGEuQ\",\r\n \"userName\": \"Ram Singh\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJzo53IEIzXVchcX3eOLMhjZ7xq_oh3WjfT_rIPP=mo\",\r\n \"date\": \"2021-10-03T12:35:07.430Z\",\r\n \"score\": 3,\r\n \"scoreText\": \"3\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGAwk5H2KsNtbiCzngED5hqu8W9-7-NZdSGlt1XAU1AQN6A14Vys8n5zmSZO_PYV8XP3gd6pK5AqSGEuQ\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": \"2021-10-04T06:36:48.305Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_disruptive_ads\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_track_fitness_activities\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_voice_controls\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEhzJ6yyxDzbLqrQA7rBYGokYBzd6WLu90IIaV66V9xpFYINyT_W0qHg3CccHsFDd1xnJUfsD_Kz5d9Cw\",\r\n \"userName\": \"Hetal Vaishnav\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Ggzfnk1oB5f-7Ymej5m8-bSTC_0vZx024GpJLCeadU\",\r\n \"date\": \"2021-10-03T12:20:06.175Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEhzJ6yyxDzbLqrQA7rBYGokYBzd6WLu90IIaV66V9xpFYINyT_W0qHg3CccHsFDd1xnJUfsD_Kz5d9Cw\",\r\n \"title\": null,\r\n \"text\": \"Ok\",\r\n \"replyDate\": \"2021-10-04T06:36:51.800Z\",\r\n \"replyText\": \"Thank you so much for your encouraging star ratings!\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_leaderboards\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_personal_coaching\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_smartwatch_support\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHTwXnZGlz0xZf5PcOxGn-c3XbYgfqs_3BdWbKPXAweNluicJN91kbOFgEcSsAmIlVDds2LIOe77P8W1w\",\r\n \"userName\": \"akash wanje\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiNncLfCTePOXgPG00PDQy_1uH3WQmRY1Kv4Az-bg\",\r\n \"date\": \"2021-10-03T12:07:59.645Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHTwXnZGlz0xZf5PcOxGn-c3XbYgfqs_3BdWbKPXAweNluicJN91kbOFgEcSsAmIlVDds2LIOe77P8W1w\",\r\n \"title\": null,\r\n \"text\": \"Nice\",\r\n \"replyDate\": \"2021-10-04T06:36:55.481Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\\n\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_gps_tracking\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_tracking_workouts\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_considerate_of_time\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGovy8bgPln-z2Lw07ymlTVkgnv-IjTxyA8v9ikEf9mMjZikhOo5_rfgZvzlktUWzCr0eTesSPYBva0VQ\",\r\n \"userName\": \"vitamin-al protein\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiiiWkkYBa2Cijn6RNnp8uvEo1rn68rGcghO9rhiQ\",\r\n \"date\": \"2021-10-03T12:00:52.576Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGovy8bgPln-z2Lw07ymlTVkgnv-IjTxyA8v9ikEf9mMjZikhOo5_rfgZvzlktUWzCr0eTesSPYBva0VQ\",\r\n \"title\": null,\r\n \"text\": \"I need your help ma'am / sir Even though I got vaccinated I don't receive any message and my vaccination certificate was not there in cowin I desperately need my vaccination certificate.\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_smart_scales\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_fitness_devices\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_voice_controls\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOG3I2c7twxRG3rNi7IqXFZYmwLNjlkH_rx44egPwoUN1TPnTIVo1SOs2-2ABP1a8elm1mFiCTU60SNEPA\",\r\n \"userName\": \"ratnamala kamble\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJzGx0c43FtkzSLMPbNIiSENaZ6LkTadY1SEU2o4=mo\",\r\n \"date\": \"2021-10-03T11:15:44.230Z\",\r\n \"score\": 3,\r\n \"scoreText\": \"3\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOG3I2c7twxRG3rNi7IqXFZYmwLNjlkH_rx44egPwoUN1TPnTIVo1SOs2-2ABP1a8elm1mFiCTU60SNEPA\",\r\n \"title\": null,\r\n \"text\": \"I am submitting the information but cant go to the next page by click on submit button..So I can't see tge status.\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGN_1bpqGgTaySnyHk0hZES4Kmsz88NixiQyLouMYJZZDEiT5CSJ8kfk1ebUJJkDMwvnCRUmoQgz-DvDg\",\r\n \"userName\": \"Amrito Sarkar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJyY5rqAFDZSdlIX4ZJbtOvHANkb4DA85JjIKTm_=mo\",\r\n \"date\": \"2021-10-03T10:59:07.284Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGN_1bpqGgTaySnyHk0hZES4Kmsz88NixiQyLouMYJZZDEiT5CSJ8kfk1ebUJJkDMwvnCRUmoQgz-DvDg\",\r\n \"title\": null,\r\n \"text\": \"Am\",\r\n \"replyDate\": \"2021-10-04T06:37:02.575Z\",\r\n \"replyText\": \"Thank you so much for your encouraging star ratings!\\n\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_tracking_weight\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_lockscreen_display\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_difficult_to_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHD0VqdHFTY62KNXBIWjcOFYDR5ISvhXjvLXRP519of6-JC_Wqn9V5S2jM4qWng8ZHv3Zz7CI6pHR9wyQ\",\r\n \"userName\": \"Mukesh prajapati\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gh9RGBSKr77kJWjRvGOfvdj12PYIPGk4OZ6noqpFn8\",\r\n \"date\": \"2021-10-03T10:32:55.245Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHD0VqdHFTY62KNXBIWjcOFYDR5ISvhXjvLXRP519of6-JC_Wqn9V5S2jM4qWng8ZHv3Zz7CI6pHR9wyQ\",\r\n \"title\": null,\r\n \"text\": \"I love my India\",\r\n \"replyDate\": \"2021-10-03T10:48:24.172Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_voice_coach\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_meet_expectations\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_lockscreen_display\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEROcdd4smy1E3usYan3Z9xEPJ-AudKjQ4cbuxTUU1Tjd6t5jzFbvRBn38vHiM0QGK483JTG26ONjfd9A\",\r\n \"userName\": \"Yashesh Joshi\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjBOz6qqXlHn66EBtT_pmHPrLkVsT36OYKhDc6mKQ\",\r\n \"date\": \"2021-10-03T08:43:52.353Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEROcdd4smy1E3usYan3Z9xEPJ-AudKjQ4cbuxTUU1Tjd6t5jzFbvRBn38vHiM0QGK483JTG26ONjfd9A\",\r\n \"title\": null,\r\n \"text\": \"This app is as big a show off as Modi. Utterly useless. You can't get a different mobile number verified. Tried almost 6-7 times. Got the OTP alright, but number not getting verified to download the certificate. DEVELOPERS: Fix it.\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_workout_diary\",\r\n \"rating\": 3\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_verbal_feedback\",\r\n \"rating\": 3\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_considerate_of_time\",\r\n \"rating\": 2\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEwcUWjjYHQe8nwWN2p6vPrANUdcGfBc6lHPavFBjsNfgZMUOENwOkGLwD3UxkK9HgXIt35L0mV8dScfg\",\r\n \"userName\": \"Milan shah\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhRrLQ8K8Z45Hv01h2-qnHcg0vucVz6n0ZJeaqUVA\",\r\n \"date\": \"2021-10-03T08:15:20.300Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEwcUWjjYHQe8nwWN2p6vPrANUdcGfBc6lHPavFBjsNfgZMUOENwOkGLwD3UxkK9HgXIt35L0mV8dScfg\",\r\n \"title\": null,\r\n \"text\": \"Doesn't allow us to register international numbets! The government of India wants anyone visiting India to use this app but on android phoes you can't change country code +44 and then add your number (code needs changing with warning saying that its being changed to an internationalnumber) or an internation. On iOS it allows country code change but no OTP is received (needs an international sms server). How can one help comply if they can' register. Please fix this for international visitors.\",\r\n \"replyDate\": \"2021-10-03T08:24:18.906Z\",\r\n \"replyText\": \"Dear Sir/Mam, Please send a screen shot of your issue to us at : support.aarogyasetu@gov.in Our team will assist you further.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_real_time_following\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_leaderboards\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_period_tracking\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOG8NNNWqPHxEov_XOGJQcttOzCfabCDVSqJ-zZRdV9rSJRJAiPo9PRGBTF9shAkkn4aftj0VvrXftZmcA\",\r\n \"userName\": \"Tulsi Devnath\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gg6QNUe8IltU8jOAVB4OSIirbe99iHbLjxw84th\",\r\n \"date\": \"2021-10-03T07:33:33.112Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOG8NNNWqPHxEov_XOGJQcttOzCfabCDVSqJ-zZRdV9rSJRJAiPo9PRGBTF9shAkkn4aftj0VvrXftZmcA\",\r\n \"title\": null,\r\n \"text\": \"Nic\",\r\n \"replyDate\": \"2021-10-03T08:23:13.699Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGN1f2b0K-yUrx42BQokrecWN1wHccNPGBVL_dZkhqodcJWKOESQg83MuvSSSiv5YJWUvCX23WIBoZEjQ\",\r\n \"userName\": \"KRISHAN KUMAR\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJy-oyT-HLx_vZ9SBtXvNBgT9YDIiKj6mLxxEsyi=mo\",\r\n \"date\": \"2021-10-03T07:25:44.677Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGN1f2b0K-yUrx42BQokrecWN1wHccNPGBVL_dZkhqodcJWKOESQg83MuvSSSiv5YJWUvCX23WIBoZEjQ\",\r\n \"title\": null,\r\n \"text\": \"Super\",\r\n \"replyDate\": \"2021-10-03T08:23:08.203Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_cardio_training\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_leaderboards\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_guide_exercise\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFWu_UlOYwUJN9P_9PcqMeg1xgE77q30HXpje8lau_EHmrN--2aCSYByLvSd4SnU6VKyYdwswbxFRyBnQ\",\r\n \"userName\": \"Boini Gani2778\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjWFHjLupa2YP2rooKhB7uc86tkRfILy8z_IbqOEA\",\r\n \"date\": \"2021-10-03T06:49:33.982Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFWu_UlOYwUJN9P_9PcqMeg1xgE77q30HXpje8lau_EHmrN--2aCSYByLvSd4SnU6VKyYdwswbxFRyBnQ\",\r\n \"title\": null,\r\n \"text\": \"Nice\",\r\n \"replyDate\": \"2021-10-03T06:59:47.944Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_disruptive_ads\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_difficult_to_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_smartwatch_support\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHTG34kTM6sygsqrNM-2OBEjCFfu-mj3NCKQajaR1_89IU8G0pIDiKMcXqSYx5rUW81vkYw6TRO-uxzyg\",\r\n \"userName\": \"satya narayan singh\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjaLkbSg_tDETPV1XVYpcKNgqZWfPbEkdSfawTcMA\",\r\n \"date\": \"2021-10-03T06:01:22.239Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHTG34kTM6sygsqrNM-2OBEjCFfu-mj3NCKQajaR1_89IU8G0pIDiKMcXqSYx5rUW81vkYw6TRO-uxzyg\",\r\n \"title\": null,\r\n \"text\": \"Excellent\",\r\n \"replyDate\": \"2021-10-03T06:06:17.123Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHAjLfwAliBakJelOp1Weep0UV8Id3AuIH98Cwc_KUi-_a-RG7CVkYfC4KrH4fOA-sz3XtWDx5WDP60jg\",\r\n \"userName\": \"Arjun Parmar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJzMu8r5SgjZU7BMkYqhqLjGlSwmtrgMEIvQdwG2=mo\",\r\n \"date\": \"2021-10-03T06:00:11.284Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHAjLfwAliBakJelOp1Weep0UV8Id3AuIH98Cwc_KUi-_a-RG7CVkYfC4KrH4fOA-sz3XtWDx5WDP60jg\",\r\n \"title\": null,\r\n \"text\": \"It is not downloading\",\r\n \"replyDate\": \"2021-10-03T06:06:21.651Z\",\r\n \"replyText\": \"Dear Sir/Mam, Please send a screen shot of your issue to us at : support.aarogyasetu@gov.in Our team will assist you further.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFucOQNTH2qkkV-SvM8WspKLcHRSWW4HIHVeo4ECfHuhmqnSECI0KEXRkGcUAhq4X1Rgj5sEXng42hEUA\",\r\n \"userName\": \"Pritam Pyare\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJzqw7DebK4QXmuD4XZYtM0Q1155z4iejK_6OS6m=mo\",\r\n \"date\": \"2021-10-03T05:52:20.658Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFucOQNTH2qkkV-SvM8WspKLcHRSWW4HIHVeo4ECfHuhmqnSECI0KEXRkGcUAhq4X1Rgj5sEXng42hEUA\",\r\n \"title\": null,\r\n \"text\": \"Ps\",\r\n \"replyDate\": \"2021-10-03T06:06:32.681Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFHQn05sCKXYqkHP6LTudihskfvS8ig6p-krBJF7GEwT9uvOp3GTGC2t0pGm1WK-odH74lYIViX81fLBQ\",\r\n \"userName\": \"FIRE WAR Gamer\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhWTKndYlBbtA_91jRcEslaRPmzXX6DXrgWEkV9\",\r\n \"date\": \"2021-10-03T05:50:57.568Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFHQn05sCKXYqkHP6LTudihskfvS8ig6p-krBJF7GEwT9uvOp3GTGC2t0pGm1WK-odH74lYIViX81fLBQ\",\r\n \"title\": null,\r\n \"text\": \"Shiva\",\r\n \"replyDate\": \"2021-10-03T06:06:37.900Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGdNp0qvBgsD-uLYAQdvRCFKT_jYg2gIkaZZJJoE2B8-XcrgH8Zkc4kMApaDvO5tAsGBeTHRVqo7Q3cGw\",\r\n \"userName\": \"A2Z ALL FOR YOU।।\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhDo_hlvUuY9yk-gbfs_VaaXB_daH8961xicgyH\",\r\n \"date\": \"2021-10-03T05:50:38.111Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGdNp0qvBgsD-uLYAQdvRCFKT_jYg2gIkaZZJJoE2B8-XcrgH8Zkc4kMApaDvO5tAsGBeTHRVqo7Q3cGw\",\r\n \"title\": null,\r\n \"text\": \"Good aap\",\r\n \"replyDate\": \"2021-10-03T06:07:03.375Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOH46PcYuGwlB8EJApZBi6FUVtKyONh1K_4OI_10DqFXNGe7hoXCFU-U7FMeOJWi-G1KAlMODnKWhLjgjQ\",\r\n \"userName\": \"Debashis Saha\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GgkHso8szPxJBkQPO3TIMc9VnbXQhloJYCCe-kTAg\",\r\n \"date\": \"2021-10-03T05:03:30.223Z\",\r\n \"score\": 3,\r\n \"scoreText\": \"3\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOH46PcYuGwlB8EJApZBi6FUVtKyONh1K_4OI_10DqFXNGe7hoXCFU-U7FMeOJWi-G1KAlMODnKWhLjgjQ\",\r\n \"title\": null,\r\n \"text\": \"When downloaded covid vaccination certificate in pdf format... Why it's not share to anyone ?pls solve....\",\r\n \"replyDate\": \"2021-10-03T05:44:18.155Z\",\r\n \"replyText\": \"Dear Sir/Mam, Please send a screen shot of your issue to us at : support.aarogyasetu@gov.in Our team will assist you further.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_importing_recipes\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_voice_coach\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_3rd_party_music\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHlRxYx5p3qOJbspExtPOkYFNXz4V306TSgedX_ozgaGgRezQkuMMS_YL7b3bL6gV27uFhIpXti6JwavA\",\r\n \"userName\": \"Hari Prasad\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhrEbsgsYmr-JE8wuskk41qNS_tA84IZqrZl52W2A\",\r\n \"date\": \"2021-10-03T04:54:03.285Z\",\r\n \"score\": 2,\r\n \"scoreText\": \"2\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHlRxYx5p3qOJbspExtPOkYFNXz4V306TSgedX_ozgaGgRezQkuMMS_YL7b3bL6gV27uFhIpXti6JwavA\",\r\n \"title\": null,\r\n \"text\": \"Ki ikkiu\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEdmk1Pz4pTQPb37cYwMpQyjRkY4FS-VzJo4uyH8y2lcZ_DPk5CVLGA1NpZNpABmwCxxxf5IDzba1zX0Q\",\r\n \"userName\": \"Arvind Kumar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJw0f5U0HZbFOpdNojwi8UAwUIcjs-9zVm33o06t=mo\",\r\n \"date\": \"2021-10-03T04:21:20.351Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEdmk1Pz4pTQPb37cYwMpQyjRkY4FS-VzJo4uyH8y2lcZ_DPk5CVLGA1NpZNpABmwCxxxf5IDzba1zX0Q\",\r\n \"title\": null,\r\n \"text\": \"👎👎 very bad\",\r\n \"replyDate\": \"2021-10-03T05:44:29.963Z\",\r\n \"replyText\": \"Dear Sir/Mam, Please send a screen shot of your issue to us at : support.aarogyasetu@gov.in Our team will assist you further.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHhpVuBpRXPdC3E0zQ8Otlg4aHVbdQAoCKlJXjaEzC99KrygKhwH5YJJnh_TXbOfrxk0Z31OM7z8_4pCg\",\r\n \"userName\": \"BRUNDABAN JENA\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJyMrIi2_bMiRHtYD_71ZzoRMhc3Tfhn8Yxot9tF=mo\",\r\n \"date\": \"2021-10-03T04:01:47.912Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHhpVuBpRXPdC3E0zQ8Otlg4aHVbdQAoCKlJXjaEzC99KrygKhwH5YJJnh_TXbOfrxk0Z31OM7z8_4pCg\",\r\n \"title\": null,\r\n \"text\": \"Indtall my arogya setuappin my device which drsapearef\",\r\n \"replyDate\": \"2021-10-03T05:21:18.275Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_period_tracking\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_personal_coaching\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_fitness_devices\",\r\n \"rating\": 3\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEd8CKxlRz00BKYipTuH21LmgTG5gwCSA0P1jJmJKmnB3YG0QYNuz3JNwkkHpQ2H6sdqUyb4mmwHqU58g\",\r\n \"userName\": \"tinku Singh\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJzGkZsqe5zI22H9YbfeIG7gFQvEJVRKMSH3EnPo=mo\",\r\n \"date\": \"2021-10-03T03:45:39.893Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEd8CKxlRz00BKYipTuH21LmgTG5gwCSA0P1jJmJKmnB3YG0QYNuz3JNwkkHpQ2H6sdqUyb4mmwHqU58g\",\r\n \"title\": null,\r\n \"text\": \"Very good app\",\r\n \"replyDate\": \"2021-10-03T05:21:24.226Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHBKpm_HWltf6PgZirnEkICoj049xLSa7ZDDhATMWDmaqr_UsfQMX5Pbqnf1zrMATSecXzbYPaxtlFeqQ\",\r\n \"userName\": \"gurudatt sunani\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJyAGSzXoooxOrN3w05LF6AZ15VwExOfKlfKPTlV=mo\",\r\n \"date\": \"2021-10-03T03:40:46.592Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHBKpm_HWltf6PgZirnEkICoj049xLSa7ZDDhATMWDmaqr_UsfQMX5Pbqnf1zrMATSecXzbYPaxtlFeqQ\",\r\n \"title\": null,\r\n \"text\": \"Total worst\",\r\n \"replyDate\": \"2021-10-03T05:45:16.501Z\",\r\n \"replyText\": \"Dear Sir/Mam, Please send a screen shot of your issue to us at : support.aarogyasetu@gov.in Our team will assist you further.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFiEn6ZP1z9ra7tqpYuX09tJDofy4MZlAjkP0MqnWj2feGcUBk5yGqcD2jzhPlPrO5qk3-reGqLybXvCw\",\r\n \"userName\": \"Kurban Shah\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJz7ffom_z2yWe4_iwSIIOxE9VySwWg6q9vewZAM=mo\",\r\n \"date\": \"2021-10-03T03:38:14.499Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFiEn6ZP1z9ra7tqpYuX09tJDofy4MZlAjkP0MqnWj2feGcUBk5yGqcD2jzhPlPrO5qk3-reGqLybXvCw\",\r\n \"title\": null,\r\n \"text\": \"6ஊய்67இ6உ2க்ய்ப்ய் ட்726உய்ஐ7ய்ஐஉய்6உஜ்55உய்5ய்5ட்எ ர்7ந்3\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHMVuqiY99U_4d2XlymT7ylazCZm1ASZkeGoqBrwZAUYyl-_pPVUJSROV1cSf-fVCOvchBOxXUl1XmPXQ\",\r\n \"userName\": \"Rakesh Rahi\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiifIlu_koZVq6-dIDD4u0mEQIL90gZH0WYZZJnRw\",\r\n \"date\": \"2021-10-03T03:08:53.937Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHMVuqiY99U_4d2XlymT7ylazCZm1ASZkeGoqBrwZAUYyl-_pPVUJSROV1cSf-fVCOvchBOxXUl1XmPXQ\",\r\n \"title\": null,\r\n \"text\": \"Excellent\",\r\n \"replyDate\": \"2021-10-03T05:21:34.658Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_guide_exercise\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_content_language\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_workout_diary\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEbLVB2s5V-tlOOrzgxrFw59PD_O6-rz6SDpa-y-SAoLL2OH6DerehjcQNzj_OZImBCFQrxXBeFPx8sug\",\r\n \"userName\": \"Jugal Kishor\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJxD5MclD1MZNLkHtdtPefYjxUtoFQu9vYBDzf8L=mo\",\r\n \"date\": \"2021-10-03T02:46:57.854Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEbLVB2s5V-tlOOrzgxrFw59PD_O6-rz6SDpa-y-SAoLL2OH6DerehjcQNzj_OZImBCFQrxXBeFPx8sug\",\r\n \"title\": null,\r\n \"text\": \"ओके\",\r\n \"replyDate\": \"2021-10-03T05:21:39.437Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_offline_viewing\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_workout_diary\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_app_description\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHii9YwQNeYP4caFLwBjQ_puadPiLVq1A2wjX_q5fd0-9LZRQUGNtwx0bfWFenloVx5O_vr9dhY_rYkpQ\",\r\n \"userName\": \"MANOJ KUMAR\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJxdrfsYvca-yfibGH3wGvlu8VRLQXRgd3wOWedT=mo\",\r\n \"date\": \"2021-10-03T02:42:04.712Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHii9YwQNeYP4caFLwBjQ_puadPiLVq1A2wjX_q5fd0-9LZRQUGNtwx0bfWFenloVx5O_vr9dhY_rYkpQ\",\r\n \"title\": null,\r\n \"text\": \"God for health.\",\r\n \"replyDate\": \"2020-08-15T15:07:02.842Z\",\r\n \"replyText\": \"If you like our app, please give us 5 star rating. Also, do recommend it to your friends, and don’t hesitate to shoot us a note at support.aarogyasetu@gov.in if you have any questions.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_difficult_to_use\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_track_fitness_activities\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_visually_good\",\r\n \"rating\": 1\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGblsnYSiWbK2UoonGM0SRTA-1eOPU5vZCJprkh2IJhFiyuGa70spRFiwlLZC1RWcIsuWmRUka4cnf6lA\",\r\n \"userName\": \"Bindash chhora\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiuQxxrr8H2r__t7b8u-mftul2IDbv0PjdBXavKgA\",\r\n \"date\": \"2021-10-03T02:19:22.890Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGblsnYSiWbK2UoonGM0SRTA-1eOPU5vZCJprkh2IJhFiyuGa70spRFiwlLZC1RWcIsuWmRUka4cnf6lA\",\r\n \"title\": null,\r\n \"text\": \"Perfect\",\r\n \"replyDate\": \"2021-10-03T05:21:54.464Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_deceptive_ads\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_gps_tracking\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_track_fitness_activities\",\r\n \"rating\": 1\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEStqfLkZXYHz3sCZGrvamCczNAKois_l5Rlk8FY8YfQ5IJpdAUbh_ZRpgv3DoguyunIIdFOvIVAgrQNw\",\r\n \"userName\": \"Nazir Shaikh\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJwmgXwliLft2ExQUg9PdN8yVjnOs6N-xVNUrphx=mo\",\r\n \"date\": \"2021-10-03T01:56:31.841Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEStqfLkZXYHz3sCZGrvamCczNAKois_l5Rlk8FY8YfQ5IJpdAUbh_ZRpgv3DoguyunIIdFOvIVAgrQNw\",\r\n \"title\": null,\r\n \"text\": \"Very nicely.\",\r\n \"replyDate\": \"2021-10-03T05:21:59.530Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFwOlxMyI4DjLqUho1A_E1GJg1WF4gWbzET21FOzwt87-jmaJ6cZrmdb46P4xU_vYyDo1prwOP3Frh-bA\",\r\n \"userName\": \"Sonu Rana\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJzYeaJ7OXig_ESJUZJH1ayIMDs-RNvrTvtaG8gU=mo\",\r\n \"date\": \"2021-10-03T01:45:45.529Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFwOlxMyI4DjLqUho1A_E1GJg1WF4gWbzET21FOzwt87-jmaJ6cZrmdb46P4xU_vYyDo1prwOP3Frh-bA\",\r\n \"title\": null,\r\n \"text\": \"This is best thanks devloper\",\r\n \"replyDate\": \"2021-10-03T05:22:24.251Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOE-JSaJ6KwMGf93Q0TFRQ9Omn8xmluEQdH1lIZGzuDZicJjA2P2o3t2tC82DXqTobuFG42ix829YjLeLA\",\r\n \"userName\": \"Tejaswini Singh\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GgmfjZkcOSp_WZA-Tc8zdsKfl2qx1eyCd3KQa4V\",\r\n \"date\": \"2021-10-03T01:44:29.160Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOE-JSaJ6KwMGf93Q0TFRQ9Omn8xmluEQdH1lIZGzuDZicJjA2P2o3t2tC82DXqTobuFG42ix829YjLeLA\",\r\n \"title\": null,\r\n \"text\": \"Aarogya Setu has really evolved over time, providing a lot of information in one app.\",\r\n \"replyDate\": \"2021-10-03T05:22:42.267Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFPzg0olzGGJ_xQt-Hm_uHpGeQM3YN1rqZ5wtQSTn9zqIIeEYe9TxiprTE9v8C-H1GWpj9HhIgFRrkZgA\",\r\n \"userName\": \"V NAIR\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhV3jm-DtcSVZ8gz2G2JS0C8ZUOrNd2r1BBiNjphg\",\r\n \"date\": \"2021-10-03T01:12:14.753Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFPzg0olzGGJ_xQt-Hm_uHpGeQM3YN1rqZ5wtQSTn9zqIIeEYe9TxiprTE9v8C-H1GWpj9HhIgFRrkZgA\",\r\n \"title\": null,\r\n \"text\": \"Great app for indian public service. Liked the interface along with its functionality.\",\r\n \"replyDate\": \"2021-10-03T05:22:53.760Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_gps_tracking\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_track_fitness_activities\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_voice_controls\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGatllHu8AMlNWiBjr99WSVcllrrFyVpgsqcrk7OnoK6pUVQxhcOU1a-sAsbyp-O9-88ft21JOzpiC3LQ\",\r\n \"userName\": \"Ankit yadav\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GixzTBCZZd4Qm88l8tIcKp79WEDXAi7SZIoqvGcCQ\",\r\n \"date\": \"2021-10-02T23:27:51.257Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGatllHu8AMlNWiBjr99WSVcllrrFyVpgsqcrk7OnoK6pUVQxhcOU1a-sAsbyp-O9-88ft21JOzpiC3LQ\",\r\n \"title\": null,\r\n \"text\": \"1 percentage\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHMgH_WCdpKsotPygdktBjA88QoGXBrY_E-un95pE1k2nET1xFrYeOUC6z-fwuwU5weI1m1cDz1-E-h5w\",\r\n \"userName\": \"Sharath chandra Thulluri\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJz6R8HoKdjammCNI-FYQw-aEMZHim7pOrsgB3JN=mo\",\r\n \"date\": \"2021-10-02T18:45:21.219Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHMgH_WCdpKsotPygdktBjA88QoGXBrY_E-un95pE1k2nET1xFrYeOUC6z-fwuwU5weI1m1cDz1-E-h5w\",\r\n \"title\": null,\r\n \"text\": \"Nice\",\r\n \"replyDate\": \"2021-10-03T05:23:19.908Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_meet_expectations\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_fitness_devices\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_difficult_to_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGW2kmIfPHqWSVic-wBzdb__Ixaxu7CVM5otWFpzahiDV_X2e41qNAEs9LdTodxrdtoKXSV1OwbaBDkQw\",\r\n \"userName\": \"Purnima Mandal\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjcTpmBCAjHhMfX8Kmy7ktIsfYSGdqCBsKmCGv2\",\r\n \"date\": \"2021-10-02T17:37:43.833Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGW2kmIfPHqWSVic-wBzdb__Ixaxu7CVM5otWFpzahiDV_X2e41qNAEs9LdTodxrdtoKXSV1OwbaBDkQw\",\r\n \"title\": null,\r\n \"text\": \"Excellent app.\",\r\n \"replyDate\": \"2021-10-03T05:23:27.550Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_offline_logging\",\r\n \"rating\": 2\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_tracking_weight\",\r\n \"rating\": 2\r\n },\r\n {\r\n \"criteria\": \"vaf_gps_tracking\",\r\n \"rating\": 1\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHfp2ZbI6RWQstQcI_vxemB1fugqTwPt7LHm6uI_iUHLxWBRp8drCp9oMIppJ6tEjrynMbxb_0sOl4RRg\",\r\n \"userName\": \"Praveenkumar M\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjXdZuFSy5Pk1W1JrjdeCznqzRNPj5tr2e_FHuV\",\r\n \"date\": \"2021-10-02T16:32:42.634Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHfp2ZbI6RWQstQcI_vxemB1fugqTwPt7LHm6uI_iUHLxWBRp8drCp9oMIppJ6tEjrynMbxb_0sOl4RRg\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": \"2021-10-03T05:23:41.184Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEJUQs9Ph5iJDvxFbniNVeTCd5XnxrtJ2xmRdihs-nj5TapRXvZMOmJmtBkRlSat0YcOX6JPLv5mMqeEw\",\r\n \"userName\": \"Bhavani Bhavani\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJxQzkxQIeTnzlosPHdVz9lMhYTd3I-ibf0O5Ujl=mo\",\r\n \"date\": \"2021-10-02T16:22:03.691Z\",\r\n \"score\": 4,\r\n \"scoreText\": \"4\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEJUQs9Ph5iJDvxFbniNVeTCd5XnxrtJ2xmRdihs-nj5TapRXvZMOmJmtBkRlSat0YcOX6JPLv5mMqeEw\",\r\n \"title\": null,\r\n \"text\": \"Super App\",\r\n \"replyDate\": \"2021-10-03T05:25:30.950Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGeJJr5E9j7DVR5nEXXkRKlt18NRTLSgGslZoqVgq4IDTLpFyVo855v2AvguqG8_2mOsMYmpF-RCdkC1A\",\r\n \"userName\": \"Navinbhai Prajapati\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjdRQhPnEbvuueOu4wSISxF8IXT-0bkFX1klla6\",\r\n \"date\": \"2021-10-02T15:35:29.706Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGeJJr5E9j7DVR5nEXXkRKlt18NRTLSgGslZoqVgq4IDTLpFyVo855v2AvguqG8_2mOsMYmpF-RCdkC1A\",\r\n \"title\": null,\r\n \"text\": \"Superb\",\r\n \"replyDate\": \"2021-10-03T05:25:59.640Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHgCUHAFXyr-JmfSbuot_hu1CCz5ftv8fvSVjUPPTFTvBN2BUSlP630NeoJjnFnNkkb3FGymeJEm2Dbkw\",\r\n \"userName\": \"ASK Rock\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gh-A2OTkaqrHUsZGzGwvkE0eQDyDCEp6vH-cFhXiw\",\r\n \"date\": \"2021-10-02T15:31:32.257Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHgCUHAFXyr-JmfSbuot_hu1CCz5ftv8fvSVjUPPTFTvBN2BUSlP630NeoJjnFnNkkb3FGymeJEm2Dbkw\",\r\n \"title\": null,\r\n \"text\": \"Nice app very good\",\r\n \"replyDate\": \"2021-10-03T05:26:28.187Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHkp7Lv68612K-pbJDQekQTBAm6ut3YixcfZ0h4V7jDPbfgTiNSBnQufYt3u79jfQaU0_Q9pcEBHBMKMA\",\r\n \"userName\": \"chandan raj kumar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiGWy8sCy479B08z0DOalsQr_d0rrsPnIxV-VAv\",\r\n \"date\": \"2021-10-02T15:25:07.631Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHkp7Lv68612K-pbJDQekQTBAm6ut3YixcfZ0h4V7jDPbfgTiNSBnQufYt3u79jfQaU0_Q9pcEBHBMKMA\",\r\n \"title\": null,\r\n \"text\": \"Niel Mammakammammakak. A maman a a. A naanna anana nnn hbb yhb. Hbbajja.ak..jkwowoomasm0lamammamma. .mammamakka a. Amammaa\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_track_fitness_activities\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_importing_recipes\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_guide_exercise\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOH7ZJ-1PX_Yq7SE56vd2Tx2rv6vszN7HWgPWlnxrqj08Vd745aze0Q7lz_RhOwzdFnkTVA-oianj1-Dkg\",\r\n \"userName\": \"kuldeep singh\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GgTtl1Gb-nvZbVTqdZAReluv-t_EMsGalLj1sJKrg\",\r\n \"date\": \"2021-10-02T14:40:06.810Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOH7ZJ-1PX_Yq7SE56vd2Tx2rv6vszN7HWgPWlnxrqj08Vd745aze0Q7lz_RhOwzdFnkTVA-oianj1-Dkg\",\r\n \"title\": null,\r\n \"text\": \"Nyc\",\r\n \"replyDate\": \"2021-10-03T05:26:37.413Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_inappropriate_ads\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_workout_diary\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_real_time_following\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGG9IcS1zXOooRMeZ1GRpDoqFnEzM8uOzpckuB9XRcQWEYQuVuFxWh7OCkK3H08dTURqq41jPqyzaAu5g\",\r\n \"userName\": \"Debojit Das\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GipXE10ysvF9rS0B_5ZWfY7sDADq0CTxI2HUuk_Nw\",\r\n \"date\": \"2021-10-02T14:24:05.958Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGG9IcS1zXOooRMeZ1GRpDoqFnEzM8uOzpckuB9XRcQWEYQuVuFxWh7OCkK3H08dTURqq41jPqyzaAu5g\",\r\n \"title\": null,\r\n \"text\": \"Same issue everytime... Error error error or error 😑\",\r\n \"replyDate\": \"2021-10-03T05:46:15.528Z\",\r\n \"replyText\": \"Dear Sir/Mam, Please send a screen shot of your issue to us at : support.aarogyasetu@gov.in Our team will assist you further.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFfSmLOC-In5csVZqg6Dif60yK7od49Ltfs6XwG4JIfddUlJxYjEbqqg2IVCOrGgPxKEVywseTtoQkNaQ\",\r\n \"userName\": \"RADHAKRISHNAN MANDANATH\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjX5BzyEJUSRvSSo5tWRYl0rPvrJs3eB_spM1rEbQ\",\r\n \"date\": \"2021-10-02T14:22:39.405Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFfSmLOC-In5csVZqg6Dif60yK7od49Ltfs6XwG4JIfddUlJxYjEbqqg2IVCOrGgPxKEVywseTtoQkNaQ\",\r\n \"title\": null,\r\n \"text\": \"Very user friendly\",\r\n \"replyDate\": \"2021-10-03T05:37:02.660Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_positive_impact\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_cardio_training\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_training_community\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFH2GdIzLUp62YV_75TkNwgQbAJlj7el1LCneFG8woKssnT0atUKAc7gfPFZRyOdESvus1xzxojuhLNEg\",\r\n \"userName\": \"Mohamed Farooklp\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhqLuFXuP6JjoySE7clA-DTeTe9kxcHb3w5a5Ww\",\r\n \"date\": \"2021-10-02T14:12:38.860Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFH2GdIzLUp62YV_75TkNwgQbAJlj7el1LCneFG8woKssnT0atUKAc7gfPFZRyOdESvus1xzxojuhLNEg\",\r\n \"title\": null,\r\n \"text\": \"Mot no\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_importing_recipes\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_strength_training\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_3rd_party_music\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEl8lCkOFuqNLCOSXbcYNLh7XZ_CW_IRuFS0rChj7uIks1RwnYj7xyDA-Bf-Bb6kH7yNyWYB2gU9NHZPA\",\r\n \"userName\": \"Dadabhai Deepanshu kumar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiYMKXzhamHKlSCZl3o1AxOU2i9o3GFjHPAqESHmA\",\r\n \"date\": \"2021-10-02T14:07:20.572Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEl8lCkOFuqNLCOSXbcYNLh7XZ_CW_IRuFS0rChj7uIks1RwnYj7xyDA-Bf-Bb6kH7yNyWYB2gU9NHZPA\",\r\n \"title\": null,\r\n \"text\": \"Super aap Nice aap\",\r\n \"replyDate\": \"2021-10-03T05:37:14.901Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_verbal_feedback\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_strength_training\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_tracking_weight\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHUAoEsCi1cZbPD45UhBz5gGuokb4qG24rZjQ2Hfo7xlUAKRqptB1ichQgfyFWShNIBi1Or2w0I5tU8Qg\",\r\n \"userName\": \"Ri technical\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gi2zomQaT7W9fMVFNtB6Tu88KIx5sACc4v10_mzZg\",\r\n \"date\": \"2021-10-02T13:11:17.749Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHUAoEsCi1cZbPD45UhBz5gGuokb4qG24rZjQ2Hfo7xlUAKRqptB1ichQgfyFWShNIBi1Or2w0I5tU8Qg\",\r\n \"title\": null,\r\n \"text\": \"Best\",\r\n \"replyDate\": \"2021-10-03T05:37:31.692Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_setting_goals\",\r\n \"rating\": 2\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_deceptive_ads\",\r\n \"rating\": 2\r\n },\r\n {\r\n \"criteria\": \"vaf_real_time_following\",\r\n \"rating\": 1\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEty29G7uDqrAq8SNBzHDV8bBFD1SDZFJYGCRaDTeVEQGapb6HSgBWw4FLipLRKUms1TfkQybHbXZwFzA\",\r\n \"userName\": \"Dnyaneshwar Rathod\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiBylBspLk6gh7WWD9RL10Qrgfvuztsix_2OLEz\",\r\n \"date\": \"2021-10-02T13:06:07.334Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEty29G7uDqrAq8SNBzHDV8bBFD1SDZFJYGCRaDTeVEQGapb6HSgBWw4FLipLRKUms1TfkQybHbXZwFzA\",\r\n \"title\": null,\r\n \"text\": \"Best app\",\r\n \"replyDate\": \"2021-10-03T05:37:44.972Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHsv0nyv2rQjQMIo8N6cN2DNRkZVJkOJmuZZJ-ALDfH23w-Hof9koduXks7ZshrpPx9E6GzCKFDtAcfKw\",\r\n \"userName\": \"Naresh Sachan\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjrDWx5w2s5o5pt14TmfExCHHOufxxxyPI6Hyen-g\",\r\n \"date\": \"2021-10-02T12:55:00.406Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHsv0nyv2rQjQMIo8N6cN2DNRkZVJkOJmuZZJ-ALDfH23w-Hof9koduXks7ZshrpPx9E6GzCKFDtAcfKw\",\r\n \"title\": null,\r\n \"text\": \"Trash\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHhzt810noALEWn8b-GtIKbdOrgpIzW5o0qTRkypxtqwMyy_FmCFhkbIu5RhF7FaGlokTQFgfIwdNb5rg\",\r\n \"userName\": \"Créépér Op\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GguftujmJmMIe20Xo7GHmitIbAhaWHZKEMooRlf_A\",\r\n \"date\": \"2021-10-02T12:00:00.866Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHhzt810noALEWn8b-GtIKbdOrgpIzW5o0qTRkypxtqwMyy_FmCFhkbIu5RhF7FaGlokTQFgfIwdNb5rg\",\r\n \"title\": null,\r\n \"text\": \"My 1st dose's message has been deleted for some reason 😓😓 is the message will be required for 2nd dose??\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_leaderboards\",\r\n \"rating\": 2\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_content_language\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_guide_exercise\",\r\n \"rating\": 3\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGD3JFkVKtK_UcvJb515qgO7xffngymj7F66kBXMuqAAx8w1tzh0Sz8qIDKEwkb8-Eqwzg5wh-IyLesZA\",\r\n \"userName\": \"Anurag Madan\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjI5nMkQykoUkG0z_jn1Tm6UCwoYVjpeJ_XZMin\",\r\n \"date\": \"2021-10-02T11:51:31.264Z\",\r\n \"score\": 2,\r\n \"scoreText\": \"2\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGD3JFkVKtK_UcvJb515qgO7xffngymj7F66kBXMuqAAx8w1tzh0Sz8qIDKEwkb8-Eqwzg5wh-IyLesZA\",\r\n \"title\": null,\r\n \"text\": \"It is not showing any vaccine. Plz do something about this..\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_smart_scales\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_importing_recipes\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_training_community\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFbwb5dGlsv1YBIGycTSF8Ci1PuhGE1qVxIXcAuJAPU9yx7COKstmACbnsQwJHR311WaxHVLFN5dQ7dLw\",\r\n \"userName\": \"Happy YouTuber\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhQhlKiK0Yrs9ZaFpFxKxQ0I9CNf-5-KPX4Xkhzgg\",\r\n \"date\": \"2021-10-02T11:38:50.874Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFbwb5dGlsv1YBIGycTSF8Ci1PuhGE1qVxIXcAuJAPU9yx7COKstmACbnsQwJHR311WaxHVLFN5dQ7dLw\",\r\n \"title\": null,\r\n \"text\": \"Bad experience\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEk_dTB5el4KxULMncBNeQ66zSEH8HD1B3S05bmOLEwgeJUpAglbttiLsGdcfCZcesMdTS04xrrLcC3Dg\",\r\n \"userName\": \"Prashant Rajput\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GhxrWkgfO_8VIyEm_Xm2epWpJVSOs4J621aDZ7VTw\",\r\n \"date\": \"2021-10-02T11:38:13.995Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEk_dTB5el4KxULMncBNeQ66zSEH8HD1B3S05bmOLEwgeJUpAglbttiLsGdcfCZcesMdTS04xrrLcC3Dg\",\r\n \"title\": null,\r\n \"text\": \"good\",\r\n \"replyDate\": \"2021-10-03T05:38:06.438Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOErLHLtFxP8rLzEKPoIibgKJW6-NJDKEX3K8eWw9R0EeU_md3WeATA8it323shHAELopQgmh2P1Wcyyzg\",\r\n \"userName\": \"abhishek shanker\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gg1W5My7fekZ4pNZFk3iM7kvy1vWDs8HbcEtJaMaA\",\r\n \"date\": \"2021-10-02T11:29:18.831Z\",\r\n \"score\": 4,\r\n \"scoreText\": \"4\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOErLHLtFxP8rLzEKPoIibgKJW6-NJDKEX3K8eWw9R0EeU_md3WeATA8it323shHAELopQgmh2P1Wcyyzg\",\r\n \"title\": null,\r\n \"text\": \"The recent update has fixed the issues most customers were facing on unable to authenticate with mobile. Upgrading the rating to 4 ad this is really a great initiative by the government but need to have more experienced technical teams to support such an important govt. pod of Applications\",\r\n \"replyDate\": \"2021-10-01T11:22:47.185Z\",\r\n \"replyText\": \"Dear Sir/Mam,\\nPlease send a screen shot of your issue to us at : support.aarogyasetu@gov.in\\nOur team will assist you further.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOF9Xh-aVKEqY4UPBDOed0QkaInu247Q79Y1ZcHtQ09N9mKsmxkjQ6P0l3bdo9MB_Ml-TEkX2IRr37IPMw\",\r\n \"userName\": \"Vikas Kantode\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjJCA6LSPkACmVsVRqEdmTRxkE3YS32hFoQ-hRvXA\",\r\n \"date\": \"2021-10-02T11:09:40.155Z\",\r\n \"score\": 4,\r\n \"scoreText\": \"4\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOF9Xh-aVKEqY4UPBDOed0QkaInu247Q79Y1ZcHtQ09N9mKsmxkjQ6P0l3bdo9MB_Ml-TEkX2IRr37IPMw\",\r\n \"title\": null,\r\n \"text\": \"Nice\",\r\n \"replyDate\": \"2021-10-02T11:10:59.416Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHdnBek0eaGPeDOhrJIDSoIqiy5TvXqpjfMFm8zgxyJYQ0lANyqVf_pbTUvvqXhHfcZRbaBwFEwBXuoRw\",\r\n \"userName\": \"Vivek Thakur1225\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gglw30omZ7dCQidWZhkWe06CXZsxD1HTSNGRVlz1jQ\",\r\n \"date\": \"2021-10-02T10:43:13.718Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHdnBek0eaGPeDOhrJIDSoIqiy5TvXqpjfMFm8zgxyJYQ0lANyqVf_pbTUvvqXhHfcZRbaBwFEwBXuoRw\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": \"2021-10-02T10:50:22.785Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFX-sp9jJDxVdbRv-T85etjgzbuEbAH2_RTn6uU1AJKPCCITK8zykbhnzsa_gMS6fsKYQ6a5KLrAstTnw\",\r\n \"userName\": \"Priyanshi Chaurasiya\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJzGXrcU19gXcwk-QCpAqf251qBHLz6yRppYXlGd=mo\",\r\n \"date\": \"2021-10-02T10:34:09.938Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFX-sp9jJDxVdbRv-T85etjgzbuEbAH2_RTn6uU1AJKPCCITK8zykbhnzsa_gMS6fsKYQ6a5KLrAstTnw\",\r\n \"title\": null,\r\n \"text\": \"Is the word best app\",\r\n \"replyDate\": \"2021-10-02T10:50:27.782Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHG9xeZlIClB4-drGi1ZxUvKfr7cgRMQ6kGNR8lMdqnv4-GiTadaHQASo1RtTFb8qQ5O9Rs4EVYZ3OTyg\",\r\n \"userName\": \"Chiru\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GgWJQN73vCpOZcC_l_7S8cS7wpcmusMVHDPGB9GRA\",\r\n \"date\": \"2021-10-02T10:07:11.698Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHG9xeZlIClB4-drGi1ZxUvKfr7cgRMQ6kGNR8lMdqnv4-GiTadaHQASo1RtTFb8qQ5O9Rs4EVYZ3OTyg\",\r\n \"title\": null,\r\n \"text\": \"Great but i have to register everytime....after claring\",\r\n \"replyDate\": \"2021-10-02T10:50:38.770Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_guide_exercise\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_gps_tracking\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_offline_viewing\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFrchuGC1JMVv06WQF7t2nQt74qOMvQOiXbxmqNGSYlIrQNotm3ul7AIbccgre9VuYOQzrE_2ZZgC5_Mw\",\r\n \"userName\": \"PAWAN SHARMA\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJwNa8F4hFtFLL2bq617mAkb1sNphsfM-wJe_b9r=mo\",\r\n \"date\": \"2021-10-02T09:32:09.298Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFrchuGC1JMVv06WQF7t2nQt74qOMvQOiXbxmqNGSYlIrQNotm3ul7AIbccgre9VuYOQzrE_2ZZgC5_Mw\",\r\n \"title\": null,\r\n \"text\": \"GOOD\",\r\n \"replyDate\": \"2021-10-02T10:50:32.293Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEZeJdYM_i1HW55FWI-D6tdr6TrKzYgmSi5Yla4auAFpR-aYAj9rO0axuxIny-Y6ry9aoYZSaykmpyqUw\",\r\n \"userName\": \"Gurram Prakash\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gi9253g4tJoNJtxflX2rqpZuo-xZjwuipOvsqmNww\",\r\n \"date\": \"2021-10-02T09:18:43.350Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEZeJdYM_i1HW55FWI-D6tdr6TrKzYgmSi5Yla4auAFpR-aYAj9rO0axuxIny-Y6ry9aoYZSaykmpyqUw\",\r\n \"title\": null,\r\n \"text\": \"Somebody registered from my number and vaccinted themselves. I have not shared any otp, but still they have used my number to vaccinate. When I called the helpline number about this issue, they are ridiculous, telling its normal and it's ok. Worst app\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOF2w1weFvxekylBOwpg8rOfm-WL8SSMq78mC1ld4iupgyMOzXur77hMdcwLBGIvmwtwkvUReENnSuKfjw\",\r\n \"userName\": \"Aamir Suhail\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiOiQiFPw8kg3Apxh2iaa8En3H7iJOHizCLYtQPiw\",\r\n \"date\": \"2021-10-02T09:12:46.416Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOF2w1weFvxekylBOwpg8rOfm-WL8SSMq78mC1ld4iupgyMOzXur77hMdcwLBGIvmwtwkvUReENnSuKfjw\",\r\n \"title\": null,\r\n \"text\": \"Very nice application\",\r\n \"replyDate\": \"2021-10-02T10:50:45.795Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGrB-qXYsxGdS2gyro2ZNS0SInxAeVeNqXX7KOKS5eOBANnSXIKA7cAHqyEybJu9tHg7fuPuip8xEDTaw\",\r\n \"userName\": \"Umananda Goswami\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GgGgzyAEJLTq4sBDXhJyXql5-I169ZCpIkTS-0w9g\",\r\n \"date\": \"2021-10-02T09:02:14.861Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGrB-qXYsxGdS2gyro2ZNS0SInxAeVeNqXX7KOKS5eOBANnSXIKA7cAHqyEybJu9tHg7fuPuip8xEDTaw\",\r\n \"title\": null,\r\n \"text\": \"Vaccine certificate is not downloaded when the Beneficiary ID is entered in the Arogya Setu app. Even if the mobile number is not registered, the certificate will be downloaded on entering the beneficiary ID. This administration should improve.\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEZOcxPR_qfQDFBKA68f6o6OSYpdz1EfnaKXrr4PdxBR9aZgGdNO7JznQN9F21B5ftwC9MSZi5hCurvyw\",\r\n \"userName\": \"chalu Rock\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJwRPc1Chot9KZd6Z7-Scislm6Xi8QtjGKFNpYdR=mo\",\r\n \"date\": \"2021-10-02T06:43:03.671Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEZOcxPR_qfQDFBKA68f6o6OSYpdz1EfnaKXrr4PdxBR9aZgGdNO7JznQN9F21B5ftwC9MSZi5hCurvyw\",\r\n \"title\": null,\r\n \"text\": \"chalu rock 12345678 sajid alam\",\r\n \"replyDate\": \"2021-10-02T07:01:58.151Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHj3AhY4Bin0Ago4uxtNhoqoB6omqDn5W387k3IyQqwYwr-tVJ58Fn9HwlNQ1HefRAd6zyeoKDEpe5CFw\",\r\n \"userName\": \"yash manpower solution\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJySbVikEco42mKL62CjoAZpUkM8FFx0xD9jMqsO=mo\",\r\n \"date\": \"2021-10-02T06:41:15.708Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHj3AhY4Bin0Ago4uxtNhoqoB6omqDn5W387k3IyQqwYwr-tVJ58Fn9HwlNQ1HefRAd6zyeoKDEpe5CFw\",\r\n \"title\": null,\r\n \"text\": \"Everytime I open my app it shows there is some error in login ,why it is showing like this .I m unable to download my certificate of vaccination .\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOG2KFF97I1tXmCDxQjRRxzuTvR-f7QI1d5apF2EmL3_quDak4fuupAJubCVes6P8rQNES2t_xioCgTwvw\",\r\n \"userName\": \"Nasruddin Ansari\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiP4uQNysZX7gnv0750_sPmFUHZ7ZCnehq3P4tK\",\r\n \"date\": \"2021-10-02T06:36:37.398Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOG2KFF97I1tXmCDxQjRRxzuTvR-f7QI1d5apF2EmL3_quDak4fuupAJubCVes6P8rQNES2t_xioCgTwvw\",\r\n \"title\": null,\r\n \"text\": \"amazg\",\r\n \"replyDate\": \"2021-10-02T07:02:05.230Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_tracking_workouts\",\r\n \"rating\": 3\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_positive_impact\",\r\n \"rating\": 2\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_smart_scales\",\r\n \"rating\": 1\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFj4K8xRNi9WhpvtsDYdO5e-OW5xTT-YvgAd4qYEaDihlGVX_eu4XOusy7blBmwTssBGix5MWXDCVAeMg\",\r\n \"userName\": \"Narendra Singh Choudhary\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjBUG9er_o8bA6iKPpufG0W8qKE_jKPnFxMuag2\",\r\n \"date\": \"2021-10-02T06:29:28.371Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFj4K8xRNi9WhpvtsDYdO5e-OW5xTT-YvgAd4qYEaDihlGVX_eu4XOusy7blBmwTssBGix5MWXDCVAeMg\",\r\n \"title\": null,\r\n \"text\": \"Ns\",\r\n \"replyDate\": \"2021-10-02T06:31:15.833Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_deceptive_ads\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_verbal_feedback\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_tracking_workouts\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFHc7xfw7Pri7SZRE8-X_nH6Fr5dknA3iueOOwRrR2sp6_Anb8CI6FCLVDYMQyGge0y68wL3jk4-AQ-tw\",\r\n \"userName\": \"Tamanna Shangari\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJw-uZDlKe3uPfCeILcXuwHsuJ8J19R0knrK3Hu0=mo\",\r\n \"date\": \"2021-10-02T06:26:36.911Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFHc7xfw7Pri7SZRE8-X_nH6Fr5dknA3iueOOwRrR2sp6_Anb8CI6FCLVDYMQyGge0y68wL3jk4-AQ-tw\",\r\n \"title\": null,\r\n \"text\": \"Good 👍\",\r\n \"replyDate\": \"2021-10-02T06:31:21.590Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_setting_goals\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_importing_recipes\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_positive_impact\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFXVHcrpmLhn-UkPocz5JiU2Cp2ab85c9M5DXW__myMl98fY4bw48GV_8CxVIXlhi76WRK-mDK3t-w-lg\",\r\n \"userName\": \"Viraj Raikar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Ghp7yowJh7i2GOGVb5zhQN8lMhw18MWVxHNFBN_\",\r\n \"date\": \"2021-10-02T06:02:38.415Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFXVHcrpmLhn-UkPocz5JiU2Cp2ab85c9M5DXW__myMl98fY4bw48GV_8CxVIXlhi76WRK-mDK3t-w-lg\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": \"2021-10-02T06:20:19.600Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEpaR5qrKGZajN1HcsWtgenhpe6aVqvtsxpSsiqiQ7klPBoBIE0o4MtuUHoBb97dA-qSFBMfF40dP_TIw\",\r\n \"userName\": \"Harendra Pal\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJx-8CIDravzbENaJ9Wdp6BVa_YW1dTebKgC_0Kf=mo\",\r\n \"date\": \"2021-10-02T05:39:28.882Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEpaR5qrKGZajN1HcsWtgenhpe6aVqvtsxpSsiqiQ7klPBoBIE0o4MtuUHoBb97dA-qSFBMfF40dP_TIw\",\r\n \"title\": null,\r\n \"text\": \"best and eaiset app language\",\r\n \"replyDate\": \"2021-10-02T05:48:01.270Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFDucWBhdzusMEO8d5A9opDk7h1--N_M6Vx2VRlRJHjm9cwWpsaOa9AvU29NlnYfVPv_mCmsdibqp8c8w\",\r\n \"userName\": \"Vipin Jain\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJxZr0breHD8rE402c9_PPJhjrh5BkvIeFFOC3Y-=mo\",\r\n \"date\": \"2021-10-02T05:32:52.935Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFDucWBhdzusMEO8d5A9opDk7h1--N_M6Vx2VRlRJHjm9cwWpsaOa9AvU29NlnYfVPv_mCmsdibqp8c8w\",\r\n \"title\": null,\r\n \"text\": \"Niether opening nor updating\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFn8BxdkwRaLi4giNBvWYjschadGm6ZS9nRA-3d2YCzgbpNTEZIoqG2k47V__4U8Zpkl6gcS8fNuezLmA\",\r\n \"userName\": \"Ali Ahamad\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJwXDgGjCra6JAfURS-ZSxFVgdPGCzHmU3tUE9Wu=mo\",\r\n \"date\": \"2021-10-02T05:26:46.690Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFn8BxdkwRaLi4giNBvWYjschadGm6ZS9nRA-3d2YCzgbpNTEZIoqG2k47V__4U8Zpkl6gcS8fNuezLmA\",\r\n \"title\": null,\r\n \"text\": \"Ok\",\r\n \"replyDate\": \"2021-10-02T05:48:10.676Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_personal_coaching\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_strength_training\",\r\n \"rating\": 1\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_creating_routes\",\r\n \"rating\": 1\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEQePRzKjewKHLodhkRyCgAYo54iIDMCOy2UL__GJyMbAH8WRZNLytAaeqftfoRL4aY7XaAKFPf8Cy6-g\",\r\n \"userName\": \"Babalu Dawar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJxtCe6ImXoMOq6Zty5d9qGVJs39BJgt2Qb3m7_y=mo\",\r\n \"date\": \"2021-10-02T05:24:25.507Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEQePRzKjewKHLodhkRyCgAYo54iIDMCOy2UL__GJyMbAH8WRZNLytAaeqftfoRL4aY7XaAKFPf8Cy6-g\",\r\n \"title\": null,\r\n \"text\": \"Bablu\",\r\n \"replyDate\": \"2021-10-02T05:48:16.125Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOF3CttMAx7sCFaR9qNAkkRwkLRu81BWWuc6HD4IxBHwXb3MX6DMh1HVJq6M6RbrrQWYDyad1qWgbP_pMA\",\r\n \"userName\": \"Aafreen R\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJyQpXkQH4baWNty5YxGwOSZPf7s9NeLy6bJxM_o=mo\",\r\n \"date\": \"2021-10-02T04:45:50.512Z\",\r\n \"score\": 4,\r\n \"scoreText\": \"4\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOF3CttMAx7sCFaR9qNAkkRwkLRu81BWWuc6HD4IxBHwXb3MX6DMh1HVJq6M6RbrrQWYDyad1qWgbP_pMA\",\r\n \"title\": null,\r\n \"text\": \"Ok.\",\r\n \"replyDate\": \"2021-10-02T05:12:20.816Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_deceptive_ads\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_voice_controls\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_easy_to_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOF0Ozjz5VUdZEWKLml2JoWzm5KW77pYvZchger6UGeuNJZllgpCJsJwfl8IeYXKW5s4k7MZjq4sJ1UnnQ\",\r\n \"userName\": \"Dilip Singh\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJwRMiYuqE_X3rempBNRtt0tVxSQczICJsIlRvLa=mo\",\r\n \"date\": \"2021-10-02T04:38:57.631Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOF0Ozjz5VUdZEWKLml2JoWzm5KW77pYvZchger6UGeuNJZllgpCJsJwfl8IeYXKW5s4k7MZjq4sJ1UnnQ\",\r\n \"title\": null,\r\n \"text\": \"Very good app\",\r\n \"replyDate\": \"2021-10-02T05:12:28.187Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.0.5\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOG1sF5Qq--qfNut8vmBFjhNHsl0KD7ntN-wTYUAvRcpUw4LBCbN4SBKhHiK_7UgFB9lMnNYkwHL4jVlJw\",\r\n \"userName\": \"Brijesha Makwana\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJxgZW6j8K0nFBnhyIRWP5LKgUh7cB1XAOUzulLI=mo\",\r\n \"date\": \"2021-10-02T04:30:06.928Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOG1sF5Qq--qfNut8vmBFjhNHsl0KD7ntN-wTYUAvRcpUw4LBCbN4SBKhHiK_7UgFB9lMnNYkwHL4jVlJw\",\r\n \"title\": null,\r\n \"text\": \"Very nice app\",\r\n \"replyDate\": \"2021-10-02T05:12:35.259Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFkudLN0yhe1KpJDGsSKs26eYaIlyI4Syp-VxBzHxjoKpvItqis5McfREwx9YPNoppEFOrR-Dg3N2nC0w\",\r\n \"userName\": \"deepak gupta\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gij1EFEmT2y6FYu5X5dngFJoafnt59lYILiDtGU\",\r\n \"date\": \"2021-10-02T04:24:50.310Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFkudLN0yhe1KpJDGsSKs26eYaIlyI4Syp-VxBzHxjoKpvItqis5McfREwx9YPNoppEFOrR-Dg3N2nC0w\",\r\n \"title\": null,\r\n \"text\": \"when i launch app...its ask to update app via a apk download and not through Google play store...any app update should process through google play only....please check...seems fishy apk\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": []\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGP8ZGn1xM-DeuMpyyTm2fF2iKZJvTNmhTSPZ0eNSS_ikzkoi6j44uSRu9yiW5GwhqHnBcc-LvMkGBX_A\",\r\n \"userName\": \"Madara Uchiha\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gjn7UYI3zUP9T2SmPv-MdEJ2_dHzd98jRpTDLSw\",\r\n \"date\": \"2021-10-02T03:42:08.832Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGP8ZGn1xM-DeuMpyyTm2fF2iKZJvTNmhTSPZ0eNSS_ikzkoi6j44uSRu9yiW5GwhqHnBcc-LvMkGBX_A\",\r\n \"title\": null,\r\n \"text\": \"Hahaha koi sence hai is baat ka ke ek app se ye log corona se bach jai ge\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGNCjBkIqwzXTd1e7isFQsdG_gZ3DywOiXECw-RokOqc7FtHaslfdK7AhoET_g_XFFyW3mOEQSyuEubIg\",\r\n \"userName\": \"Jibin Thomas\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GjevTrjm09i7KdkyTTkyHjb01LOij61ls-BMK8Bz70\",\r\n \"date\": \"2021-10-02T03:38:09.993Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGNCjBkIqwzXTd1e7isFQsdG_gZ3DywOiXECw-RokOqc7FtHaslfdK7AhoET_g_XFFyW3mOEQSyuEubIg\",\r\n \"title\": null,\r\n \"text\": \"User friendly app\",\r\n \"replyDate\": \"2021-10-02T05:12:47.438Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOFFj5bAjqBBGRLWD6g02DZfORuiVFtjXYCZYp3VJmVBeoVZ0SQ2EygFgVEwawyHNk9CqPht-ogjRAwgbQ\",\r\n \"userName\": \"Anil Vishwakrma\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gijrt5G0Os7gETK8WQd3wVnGY0RbwIzN1ZnqBls\",\r\n \"date\": \"2021-10-02T03:35:41.820Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOFFj5bAjqBBGRLWD6g02DZfORuiVFtjXYCZYp3VJmVBeoVZ0SQ2EygFgVEwawyHNk9CqPht-ogjRAwgbQ\",\r\n \"title\": null,\r\n \"text\": \"🇮🇳\",\r\n \"replyDate\": \"2021-10-02T05:12:56.886Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHjxxGuHiKq9Dt7vyCgjq2LFSiAfameHbUm36kzGDM9vAwAGqG44_fFb24W3VOSddvLgF5k3yYvWZ-OvA\",\r\n \"userName\": \"Dhruv J\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJz1jM7Qx1iVt5nYlNJ47xp1BDizF35SzTSne7I6=mo\",\r\n \"date\": \"2021-10-02T03:35:35.465Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHjxxGuHiKq9Dt7vyCgjq2LFSiAfameHbUm36kzGDM9vAwAGqG44_fFb24W3VOSddvLgF5k3yYvWZ-OvA\",\r\n \"title\": null,\r\n \"text\": \"Nice\",\r\n \"replyDate\": \"2021-10-02T05:13:06.558Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_verbal_feedback\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_training_community\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_guide_exercise\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEm01FLwa7Mr2oOqlEEq6cANtmfV4MkLh-vb6BFHlgfmm32MNu9lCslbthkNaqOMbkTQstXNvaOmm848w\",\r\n \"userName\": \"Ratan Chinoy\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJy3Py46i3KAeqh8moGo5gIyvHTDMUL2_MSr8n3nSw=mo\",\r\n \"date\": \"2021-10-02T03:27:32.156Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEm01FLwa7Mr2oOqlEEq6cANtmfV4MkLh-vb6BFHlgfmm32MNu9lCslbthkNaqOMbkTQstXNvaOmm848w\",\r\n \"title\": null,\r\n \"text\": \"Best app\",\r\n \"replyDate\": \"2021-10-02T05:13:12.360Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEkH8gfROiRW8Rx9TR9BBtV1-r7fOlp21RpSNluAUr1elRfHBhSXCV18R-xTe2fFNYCmAGBfxj4DVHbzA\",\r\n \"userName\": \"GTX MARATHA\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiZM6blRu9el0NxgBHwhTxQVDljp-4O1BMfYTsudw\",\r\n \"date\": \"2021-10-02T03:23:09.996Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEkH8gfROiRW8Rx9TR9BBtV1-r7fOlp21RpSNluAUr1elRfHBhSXCV18R-xTe2fFNYCmAGBfxj4DVHbzA\",\r\n \"title\": null,\r\n \"text\": \"Amazing app i easliy able to book my grandmothers vaccine\",\r\n \"replyDate\": \"2021-10-02T05:10:37.992Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_spend_more_time\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_creating_routes\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_content_language\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHEFQR5twu8MtRe14XApElKGMT6kklEz_4Yhqnhwbtuymt7LmOQWTPEuL9Tj7QiWvWk1f3HKZHFtr4Pzg\",\r\n \"userName\": \"Sanjit Kumar Jha\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiAlVvJUVD8Z1dcHFr4oO3rsq8-cQ3JxkKkaRFV8w\",\r\n \"date\": \"2021-10-02T03:00:44.386Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHEFQR5twu8MtRe14XApElKGMT6kklEz_4Yhqnhwbtuymt7LmOQWTPEuL9Tj7QiWvWk1f3HKZHFtr4Pzg\",\r\n \"title\": null,\r\n \"text\": \"Very useful\",\r\n \"replyDate\": \"2021-10-02T05:10:44.800Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_syncing_with_devices\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_importing_recipes\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_meet_expectations\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGwRaHaQmGUt-bWd4RNiVUN0LVmY6yfLr6pghNbKTlhhsFGbjgfZS7IDuoGWsuzO2aRYaYWELm5yhL3Ow\",\r\n \"userName\": \"Naveen Kumar\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gh9WiwynynV55123BYvjhMoPP4RRzQ-WnzoE_j6BA\",\r\n \"date\": \"2021-10-02T02:44:51.220Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGwRaHaQmGUt-bWd4RNiVUN0LVmY6yfLr6pghNbKTlhhsFGbjgfZS7IDuoGWsuzO2aRYaYWELm5yhL3Ow\",\r\n \"title\": null,\r\n \"text\": \"Not download to this app\",\r\n \"replyDate\": null,\r\n \"replyText\": null,\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHXlpvXsbBP5IJUfDX4bebQn0BAfcDSwVt6msLPHI479UxJ_OB16OgTRoFAblgt-ETL0wQjcYXGLFuT0Q\",\r\n \"userName\": \"Mayuri Shrikhande\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiKAwQnK6xYs9ZWMszNKrU21UiQQETwppcJ-gtE\",\r\n \"date\": \"2021-10-02T02:10:25.640Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHXlpvXsbBP5IJUfDX4bebQn0BAfcDSwVt6msLPHI479UxJ_OB16OgTRoFAblgt-ETL0wQjcYXGLFuT0Q\",\r\n \"title\": null,\r\n \"text\": \"I personally like this app...it works smoothly without any error...\",\r\n \"replyDate\": \"2021-10-02T05:10:56.900Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGjM9zQA7sbrW70dHhazbHqNi4t1yhnrbUhdnIjy0LjbFOL1lgq2Yg95KI0SYTkGWhpPNiN9n4vIqX6cw\",\r\n \"userName\": \"अभय यादव\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJzumXCdGssf8--FnSLloVdIcCYUFMMqVVNOOBXg=mo\",\r\n \"date\": \"2021-10-02T01:30:13.847Z\",\r\n \"score\": 1,\r\n \"scoreText\": \"1\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGjM9zQA7sbrW70dHhazbHqNi4t1yhnrbUhdnIjy0LjbFOL1lgq2Yg95KI0SYTkGWhpPNiN9n4vIqX6cw\",\r\n \"title\": null,\r\n \"text\": \"Abhay Yadav\",\r\n \"replyDate\": \"2021-10-02T05:11:08.474Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOEc-ihgnepy47prbw2WPBRhbi9XLpe1sDeImDT1rRBpNZmx0ZrwwmhvuU4UTIZjnMLriC24ia-tJcjcJQ\",\r\n \"userName\": \"Lisa Anto\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a/AATXAJx0qh0rtG43ctbZO4JrziqiAqBE7kXDqPaLzCzP=mo\",\r\n \"date\": \"2021-10-02T01:16:32.380Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOEc-ihgnepy47prbw2WPBRhbi9XLpe1sDeImDT1rRBpNZmx0ZrwwmhvuU4UTIZjnMLriC24ia-tJcjcJQ\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": \"2021-10-02T05:11:14.485Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_never_display_ads_experience\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_ease_of_use\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOGeUOidQYkby73e7JzunryXwa9y_Q8uj8hsGO7sSexkkYtlulbjUMb-LLTQTeb02Z4eQl55jgxRmccU3w\",\r\n \"userName\": \"Saksham Rakesh\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14Gix7wnZza3NTgEe-R0TYbJH7qeThtR3iA9FcKIH\",\r\n \"date\": \"2021-10-01T19:32:38.356Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOGeUOidQYkby73e7JzunryXwa9y_Q8uj8hsGO7sSexkkYtlulbjUMb-LLTQTeb02Z4eQl55jgxRmccU3w\",\r\n \"title\": null,\r\n \"text\": \"Good\",\r\n \"replyDate\": \"2021-10-02T05:11:26.447Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": null,\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_3rd_party_music\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_voice_coach\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_app_description\",\r\n \"rating\": null\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"gp:AOqpTOHujE-itAeBh3pXoCMBTtRcooQr-2LFnogexTji1slkJTfs8KTfGBgeF7ELqJkK4r0fE8nTh6gCsAAtDw\",\r\n \"userName\": \"Ram Chander\",\r\n \"userImage\": \"https://play-lh.googleusercontent.com/a-/AOh14GiCld4VZZGjrSgjW7XmWpeVxw3CtiLZoTchzGQn\",\r\n \"date\": \"2021-10-01T17:18:47.409Z\",\r\n \"score\": 5,\r\n \"scoreText\": \"5\",\r\n \"url\": \"https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&reviewId=gp:AOqpTOHujE-itAeBh3pXoCMBTtRcooQr-2LFnogexTji1slkJTfs8KTfGBgeF7ELqJkK4r0fE8nTh6gCsAAtDw\",\r\n \"title\": null,\r\n \"text\": \"Very nice app\",\r\n \"replyDate\": \"2021-10-02T05:12:00.765Z\",\r\n \"replyText\": \"Hi! We are glad that you like our Aarogya Setu App. We'd very much appreciate if you have any recommendations/suggestions for us. Do share it with your friends so that a greater number of citizens can register.\",\r\n \"version\": \"1.4.1\",\r\n \"thumbsUp\": 0,\r\n \"criterias\": [\r\n {\r\n \"criteria\": \"vaf_phase1_offline_logging\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_never_display_disruptive_ads\",\r\n \"rating\": null\r\n },\r\n {\r\n \"criteria\": \"vaf_phase1_nutrition_plans\",\r\n \"rating\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"nextPaginationToken\": \"CoEBCn8qbgo59_B7anb_a8q3mJ6WnsXPz8_Pz8_KzM_NyM-ex5nOxc7FiZLFy8jGzsfJxszIy8jMzMjNx8jJz__-EJYBIWO0yrn7G5MSMZS63DLG2jJXOUg1lACJlYQPUABaCwkctjxGeDzwhhADYN2b_-0FMg0KCwoAKI3UzozcqfMC\"\r\n }\r\n}" } ] @@ -1274,7 +1202,6 @@ { "listen": "test", "script": { - "id": "a3644c2b-2110-4275-9518-fdea75fe70ea", "exec": [ "\r", "pm.test(\"Validate the results array is present and contains at least one element\", function () {\r", @@ -1315,10 +1242,6 @@ } } ], - "id": "86522864-ba54-4453-bf41-f9c0b9f7aa7e", - "protocolProfileBehavior": { - "disableBodyPruning": true - }, "request": { "method": "GET", "header": [], @@ -1337,14 +1260,12 @@ { "key": "country", "value": "{{COUNTRY_CODE}}", - "type": "text", "description": "Optional - defaults to US; 2 letter country code", "disabled": true }, { "key": "language", "value": "{{LANGUAGE_CODE}}", - "type": "text", "description": "Optional - defaults to en; 2 letter language code", "disabled": true }, @@ -1352,7 +1273,6 @@ "key": "fullDetail", "value": "true", "description": "Optional - defaults to false; if true, an extra request will be made for every resulting app to fetch its full detail", - "type": "text", "disabled": true } ], @@ -1368,7 +1288,6 @@ }, "response": [ { - "id": "662e6ac8-cceb-462e-b4c4-ecdbbee91d39", "name": "Get Similar Apps", "originalRequest": { "method": "GET", @@ -1395,19 +1314,16 @@ "_postman_previewlanguage": null, "header": null, "cookie": [], - "responseTime": null, "body": " {\r\n \"results\": [\r\n {\r\n \"title\": \"EHTERAZ\",\r\n \"appId\": \"com.moi.covid19\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.moi.covid19\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/gZCsV0SrmqM-gl0dVIABAdxB6BsgwXqgBMRMFedLrFCwk90gS0XG_KiJfcVNWVqZvQ\",\r\n \"developer\": {\r\n \"devId\": \"Ministry Of Interior - Qatar\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Ministry%20Of%20Interior%20-%20Qatar\"\r\n },\r\n \"developerId\": \"Ministry+Of+Interior+-+Qatar\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"EHTERAZ to follow up on the latest updates of COVID-19 Coronavirus in Qatar\",\r\n \"scoreText\": \"4.4\",\r\n \"score\": 4.392011,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.moi.covid19\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.moi.covid19/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.moi.covid19/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.moi.covid19/reviews\"\r\n },\r\n {\r\n \"title\": \"UMANG India\",\r\n \"appId\": \"in.gov.umang.negd.g2c.international\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/in.gov.umang.negd.g2c.international\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/wDdkteeV-OX38u9FDCLZ3xgHkz8zsXSMC3usDQ1GbNYOam5XUIXJPxgB3GIBZFyF7Y60\",\r\n \"developer\": {\r\n \"devId\": \"MeitY, Government Of India\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/MeitY%2C%20Government%20Of%20India\"\r\n },\r\n \"developerId\": \"MeitY,+Government+Of+India\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Unified Mobile Application for New-age Governance\",\r\n \"scoreText\": \"3.4\",\r\n \"score\": 3.43,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=in.gov.umang.negd.g2c.international\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/in.gov.umang.negd.g2c.international/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/in.gov.umang.negd.g2c.international/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/in.gov.umang.negd.g2c.international/reviews\"\r\n },\r\n {\r\n \"title\": \"BeAware Bahrain\",\r\n \"appId\": \"bh.bahrain.corona.tracker\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/bh.bahrain.corona.tracker\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/8TMJmaOvTfeuiP18b4KWIvOE4nykZpMT5DCHj_tgPagGwz1mAEYNtPj2TdUiUMizC1Wu\",\r\n \"developer\": {\r\n \"devId\": \"Information & eGovernment Authority\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Information%20%26%20eGovernment%20Authority\"\r\n },\r\n \"developerId\": \"Information+%26+eGovernment+Authority\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"BeAware Bahrain tracks active cases and provide contact tracing updates\",\r\n \"scoreText\": \"4.5\",\r\n \"score\": 4.4853725,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=bh.bahrain.corona.tracker\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/bh.bahrain.corona.tracker/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/bh.bahrain.corona.tracker/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/bh.bahrain.corona.tracker/reviews\"\r\n },\r\n {\r\n \"title\": \"Cricbuzz - Live Cricket Scores & News\",\r\n \"appId\": \"com.cricbuzz.android\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.cricbuzz.android\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/DR77tjTRELjjz08osmWgvIFyUvkbQItRf0II8r-eaIzLDOH9YGxSIfIrcToj3IOriyc\",\r\n \"developer\": {\r\n \"devId\": \"Cricbuzz.com\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Cricbuzz.com\"\r\n },\r\n \"developerId\": \"Cricbuzz.com\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Live Cricket Scores, Commentary, News and everything else related to Cricket.\",\r\n \"scoreText\": \"4.3\",\r\n \"score\": 4.252931,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cricbuzz.android\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.cricbuzz.android/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.cricbuzz.android/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.cricbuzz.android/reviews\"\r\n },\r\n {\r\n \"title\": \"COVID19 UAE\",\r\n \"appId\": \"com.knasirayaz.mohapcovid\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.knasirayaz.mohapcovid\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/SZE9vELT5UXw0HLhmMYdrmNwkwdn0Co48TGk8de8B-uFlsVH07WlHiX7BQM_lZEi1M8\",\r\n \"developer\": {\r\n \"devId\": \"Emirates Health Services\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Emirates%20Health%20Services\"\r\n },\r\n \"developerId\": \"Emirates+Health+Services\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Covid-19 stats and request for covid19 home vaccination for senior citizens\",\r\n \"scoreText\": \"4.0\",\r\n \"score\": 4.018109,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.knasirayaz.mohapcovid\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.knasirayaz.mohapcovid/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.knasirayaz.mohapcovid/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.knasirayaz.mohapcovid/reviews\"\r\n },\r\n {\r\n \"title\": \"Ajivar—Get to know yourself. Grow and thrive.\",\r\n \"appId\": \"com.ajivar.utajivar\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.ajivar.utajivar\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/aCdmBXeosKkttvRECGf9yIev8UmgbCGFloQymOidXethnfQsSZkhZa6x2iI8fBNPZxw\",\r\n \"developer\": {\r\n \"devId\": \"Ajivar, LLC\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Ajivar%2C%20LLC\"\r\n },\r\n \"developerId\": \"Ajivar,+LLC\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"An AI-driven journey of self-discovery. Gain emotional intelligence, resiliency.\",\r\n \"scoreText\": \"5.0\",\r\n \"score\": 5,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ajivar.utajivar\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.ajivar.utajivar/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.ajivar.utajivar/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.ajivar.utajivar/reviews\"\r\n },\r\n {\r\n \"title\": \"Cricbuzz - In Indian Languages\",\r\n \"appId\": \"com.cricbuzz.android.vernacular\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.cricbuzz.android.vernacular\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/LGAwt1hJ_6eK0Y4Vr9MgtGt6ne4tHhXHqUNf4x6OpuWVmF8xs1DxGJTh3PviEYB0wA\",\r\n \"developer\": {\r\n \"devId\": \"Cricbuzz.com\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Cricbuzz.com\"\r\n },\r\n \"developerId\": \"Cricbuzz.com\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Cricket Scores in Hindi, Tamil, Kannada, Telugu, Marathi, Bengali & English\",\r\n \"scoreText\": \"4.1\",\r\n \"score\": 4.052592,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cricbuzz.android.vernacular\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.cricbuzz.android.vernacular/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.cricbuzz.android.vernacular/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.cricbuzz.android.vernacular/reviews\"\r\n },\r\n {\r\n \"title\": \"Eyecon: Caller ID, Calls and Phone Contacts\",\r\n \"appId\": \"com.eyecon.global\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.eyecon.global\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/6NraEQmsYyRAg63A6CDxC6oBUFPskW9YPgQoKcji9H0gpv9cxXng5yohAJzo0ppu6g\",\r\n \"developer\": {\r\n \"devId\": \"Eyecon Phone Dialer & Contacts\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Eyecon%20Phone%20Dialer%20%26%20Contacts\"\r\n },\r\n \"developerId\": \"5892064210267994756\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Best caller ID! See photos of people calling & get a visual phone address book\",\r\n \"scoreText\": \"4.5\",\r\n \"score\": 4.5388894,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.eyecon.global\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.eyecon.global/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.eyecon.global/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.eyecon.global/reviews\"\r\n },\r\n {\r\n \"title\": \"Adobe Scan: PDF Scanner, OCR\",\r\n \"appId\": \"com.adobe.scan.android\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.adobe.scan.android\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/W8hcwa6JamuHhxDaPeyFx1_kIqBOYPMGrL4KH-YMMaGMt1UheJ1W3_OWAykE98_fxX1U\",\r\n \"developer\": {\r\n \"devId\": \"Adobe\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Adobe\"\r\n },\r\n \"developerId\": \"4734916851270416020\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Made a typo? Easily edit and improve your scanned notes.\",\r\n \"scoreText\": \"4.7\",\r\n \"score\": 4.6786637,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.adobe.scan.android\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.adobe.scan.android/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.adobe.scan.android/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.adobe.scan.android/reviews\"\r\n },\r\n {\r\n \"title\": \"ALHOSN UAE\",\r\n \"appId\": \"doh.health.shield\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/doh.health.shield\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/T0H_E0L6I5ws_7_XD1W6XE2_Jk10lLBGK-hAbM1iG07glDqhDOxRZoq4y03nwMr54wM\",\r\n \"developer\": {\r\n \"devId\": \"Ministry of Health and Prevention - UAE\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Ministry%20of%20Health%20and%20Prevention%20-%20UAE\"\r\n },\r\n \"developerId\": \"Ministry+of+Health+and+Prevention+-+UAE\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"ALHOSN UAE allows you to keep your COVID-19 results on your mobile device\",\r\n \"scoreText\": \"4.3\",\r\n \"score\": 4.282452,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=doh.health.shield\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/doh.health.shield/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/doh.health.shield/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/doh.health.shield/reviews\"\r\n },\r\n {\r\n \"title\": \"DubaiNow\",\r\n \"appId\": \"com.deg.mdubai\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/com.deg.mdubai\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/WucIhUvFdakh_gEO-UPpQjnXf3fTyXRc8aLHm8EI_K1JeX2A-raM5KBst08ZRFsOkw\",\r\n \"developer\": {\r\n \"devId\": \"Dubai Smart Government\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/Dubai%20Smart%20Government\"\r\n },\r\n \"developerId\": \"Dubai+Smart+Government\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"App is for individuals of Dubai, giving them easy access to government services\",\r\n \"scoreText\": \"4.2\",\r\n \"score\": 4.229607,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.deg.mdubai\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/com.deg.mdubai/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/com.deg.mdubai/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/com.deg.mdubai/reviews\"\r\n },\r\n {\r\n \"title\": \"Tabaud (COVID-19 KSA)\",\r\n \"appId\": \"sa.gov.nic.tabaud\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/apps/sa.gov.nic.tabaud\",\r\n \"icon\": \"https://play-lh.googleusercontent.com/woCQKXmq8-3us_tBqV8edoJs0s0KVAbOw9d6NVDgQ8-DqmV7diBR61r_z9EqjnBgcA\",\r\n \"developer\": {\r\n \"devId\": \"National Information Center\",\r\n \"url\": \"http://gplayapi.herokuapp.com/api/developers/National%20Information%20Center\"\r\n },\r\n \"developerId\": \"National+Information+Center\",\r\n \"priceText\": \"FREE\",\r\n \"price\": 0,\r\n \"free\": true,\r\n \"summary\": \"Tabaud, notifies and helps users during (COVID-19 in KSA).\",\r\n \"scoreText\": \"4.5\",\r\n \"score\": 4.5368533,\r\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=sa.gov.nic.tabaud\",\r\n \"permissions\": \"http://gplayapi.herokuapp.com/api/apps/sa.gov.nic.tabaud/permissions\",\r\n \"similar\": \"http://gplayapi.herokuapp.com/api/apps/sa.gov.nic.tabaud/similar\",\r\n \"reviews\": \"http://gplayapi.herokuapp.com/api/apps/sa.gov.nic.tabaud/reviews\"\r\n }\r\n ]\r\n}" } ] } ], - "id": "0815c58d-85ff-408a-a974-1c5510d37aee", "description": "Requests to get details of a particular app", "event": [ { "listen": "prerequest", "script": { - "id": "4124dc37-fb10-40aa-adc8-23909f2a4aaa", "type": "text/javascript", "exec": [ "" @@ -1417,7 +1333,6 @@ { "listen": "test", "script": { - "id": "2bfad4d5-04c5-4ff5-838e-283cadf33a47", "type": "text/javascript", "exec": [ "" @@ -1435,7 +1350,6 @@ { "listen": "prerequest", "script": { - "id": "9d06f46f-7b2b-4b23-9b70-7a45dc377395", "exec": [ "pm.collectionVariables.set(\"expectedResponseTime\", 20);" ], @@ -1445,7 +1359,6 @@ { "listen": "test", "script": { - "id": "7b9c1401-0870-4ff6-9e7f-37e32460bea2", "exec": [ "pm.test(\"Validate devId is not empty\", function () {\r", " const responseData = pm.response.json();\r", @@ -1492,10 +1405,6 @@ } } ], - "id": "fd05b516-30d2-4f9e-8085-f60142f7a496", - "protocolProfileBehavior": { - "disableBodyPruning": true - }, "request": { "method": "GET", "header": [], @@ -1520,21 +1429,18 @@ "key": "lang", "value": "en", "description": "Optional - defaults to en; 2 letter language code", - "type": "text", "disabled": true }, { "key": "country", "value": "IN", "description": "Optional - defaults to US; 2 letter country code", - "type": "text", "disabled": true }, { "key": "num", "value": "5", "description": "Optional - defaults to 60; Number of apps to retrieve", - "type": "text", "disabled": true } ], @@ -1550,7 +1456,6 @@ }, "response": [ { - "id": "327520e0-164a-48e2-be8f-3ee8cb2a517f", "name": "Get Apps by Developer - Google", "originalRequest": { "method": "GET", @@ -1575,21 +1480,18 @@ "key": "lang", "value": "en", "description": "Optional - defaults to en; 2 letter language code", - "type": "text", "disabled": true }, { "key": "country", "value": "IN", "description": "Optional - defaults to US; 2 letter country code", - "type": "text", "disabled": true }, { "key": "num", "value": "5", "description": "Optional - defaults to 60; Number of apps to retrieve", - "type": "text", "disabled": true } ], @@ -1636,18 +1538,15 @@ } ], "cookie": [], - "responseTime": null, "body": "{\n \"devId\": \"Google LLC\",\n \"apps\": [\n {\n \"title\": \"Google Photos\",\n \"description\": \"Google Photos is the home for all your photos and videos, automatically organized and easy to share.\\n\\n - “The best photo product on Earth” – The Verge\\n\\n - “Google Photos is your new essential picture app” – Wired\\n\\n\\n\\n The official Google Photos app is made for the way you take photos today and includes essential features like shared albums, automatic creations and an advanced editing suite. Additionally every Google Account comes with 15 GB of storage and you can choose to automatically back up all your photos and videos in High quality or Original quality. You can then access them from any connected device and on photos.google.com.\\n\\n\\n\\n With the official app, you get:\\n\\n\\n\\n 15 GB OF STORAGE: Back up 15 GB of photos and videos and access them from any device and photos.google.com—your photos are safe, secure, and private to you. All photos and videos you back up in High quality before June 1, 2021 will not count toward your Google Account storage.\\n\\n\\n\\n FREE UP SPACE: Never worry about running out of space on your phone again. Photos that are safely backed up can be removed from your device's storage in just a tap.\\n\\n\\n\\n AUTOMATIC CREATIONS: Bring photos to life with automatically created movies, collages, animations, panoramas, and more from your photos. Or easily create them yourself.\\n\\n\\n\\n ADVANCED EDITING SUITE: Transform photos with a tap. Use intuitive and powerful photo editing tools to apply content-aware filters, adjust lighting, and more.\\n\\n\\n\\n SHARING SUGGESTIONS: With smart sharing suggestions, giving your friends the photos you took of them is painless. And they can add their photos, too, so you’ll finally get the photos you’re actually in.\\n\\n\\n\\n FAST AND POWERFUL SEARCH: Your photos are now searchable by the people, places and things in them — no tagging required.\\n\\n\\n\\n LIVE ALBUMS: Select the people and pets you want to see and Google Photos will automatically add photos of them as you take them, no manual updates needed.*\\n\\n\\n\\n PHOTO BOOKS: Create a photo book in just minutes from your phone or computer. You can also see suggested photo books based on your best shots from a trip or period of time.*\\n\\n\\n\\n GOOGLE LENS: Search the hard-to-describe and get stuff done, right from a photo. Copy and translate text, identify plants and animals, add events to your calendar, find products online, and more.\\n\\n\\n\\n SEND PHOTOS IN SECONDS: Instantly share photos with any contact, email, or phone number.\\n\\n\\n\\n SHARED LIBRARIES: Grant a trusted person access to all of your photos.\\n\\n\\n\\n You can also upgrade storage for your Google Account, used for Original Quality photos and videos by subscribing to Google One. Subscriptions start at $1.99/month for 100 GB in the US. Pricing and availability can vary by region.\\n\\n - Google One Terms of Service: https://one.google.com/terms-of-service\\n\\n - One Google Pricing: https://one.google.com/about\\n\\n\\n\\n For additional help visit https://support.google.com/photos\\n\\n\\n\\n *Face grouping, live albums and photo books are not available in all countries.\",\n \"descriptionHTML\": \"Google Photos is the home for all your photos and videos, automatically organized and easy to share.

- “The best photo product on Earth” – The Verge

- “Google Photos is your new essential picture app” – Wired



The official Google Photos app is made for the way you take photos today and includes essential features like shared albums, automatic creations and an advanced editing suite. Additionally every Google Account comes with 15 GB of storage and you can choose to automatically back up all your photos and videos in High quality or Original quality. You can then access them from any connected device and on photos.google.com.



With the official app, you get:



15 GB OF STORAGE: Back up 15 GB of photos and videos and access them from any device and photos.google.com—your photos are safe, secure, and private to you. All photos and videos you back up in High quality before June 1, 2021 will not count toward your Google Account storage.



FREE UP SPACE: Never worry about running out of space on your phone again. Photos that are safely backed up can be removed from your device's storage in just a tap.



AUTOMATIC CREATIONS: Bring photos to life with automatically created movies, collages, animations, panoramas, and more from your photos. Or easily create them yourself.



ADVANCED EDITING SUITE: Transform photos with a tap. Use intuitive and powerful photo editing tools to apply content-aware filters, adjust lighting, and more.



SHARING SUGGESTIONS: With smart sharing suggestions, giving your friends the photos you took of them is painless. And they can add their photos, too, so you’ll finally get the photos you’re actually in.



FAST AND POWERFUL SEARCH: Your photos are now searchable by the people, places and things in them — no tagging required.



LIVE ALBUMS: Select the people and pets you want to see and Google Photos will automatically add photos of them as you take them, no manual updates needed.*



PHOTO BOOKS: Create a photo book in just minutes from your phone or computer. You can also see suggested photo books based on your best shots from a trip or period of time.*



GOOGLE LENS: Search the hard-to-describe and get stuff done, right from a photo. Copy and translate text, identify plants and animals, add events to your calendar, find products online, and more.



SEND PHOTOS IN SECONDS: Instantly share photos with any contact, email, or phone number.



SHARED LIBRARIES: Grant a trusted person access to all of your photos.



You can also upgrade storage for your Google Account, used for Original Quality photos and videos by subscribing to Google One. Subscriptions start at $1.99/month for 100 GB in the US. Pricing and availability can vary by region.

- Google One Terms of Service: https://one.google.com/terms-of-service

- One Google Pricing: https://one.google.com/about



For additional help visit https://support.google.com/photos



*Face grouping, live albums and photo books are not available in all countries.\",\n \"summary\": \"The home for your memories. Relive, share, and organize your photos.\",\n \"installs\": \"5,000,000,000+\",\n \"minInstalls\": 5000000000,\n \"maxInstalls\": 7436931525,\n \"score\": 4.53431,\n \"scoreText\": \"4.5\",\n \"ratings\": 45725254,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photos/reviews\",\n \"histogram\": {\n \"1\": 2112951,\n \"2\": 915917,\n \"3\": 2213579,\n \"4\": 5667007,\n \"5\": 34815763\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://support.google.com/photos\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Photography\",\n \"genreId\": \"PHOTOGRAPHY\",\n \"icon\": \"https://play-lh.googleusercontent.com/ZyWNGIfzUyoajtFcD7NhMksHEZh37f-MkHVGr5Yfefa-IX7yj9SMfI82Z7a2wpdKCA\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/u4Z9_gyynlsX18UMmvJ91_bxWXFNrR3Szpan1tdRDqM7MNRNqvFp9-yCDioUBx2_iaE\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/B7z8ieNKe11vgpc58iyByVW4U3gehkcvumMySx343GEaYIdDHVvF6xaVk7BnjOfKVpc\",\n \"https://play-lh.googleusercontent.com/mCljRzshxcVeDnzKWegTXRNrGeqkD90x6fYLuWPxR1dB5IP_oef_uJBUVbH-voMmpq0\",\n \"https://play-lh.googleusercontent.com/plN6EETBW3D92BPX_H2s_yyOVfTe5PKYRoXPVNkkvNkq7CWdSfo-oallXFFjpkqcaQ\",\n \"https://play-lh.googleusercontent.com/wQY2XzwsUssOZzZ1h-UuRVzG_0ZXGwq_wMxkl_0XaxyxjcM3kJRex0fce0Im6h8sTw\",\n \"https://play-lh.googleusercontent.com/Fwo4YujFNSqgXKYZ1NxdwhW9vPn6m9ovtPE1kH-y_ufkAh43KB6BZ-0QDYCVuo0Gjyja\",\n \"https://play-lh.googleusercontent.com/icu-xI2JS4yJmx7hFWu40e4XP5IHe99ZRfs9sA-ewrtHkX04RGwnqt8nK-pe7nu4KTc\",\n \"https://play-lh.googleusercontent.com/gqZuXtWyDhmq6unoZYS1afaXmLTmMRdeYdTiIF3zy-yAbW8hG6v_lJG7PcG3v4YpVnc\",\n \"https://play-lh.googleusercontent.com/dQC8XlcQypDkMOH8svQdZk4W0_kX2EcSYpVMyVpGlOqbtICh1poHGXpwWL-b7cJc81s\",\n \"https://play-lh.googleusercontent.com/f2lmLck6FkTdIz8HUPvYFvFny63FoUjUF6Ce2KASEYR46f70VsiOzT3R-qd8YsFv0vHI\",\n \"https://play-lh.googleusercontent.com/Y4HrpmN0aFdob1BuT0JqM9BJQAmuSRGJ3Z5sHPSbasZ9OQTpui1ZFmm1iEtkSAPrug\",\n \"https://play-lh.googleusercontent.com/sZWuvya9Y6wVlkWkuKxsBft6TwtSGWB3TdIicEGbsigg9j9WhBq5jSOBsYxeC-NBMQ\",\n \"https://play-lh.googleusercontent.com/W2GpBKO3dl2Wk6pB68UCPLxGm6xEVpzoqosmMAFEwL9DsdWIs7wtQnSqR-sObivXZJs\",\n \"https://play-lh.googleusercontent.com/2ya4sF-3otJCTW9IxJxSSVaQq8lvbhMbTWOZV1dSm4FmqdwinYLYWbKYHDiN4vmXKus\",\n \"https://play-lh.googleusercontent.com/YSQImTKicGCSznhnFPnY20pledHjlsWliaN66-fWA8zx-DTDGA7xycuCFmGupKUkfiE\",\n \"https://play-lh.googleusercontent.com/NwjcfKRBD6OSD7LQDFeSPb_JEUvAj6v0jBP91rKT3dlxnbbMd_UQ260KmH8muK0dyAg\",\n \"https://play-lh.googleusercontent.com/Rg-7adH3-CYRY_RVN_UtgimVth695JI6nrDuC0ipxR2M0e3n8TEqrU-qRXeFFRdFaD4\",\n \"https://play-lh.googleusercontent.com/QNDVe65P33lrS_xCJy23yS3RxHPDEWv0OkuKnRSs5MTwcEjK_o9tTSQmMimd3tjaWQ\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"May 28, 2015\",\n \"updated\": 1661794332000,\n \"version\": \"VARY\",\n \"recentChanges\": \"We are introducing a new storage management tool to help you easily manage the photos that count toward your storage quota. This tool will surface photos or videos you might want to delete — like blurry photos, screenshots and large videos.\",\n \"comments\": [\n \"The app generally tries to be \\\"too smart\\\" with a bunch of \\\"helpful\\\" features that really just get in the way of usability. For example you're bombarded with highlights and editing suggestions. The AI also randomly picks out some \\\"interesting\\\" photos and makes them really big in the library view, but it does a really bad job of choosing those photos. Many of these there is no option to turn off. There is also an annoying amount of advertising to get you to buy canvases of your photos.\",\n \"I love the way it captures and saves all of my media and I don't have to worry about backing up or losing my device. I love the way you can make albums and sort out photos and various ways. The utilities allow you to make collages, movies, slideshows and so much more and share them easily. The way it does facial recognition and can search for individuals or pets or places or things is absolutely brilliant. Can't imagine it being much better actually.\",\n \"To be honest I only really use the app because it is there and already on the device, saving me the hassle of having to find a new one. The experience is somewhat frustrating, I have been trying to upload a handful of pictures to Google photos across 3 devices and it has not worked. One device said the pictures were backed up but they never showed on my account. It's so frustrating that one has to deal with so many issues just to upload photos.\",\n \"The Memories \\\"feature\\\" bloats the screen, cannot be removed, and will sometimes automatically play video if I accidentally open it. It seems like every update, there's a new \\\"feature\\\" introduced which serves only to make navigating the app more frustrating. I don't want the app to be organized by what it thinks I want to see. Make those \\\"features\\\" be something people can turn on if they need it, not something that is on by default and can never be removed.\",\n \"Love this app! Been using it for a decade. I've saved almost every collage and gif that the app makes automatically for you. They are beautiful. I love the folder options, especially the ability to create a folder and auto populate it with pictures of specific people, just by selecting other pictures of those people. Sharing folders with other individuals and groups is super easy. I have no complaints. Although I do wish I had more free storage space . Thank you.\"\n ],\n \"appId\": \"com.google.android.apps.photos\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photos\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.photos&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photos/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photos/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photos/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Chrome: Fast & Secure\",\n \"description\": \"Google Chrome is a fast, easy to use, and secure web browser. Designed for Android, Chrome brings you personalized news articles, quick links to your favorite sites, downloads, and Google Search and Google Translate built-in. Download now to enjoy the same Chrome web browser experience you love across all your devices.\\n \\n Browse fast and type less. Choose from personalized search results that instantly appear as you type and quickly browse previously visited web pages. Fill in forms quickly with Autofill.\\n \\n Incognito Browsing. Use Incognito mode to browse the internet without saving your history. Browse privately across all your devices.\\n \\n Sync Chrome Across Devices. When you sign into Chrome, your bookmarks, passwords, and settings will be automatically synced across all your devices. You can seamlessly access all your information from your phone, tablet, or laptop.\\n \\n All your favorite content, one tap away. Chrome is not just fast for Google Search, but designed so you are one tap away from all your favorite content. You can tap on your favorite news sites or social media directly from the new tab page. Chrome also has the “Tap to Search”- feature on most webpages. You can tap on any word or phrase to start a Google search while still in the page you are enjoying.\\n \\n Protect your phone with Google Safe Browsing. Chrome has Google Safe Browsing built-in. It keeps your phone safe by showing warnings to you when you attempt to navigate to dangerous sites or download dangerous files.\\n \\n Fast downloads and view web pages and videos offline Chrome has a dedicated download button, so you can easily download videos, pictures, and entire webpages with just one tap. Chrome also has downloads home right inside Chrome, where you can access all the content you downloaded, even when you are offline.\\n \\n Google Voice Search. Chrome gives you an actual web browser you can talk to. Use your voice to find answers on-the-go without typing and go hands free. You can browse and navigate quicker using your voice anywhere, anytime.\\n \\n Google Translate built-in: Quickly translate entire web pages. Chrome has Google Translate built in to help you to translate entire web to your own language with one tap.\\n \\n Smart personalized recommendations. Chrome creates an experience that is tailored to your interests. On the new tab page, you will find articles that Chrome selected based on your previous browsing history.\",\n \"descriptionHTML\": \"Google Chrome is a fast, easy to use, and secure web browser. Designed for Android, Chrome brings you personalized news articles, quick links to your favorite sites, downloads, and Google Search and Google Translate built-in. Download now to enjoy the same Chrome web browser experience you love across all your devices.

Browse fast and type less. Choose from personalized search results that instantly appear as you type and quickly browse previously visited web pages. Fill in forms quickly with Autofill.

Incognito Browsing. Use Incognito mode to browse the internet without saving your history. Browse privately across all your devices.

Sync Chrome Across Devices. When you sign into Chrome, your bookmarks, passwords, and settings will be automatically synced across all your devices. You can seamlessly access all your information from your phone, tablet, or laptop.

All your favorite content, one tap away. Chrome is not just fast for Google Search, but designed so you are one tap away from all your favorite content. You can tap on your favorite news sites or social media directly from the new tab page. Chrome also has the “Tap to Search”- feature on most webpages. You can tap on any word or phrase to start a Google search while still in the page you are enjoying.

Protect your phone with Google Safe Browsing. Chrome has Google Safe Browsing built-in. It keeps your phone safe by showing warnings to you when you attempt to navigate to dangerous sites or download dangerous files.

Fast downloads and view web pages and videos offline Chrome has a dedicated download button, so you can easily download videos, pictures, and entire webpages with just one tap. Chrome also has downloads home right inside Chrome, where you can access all the content you downloaded, even when you are offline.

Google Voice Search. Chrome gives you an actual web browser you can talk to. Use your voice to find answers on-the-go without typing and go hands free. You can browse and navigate quicker using your voice anywhere, anytime.

Google Translate built-in: Quickly translate entire web pages. Chrome has Google Translate built in to help you to translate entire web to your own language with one tap.

Smart personalized recommendations. Chrome creates an experience that is tailored to your interests. On the new tab page, you will find articles that Chrome selected based on your previous browsing history.\",\n \"summary\": \"Fast, simple, and secure. Google Chrome browser for Android phones and tablets.\",\n \"installs\": \"10,000,000,000+\",\n \"minInstalls\": 10000000000,\n \"maxInstalls\": 11678490797,\n \"score\": 4.148092,\n \"scoreText\": \"4.1\",\n \"ratings\": 40302139,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.android.chrome/reviews\",\n \"histogram\": {\n \"1\": 4588586,\n \"2\": 1729106,\n \"3\": 2811304,\n \"4\": 5169369,\n \"5\": 26003733\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://www.google.com/chrome/android\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/chrome/intl/en/privacy.html\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Communication\",\n \"genreId\": \"COMMUNICATION\",\n \"icon\": \"https://play-lh.googleusercontent.com/KwUBNPbMTk9jDXYS2AeX3illtVRTkrKVh5xR1Mg4WHd0CG2tV4mrh1z3kXi5z_warlk\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/WPIJiEaY1kOU3-zogfv11ILu-mCaKhdq7hy2LXZ7JoLFTqGW3ZUXpRCTM7_dvPuBgB0\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/zNteEAWnOwZ9rSewvLziSgcK-jApPMf3SouV8e0aaDpSq71IKa82_PSguI63CWEjV2M\",\n \"https://play-lh.googleusercontent.com/lMbdwtu9mb66J9xRxxYH9vtobiZl_cnGfnHhguDkKb9LxJQUAS_UtaYzI8K0NS5QftE\",\n \"https://play-lh.googleusercontent.com/y5GT4zTZ3YXHhv3QtBncGfY2pkhRMI2mKPbCZZFdt6TFWTze2cLXZyg7mB2LK0eFDi0\",\n \"https://play-lh.googleusercontent.com/U9XY-94HuDW-2cxBLFIhi36A4JRt9Ms6dY7ub0Rf3iemw3YQQCobsNauAqDPebdKhuWU\",\n \"https://play-lh.googleusercontent.com/MRZKshNGEi-wVk53EtE9bTp_I-9CgYcs-f_90AZSVEQpCcnTYV46IWSyekPJY25SZg\",\n \"https://play-lh.googleusercontent.com/-QHfi5H3KIRHqdoDCFDnUufTnXEBsEv3XVOBciwG3mbez3VlkLHeYzkyg2RPiFNm2w\",\n \"https://play-lh.googleusercontent.com/vOSF2p-5kGwniGEuEgHosf5OqpDpkgAbgvKSIeFbTQP7l9Lsil66JcBspO3GOgrIfB8\",\n \"https://play-lh.googleusercontent.com/dj-LDG9XEV8JwOCrd83jLE3zQ1SWEV3voBh5PpQp0vJrM_JTFcOq1Ll2mRb6Hws3wScI\",\n \"https://play-lh.googleusercontent.com/Xw_XXywJEKl4M07s5ypywlRXs0AvxN7z_UEFC6tKkouqHrfZhZOVjioia24l9FdoZtw\",\n \"https://play-lh.googleusercontent.com/rww2HBAUfiFAQkMJYXSCxPdyB6Rn5GQOP8AOQdff7MNE8tOwyI64zKv2nAy_GrzsxLE\",\n \"https://play-lh.googleusercontent.com/kF9KmUnlwtt9KYqa6AbF3BhwZp0v9K-4w6084QVVSY8AqL5ZQKC_kQ_WcCMX9hLxEYk\",\n \"https://play-lh.googleusercontent.com/uu_ARWvPuak3dYmbAigXQjQB0KuSRZUKc19uitq1LqZG7IqI3dcy7LOxZoNLQdDD7m0\",\n \"https://play-lh.googleusercontent.com/IfK_gtt2K5WNnQoxF--XaklYaPvgR4SGln9QXycCgeUeB3E_nYb8bzlnAv5rQjPhJZVr\",\n \"https://play-lh.googleusercontent.com/jEM-pd1SnU9jW5qtrsYT3v-6x0pDkZBuEdQ6keK9sA-zMvHUVlixu1ExOPaxe4l95u8\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Feb 7, 2012\",\n \"updated\": 1661877562000,\n \"version\": \"VARY\",\n \"recentChanges\": \"Thanks for choosing Chrome! This release includes stability and performance improvements.\",\n \"comments\": [\n \"Chrome is my go to; always will be. I've tried other browsers but none can, or do, compare. The browser is not only fast but boasts other features, such as: - page preview - import/export files, bookmarks, settings, accounts , passwords... even where you left off in a book you've been reading. - easy access to ALL of Google's very comprehensive programs, apps, and so-so much more... IF, by some odd set of circumstances, you have NOT used Chrome before l, then go check it out for yourself ‼️\",\n \"This is an extremely buggy browser to say a little bit. Because it's a Google product, it obviously tracks you even when it says it won't. It's ok to look at, but websites are slow to see and load. Samsung Browser is better than this, and I use it more! It's also a slow browser whether or not it's loading websites, and this gets in my way. Incognito Mode is a lie. Some websites--for no reason--look different after multiple, or no, uses on one day.\",\n \"I don't really want to switch because I've been settled in and know the service. However, the latter becomes less and less. Constant changes to features without warnings and bugs. Can't even do a clean install due to forced install. The app has become unattractive and undesirable to look at. Google, if you like money so much, just pay attention to the reviews and shape up.\",\n \"I'm close to giving you up on chrome. Getting tired of the page refreshing and losing my session/form data because of the stupid vertical overscroll feature which can't be turned off. also getting tired of the screen going blank occasionally when I visit certain websites, which requires force stopping and relaunching. looking for better alternatives.\",\n \"Pretty good. Can't play in multiple places at same time, so if I'm out listening on my phone and my kid pulls it up on the TV, mine gets paused. Wish the symbol for shuffle was more pronounced. It just goes from normal to bold. Took my old eyes a while to even catch it the first time. I also don't like that if you select a track from your Playlist that it turns shuffle off. If you put it on shuffle and your liked list, the algorithm will finally get down to looping about 6 songs. Work on that.\"\n ],\n \"appId\": \"com.android.chrome\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.android.chrome\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.android.chrome&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.android.chrome/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.android.chrome/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.android.chrome/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Drive\",\n \"description\": \"Google Drive, part of Google Workspace, is a safe place to back up and access all your files from any device. Easily invite others to view, edit, or leave comments on any of your files or folders.\\n\\nWith Drive, you can:\\n\\n• Safely store and access your files anywhere\\n• Quickly access recent and important files\\n• Search for files by name and content\\n• Share and set permissions for files and folders\\n• View your content on the go while offline\\n• Receive notifications about important activity on your files\\n• Use your device’s camera to scan paper documents\\n\\nGoogle Workspace subscribers have access to additional Drive functionality, including:\\n• Easily managing users and file sharing to help meet data compliance needs\\n• Sharing files and folders directly with groups or teams within your organization\\n• Creating a shared drive to store all of your team’s content\\n\\nLearn more about Google Workspace Drive: https://workspace.google.com/products/drive/\\n\\nLearn more about Google Apps update policy: https://support.google.com/a/answer/6288871\\n\\nGoogle accounts get 15GB of storage, shared across Google Drive, Gmail, and Google Photos. For additional storage, you can upgrade to Google Workspace or Google One as an in-app purchase. Subscriptions start at $1.99/month for 100 GB in the US, and can vary by region.\\n\\nGoogle Privacy Policy: https://www.google.com/intl/en_US/policies/privacy\\nGoogle Drive Terms of Service: https://www.google.com/drive/terms-of-service\\n\\nFollow us for more:\\nTwitter: https://twitter.com/googleworkspace\\nLinkedin: https://www.linkedin.com/showcase/googleworkspace\\nFacebook: https://www.facebook.com/googleworkspace/\",\n \"descriptionHTML\": \"Google Drive, part of Google Workspace, is a safe place to back up and access all your files from any device. Easily invite others to view, edit, or leave comments on any of your files or folders.

With Drive, you can:

• Safely store and access your files anywhere
• Quickly access recent and important files
• Search for files by name and content
• Share and set permissions for files and folders
• View your content on the go while offline
• Receive notifications about important activity on your files
• Use your device’s camera to scan paper documents

Google Workspace subscribers have access to additional Drive functionality, including:
• Easily managing users and file sharing to help meet data compliance needs
• Sharing files and folders directly with groups or teams within your organization
• Creating a shared drive to store all of your team’s content

Learn more about Google Workspace Drive: https://workspace.google.com/products/drive/

Learn more about Google Apps update policy: https://support.google.com/a/answer/6288871

Google accounts get 15GB of storage, shared across Google Drive, Gmail, and Google Photos. For additional storage, you can upgrade to Google Workspace or Google One as an in-app purchase. Subscriptions start at $1.99/month for 100 GB in the US, and can vary by region.

Google Privacy Policy: https://www.google.com/intl/en_US/policies/privacy
Google Drive Terms of Service: https://www.google.com/drive/terms-of-service

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/\",\n \"summary\": \"Store, access, and share securely with Google Drive, part of Google Workspace.\",\n \"installs\": \"5,000,000,000+\",\n \"minInstalls\": 5000000000,\n \"maxInstalls\": 8509851010,\n \"score\": 4.356258,\n \"scoreText\": \"4.4\",\n \"ratings\": 9382598,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs/reviews\",\n \"histogram\": {\n \"1\": 740224,\n \"2\": 260481,\n \"3\": 598399,\n \"4\": 1100775,\n \"5\": 6682690\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": true,\n \"IAPRange\": \"$0.99 - $1,024.00 per item\",\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://support.google.com/drive/?p=android_drive_help\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Productivity\",\n \"genreId\": \"PRODUCTIVITY\",\n \"icon\": \"https://play-lh.googleusercontent.com/t-juVwXA8lDAk8uQ2L6d6K83jpgQoqmK1icB_l9yvhIAQ2QT_1XbRwg5IpY08906qEw\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/xgNP7aXrUING2DXYKFZMwqnm8oVRi7zWDzUDNrCr_kplTtlDfb0ByFcRiEVvQuLGkQ\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/ifUBR1YkwzX9k0KgL_oCXepSGDArDh19fW1t_aotX92if5fUaO50GkgGh7Q5gNGavwWz\",\n \"https://play-lh.googleusercontent.com/RHA9uFvzrNwSnhQHBzt6Ll4Y_c1rU05tDLu6WfPMReETRhsib2FSsGDyBo4Ha-M5HkuR\",\n \"https://play-lh.googleusercontent.com/LEQI-eNj-tvx5GIACUn5Aki1UjJ_Ev8bSE8_Px5axJeBoE2R0KPDCEm0vw-BR7AjTw\",\n \"https://play-lh.googleusercontent.com/DG_BThhvD-teIwC1Nu0Sc36KD9YGzfD0szHT02JEjyj5oiQ5NWucClwQ6lvSdbrp5A\",\n \"https://play-lh.googleusercontent.com/X7DcCYKGU29xZGcDR08LZvz0TiTpajgomFNHlmkkgkCAEJIqZE8AEYSgNM8rlTNqQxk\",\n \"https://play-lh.googleusercontent.com/9p_SPkP12sQugP624S_ylBkezeKSs2tHWvUpjoSIr447DOQW6WU7CS3GwzvREFcTF4E\",\n \"https://play-lh.googleusercontent.com/POob9asYytjwo_qLIKeW-e3WIz_bmIwIMw4NFh7bH59tOSPyG1tAHn3zXXnScwP00zE\",\n \"https://play-lh.googleusercontent.com/PL6884fBfSKdnZJIcHGnCClryCOZyrMPU36vPDuzNkiyRQ8Go4AKH63_2KXO7pXCwQ\",\n \"https://play-lh.googleusercontent.com/I6BABIEdmMyrkkeMCb6ywDpwSK6nfWlE1i6UhDV6T51isYIEV8q4gCIp0KrhfUPq_U8\",\n \"https://play-lh.googleusercontent.com/4OJ_qIDnE06ZX7R-c7CFhTEX3qQv2iRyN_UPo83jVHb89RwTPIriD3PQOYhvImeZYHs\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Apr 27, 2011\",\n \"updated\": 1661189466000,\n \"version\": \"VARY\",\n \"recentChanges\": \"* In this release we are rolling out Material You design updates\",\n \"comments\": [\n \"I really like the previous version a lot better, due to the Album Art Covers not being blocked during playing audio or where you can touch minimize the playing screen to watch/see the Artwork of the music you're listening to. The new version blocks/dims down Artwork during playback with Album name showing twice on screen instead just once. Other than that, everything is perfect. Please bring back where you can enjoy your music with the art during playback like it used to be again. Thanks, John\",\n \"Unable to upload photos from mobile device. Not sure why...I can't upload any images from my phone or tablet to my Google drive. It's been like that for months that I'm aware of. Other people seem to have the same problem. But I can upload other forms of files (sheets, pdfs, word documents, etc.) I have to go to a computer and transfer everything to the computer in order to get images to upload. Once files are there, I can use the app *generally* easy.\",\n \"I've been recently having the \\\"synchronization error\\\" message. I've followed troubleshooting steps and tried reinstalling it, logging in and out, refreshing it manually, but the issue won't stop. Based on reviews, this is a universal problem rather than user-specific, and is either on Google's end or Android. It doesn't seem to be causing actual issues, but please investigate the cause.\",\n \"It has been months and I still can't upload multiple files despite all the suggestions to clear cache or reinstall the app. This app is functionally useless on my phone if I can't actually upload files to it, or have to do so one at a time. I like Drive as a storage device and love using it on my computer but shouldn't have to plug my phone into a computer and go through multiple screens to use it.\",\n \"Latest update constantly leaves \\\"synchronization issues\\\" and \\\"connection issues\\\" and doesn't load my files. I've reset the cache & data on the app which only serves as a temporary fix. The error reappears minutes later. Others have also mentioned this exact problem in the reviews. My settings/internet have not changed nor has this ever been a problem prior. There's a bug in the update, it's not something we can troubleshoot to permantly fix. It's a wonderful app, but this needs to be addressed.\"\n ],\n \"appId\": \"com.google.android.apps.docs\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.docs&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Gmail\",\n \"description\": \"The official Gmail app brings the best of Gmail to your Android phone or tablet with robust security, real-time notifications, multiple account support, and search that works across all your mail.\\n\\nWith the Gmail app you can:\\n• Automatically block more than 99.9 percent of spam, phishing, malware, and dangerous links from ever reaching your inbox\\n• Undo send, to prevent embarrassing mistakes\\n• Turn on Google Chat to connect, create and collaborate with others \\n• Get more done as a group in Spaces - a dedicated place for organizing people, topics, and projects\\n• Enjoy high quality video calling with Google Meet\\n• Respond to emails quickly with Smart Reply suggestions\\n• Switch between multiple accounts\\n• Get notified of new mail fast, with notification center, badge, and lock screen options\\n• Search your mail faster with instant results, predictions as you type, and spelling suggestions\\n• Organize your mail by labeling, starring, deleting, and reporting spam\\n• Swipe to archive/delete, to quickly clear out your inbox\\n• Read your mail with threaded conversations\\n• Auto-complete contact names as you type from your Google contacts or your phone\\n• Respond to Google Calendar invites right from the app\\n\\nGmail is part of Google Workspace, allowing you and your team to easily connect, create, and collaborate. You can:\\n• Connect with coworkers via Google Meet or Google Chat, send an invite in Calendar, add an action to your task list, and more without leaving Gmail\\n• Use suggested actions — like Smart Reply, Smart Compose, grammar suggestions, and nudges — to help you stay on top of work and take care of simple tasks, so you can be more efficient with your time\\n• Stay safe. Our machine learning models block more than 99.9% of spam, phishing, and malware from reaching our users\\n\\nLearn more about Google Workspace: https://workspace.google.com/products/gmail/\\n\\nFollow us for more:\\nTwitter: https://twitter.com/googleworkspace\\nLinkedIn: https://www.linkedin.com/showcase/googleworkspace\\nFacebook: https://www.facebook.com/googleworkspace/\",\n \"descriptionHTML\": \"The official Gmail app brings the best of Gmail to your Android phone or tablet with robust security, real-time notifications, multiple account support, and search that works across all your mail.

With the Gmail app you can:
• Automatically block more than 99.9 percent of spam, phishing, malware, and dangerous links from ever reaching your inbox
• Undo send, to prevent embarrassing mistakes
• Turn on Google Chat to connect, create and collaborate with others
• Get more done as a group in Spaces - a dedicated place for organizing people, topics, and projects
• Enjoy high quality video calling with Google Meet
• Respond to emails quickly with Smart Reply suggestions
• Switch between multiple accounts
• Get notified of new mail fast, with notification center, badge, and lock screen options
• Search your mail faster with instant results, predictions as you type, and spelling suggestions
• Organize your mail by labeling, starring, deleting, and reporting spam
• Swipe to archive/delete, to quickly clear out your inbox
• Read your mail with threaded conversations
• Auto-complete contact names as you type from your Google contacts or your phone
• Respond to Google Calendar invites right from the app

Gmail is part of Google Workspace, allowing you and your team to easily connect, create, and collaborate. You can:
• Connect with coworkers via Google Meet or Google Chat, send an invite in Calendar, add an action to your task list, and more without leaving Gmail
• Use suggested actions — like Smart Reply, Smart Compose, grammar suggestions, and nudges — to help you stay on top of work and take care of simple tasks, so you can be more efficient with your time
• Stay safe. Our machine learning models block more than 99.9% of spam, phishing, and malware from reaching our users

Learn more about Google Workspace: https://workspace.google.com/products/gmail/

Follow us for more:
Twitter: https://twitter.com/googleworkspace
LinkedIn: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/\",\n \"summary\": \"Connect, create, and collaborate with Gmail, part of Google Workspace.\",\n \"installs\": \"10,000,000,000+\",\n \"minInstalls\": 10000000000,\n \"maxInstalls\": 11340007920,\n \"score\": 4.230963,\n \"scoreText\": \"4.2\",\n \"ratings\": 11755143,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.gm/reviews\",\n \"histogram\": {\n \"1\": 1252247,\n \"2\": 424124,\n \"3\": 713151,\n \"4\": 1332398,\n \"5\": 8033185\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://support.google.com/mail/bin/topic.py?hl=en&topic=2451697&parent=2451730&ctx=topic\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Communication\",\n \"genreId\": \"COMMUNICATION\",\n \"icon\": \"https://play-lh.googleusercontent.com/KSuaRLiI_FlDP8cM4MzJ23ml3og5Hxb9AapaGTMZ2GgR103mvJ3AAnoOFz1yheeQBBI\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/bfpdXys_ABrZGPvu8M94gI9yGV7hvFFP11_-6bt6DSHlpowhdtCitbNrYoCECI3LCsE\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/G140UYq0jxTZs16SoHY5YIiE1weXSK3hTdOFEav2_ChL1NQDSDkxggH_IhKwRcW2Kg\",\n \"https://play-lh.googleusercontent.com/3Jv3n5Fr18SzBePoA2ygE3SAFJRGAB2QRrOGth_WCzE9Mko1AHLM9zK3p_fjOYTGovpt\",\n \"https://play-lh.googleusercontent.com/lFlrlVpZTWaaDXluQ3p6zmnZW-meQ15lT3WGuQ6kN70_286e_lEtY2oqBvvSGzonq8o\",\n \"https://play-lh.googleusercontent.com/LglVqyHLm_x5K8x3LjIHvkDKrwcWWg7kbrPCWj-vBEpopIE8ncW-cMNNPNmoKYSkVBk\",\n \"https://play-lh.googleusercontent.com/yqkwJ1pCGxgwFUiyrKc66wQgz9e_mOpGusoyz5SlX2cC_QNl7ZLDNfy31Q7pafvEfw\",\n \"https://play-lh.googleusercontent.com/xtQ4VHFvE4D5aICZyPwyuTqCW24NgKYCb19ZwoEnJukMZmwbW9dBCrFgHbHkvVGtZwHM\",\n \"https://play-lh.googleusercontent.com/fQpgTrc3ip6rhylIpPs58US4Xu4S0auaGfth6RvGwetoJJhHPXppjBZA4_9BvmGig3U\",\n \"https://play-lh.googleusercontent.com/UmrWkWJuxkJ15zPuy9cONXQ78pEGN3xyUgGOqDEiHHMA8M1nWTuyV2R_4rQfgXmFxScg\",\n \"https://play-lh.googleusercontent.com/1tDiGuIjVl6OwYnkBP_kR_cYRULWshmghVigtMOgEOv_MnUM5eEFR2bMdxB4aifZgv8\",\n \"https://play-lh.googleusercontent.com/oWiI2Qvz2kKawIWacHerSmaRJUHCBdsZ1jAzfwsWAlJ5LnPcTNZfLtjULqgGnXb-XA\",\n \"https://play-lh.googleusercontent.com/wGuYRmuLp8RamFL-02puNwQE5dCQ9hPr2ILAhjohUV3fXKlMQiPBg5iUUFMK99HO53Cl\",\n \"https://play-lh.googleusercontent.com/JSLLeBzyNZXpiql-ucTozUS8xply21CrO7sDwFETP3lvf1CNaY1-o0jfttH15VSXijBt\",\n \"https://play-lh.googleusercontent.com/sjNhn9osnHlWq02Mu2mQw-yStmqFll17Mw6Tg4isVVAMFyh-Erp4dfzAbNdIKN_7rQ\",\n \"https://play-lh.googleusercontent.com/FnNtGicVyHpM5Mpko4Mk93-qwcqCbAjvJpvJACM_WmyTObLNKhIgw8DWU5NwWK7Vhf4\",\n \"https://play-lh.googleusercontent.com/2afHVmt9XdI0pAeOrjVQqxJGij1B79EoRAiII5PvPTyIz_EQ3S1GflEYbvCzl-frgg\",\n \"https://play-lh.googleusercontent.com/Nz47WJZr-GkIci9qHOPCIxE-LZbqPtIdRJFYK9oKih2spP9LgE-gYtbgrppG4mG8x-4\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": true,\n \"released\": \"Sep 21, 2010\",\n \"updated\": 1661817658000,\n \"version\": \"VARY\",\n \"recentChanges\": \"Stay on top of the work that matters with Gmail, part of Google Workspace. With secure email as the foundation, you can also chat, collaborate with a group in spaces or make voice or video calls - all in one place.\",\n \"comments\": [\n \"I've tried every fix I can find, but I still cannot receive or send emails from the app. It's very frustrating. And yes, I am connected to the internet, and I have tried messing with IMAP settings, and I have tried messing with sync settings, and I have signed out and in, uninstalled and reinstalled, etc. Edit: clearing data worked! Thank you Google\",\n \"Why is it everytime I get an update, Google starts automatically sending things to the cloud again? I keep turning it off, you keep turning it on, filling the cloud, and then tell me I won't receive email. I don't want cloud service. I turned it off. Every time you turn it on I have all that data to delete. Again. Gets old Google. Please stop resetting our settings during update, you're breaking user experience.\",\n \"I have been using gmail since it came out, but for the past month, it has been constantly \\\"syncing\\\" and I have to restart my phone to get it to stop. Additionally, you can't filter messages from certain senders to their own folders without allowing the ai to filter it for you through the social media and adverts system, which is frequently wrong. This is becoming a problem.\",\n \"Search doesn't work. If I could attach a screen print I'd attach one that shows the search screen for \\\"John\\\", which I know is in several emails. All search shows in a round arrow that does not move and nothing else. UPDATE: Cannot set the app to \\\"All mail boxes\\\" by default. I have 3 accounts but when viewing mail, there's no way to tell which account received it. All in all a very poor app. Also, no way to delete more than one email at a time. What were they thinking?\",\n \"I wasn't getting my emails with attachment (like pictures, document) sent as they stay on que in the outbox. So frustrated as none of the things I did ever worked. My final step was to go the main app and I upgraded and it worked! That simple! But you may have to go to the outbox section and refresh it to make sure it goes through of didn't the first time! Now I can send anything with attachment and it worked like before!\"\n ],\n \"appId\": \"com.google.android.gm\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.gm\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.gm&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.gm/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.gm/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.gm/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google\",\n \"description\": \"The Google app keeps you in the know about things that matter to you. Find quick answers, explore your interests, and stay up to date with Discover. The more you use the Google app, the better it gets.\\n\\nSearch and browse:\\n- Nearby shops and restaurants\\n- Live sports scores and schedules\\n- Movies times, casts, and reviews\\n- Videos and images\\n- News, stock information, and more\\n- Anything you’d find on the web\\n\\nGet personalized updates in Discover*:\\n- Stay in the know about topics that interest you\\n- Start your morning with weather and top news\\n- Get updates on sports, movies, and events\\n- Know as soon as your favorite artists drop new albums\\n- Get stories about your interests and hobbies\\n- Follow interesting topics, right from Search results\\n\\nUnstable connection?\\n- Google will automatically optimize results to improve loading on bad connections\\n- If Google cannot complete a Search, you’ll get a notification with the search results once you regain connection\\n\\nLearn more about what the Google app can do for you: http://www.google.com/search/about\\nFor users of some Wear devices, the Google Assistant features on your watch are also provided by the Google app\\n*some features of Discover might not be available in all countries\",\n \"descriptionHTML\": \"The Google app keeps you in the know about things that matter to you. Find quick answers, explore your interests, and stay up to date with Discover. The more you use the Google app, the better it gets.

Search and browse:
- Nearby shops and restaurants
- Live sports scores and schedules
- Movies times, casts, and reviews
- Videos and images
- News, stock information, and more
- Anything you’d find on the web

Get personalized updates in Discover*:
- Stay in the know about topics that interest you
- Start your morning with weather and top news
- Get updates on sports, movies, and events
- Know as soon as your favorite artists drop new albums
- Get stories about your interests and hobbies
- Follow interesting topics, right from Search results

Unstable connection?
- Google will automatically optimize results to improve loading on bad connections
- If Google cannot complete a Search, you’ll get a notification with the search results once you regain connection

Learn more about what the Google app can do for you: http://www.google.com/search/about
For users of some Wear devices, the Google Assistant features on your watch are also provided by the Google app
*some features of Discover might not be available in all countries\",\n \"summary\": \"Find quick answers, explore your interests, and stay up to date with Discover.\",\n \"installs\": \"10,000,000,000+\",\n \"minInstalls\": 10000000000,\n \"maxInstalls\": 11614163166,\n \"score\": 4.261808,\n \"scoreText\": \"4.3\",\n \"ratings\": 24531043,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.googlequicksearchbox/reviews\",\n \"histogram\": {\n \"1\": 2758365,\n \"2\": 694210,\n \"3\": 1246339,\n \"4\": 2499784,\n \"5\": 17332300\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://www.google.com/search/about/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/aFWiT2lTa9CYBpyPjfgfNHd0r5puwKRGj2rHpdPTNrz2N9LXgN_MbLjePd1OTc0E8Rl1\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/U8zDyTkJcCQFtKDeu4x8M2_-zIcVuF53fzipTAqZ4nY-ojbAjTNYhS_Z8SVNNysE5A\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/oT_vIwyEtHJyN3ffrZE7IvdC94Rh592K2Q3dFnaPfJvu5rR7Q55uk4oU6NX2vKZdj-E\",\n \"https://play-lh.googleusercontent.com/1Ec6E-6nPcTn6OYzH9_P8sKupUsfJhbUd8M-iEOkzimaMr9CALI-KUpT2UyxHQUOPSY\",\n \"https://play-lh.googleusercontent.com/EC8jFwCBlogcBNipJNcMWH4pPPAi5JEWhf6cTI11q7yvGGmI84aTSvwW4sL9EFu_kw\",\n \"https://play-lh.googleusercontent.com/W2ugxAFmpfKvA5-hi6e-5H5gFUmWhlRGFSH1wCjwu5RsmkaTS6L8cgMkM0bA-XYW6w\",\n \"https://play-lh.googleusercontent.com/bgRGK-655dk6v0Oo30ZL8evw7wKwzOcTnn730XcTkUHnpHhci5T9VO-rnuiykASD_V8\",\n \"https://play-lh.googleusercontent.com/r_jVNA6gqh15woFyWzmHf1beYPMGlFHmfyUnf04ix0_ZxUK6jxYET5J_3czJNMH1kVA\",\n \"https://play-lh.googleusercontent.com/VoObMKgl_pZJ49jZW68AQ_9r8eBUC3Y0B9NAFq7x1vg_gYqpCMF-4End6lGWZxePcOU\",\n \"https://play-lh.googleusercontent.com/Rr4-nVqXINx6DpZcUCzWDyBfEQr1jOrcZVBCt-VzGLZzJ4vRuqgrZYuWTzQ4f8XKT_0\",\n \"https://play-lh.googleusercontent.com/rMqPuPu0CFj3eQRZJFur4zpnsMpQnGzxfvDxHLzvoUQQ-xekhUehxfFv6fdciNrOuOc\",\n \"https://play-lh.googleusercontent.com/oUC2k9ACTzQtgD2my4Q5hf1bBAAdr1nQvISh5XSD71qXVdvni1WE-adPSMQ7stRu88E\",\n \"https://play-lh.googleusercontent.com/NKSry3lCpv1ZPXcqqzMVJ_Oq_Man9HOzMyj71nUnclKRdRsls7HEarBtcsw-xlezkTI\",\n \"https://play-lh.googleusercontent.com/7j-Z__q771bZ4EdyvwWZDf9SZx07pbBjsesgBbEXfJL_AJDxvBLReHHq90rPiy5rEg\",\n \"https://play-lh.googleusercontent.com/zdCVUYKo-9DV0SPNg6sGZQvLDllW7PTzzr0I11oPHK1rNIIofW33VrlibC50V-1TpQ\",\n \"https://play-lh.googleusercontent.com/EkNqsz9DAXMKNhQYyF7r6K1sbEicbdNFsd_E3SSF_-COaAf8VhmGm-t228FHvtbyWTR4\",\n \"https://play-lh.googleusercontent.com/k-miKgTM_fXHyLzlxcS9lm-dGgRNkqWTRb08T7qwO6oZCxRk8uswOAK13AWEMMab7Q\",\n \"https://play-lh.googleusercontent.com/Ky-puv9Gr0-cQZaktWKFjb3tfuX0pCe5ozd4SMHd_mvm2vjxIYJMXbG-fau4rQRr4Q\",\n \"https://play-lh.googleusercontent.com/euyV1plJGhuoQrg1Cw_vYKjEzf6FUIvK0QA-5OFWVmtTYU4cmo07DfjwWHd0QPvp-S4\",\n \"https://play-lh.googleusercontent.com/pxe0Vp5SV_fPj7q9-6EZM67sy7dnxv5bfBA1_D6YXL_ALxQWvou8XjA83oxyWuXv-VLp\",\n \"https://play-lh.googleusercontent.com/cSNSZrQfII_6hRpAgiSc-RYFjbNkmzixs634mUb_YtQgzuOoV_yl86F56bKRzzwWP_E\",\n \"https://play-lh.googleusercontent.com/62i2ZvQTtPO704VNzpeDE_9mhM7GRQlXsp9MaZt48j5S5eeLbfty4Vxs_fZ6NnkMyUwH\",\n \"https://play-lh.googleusercontent.com/LXmQxRXL-TV0TELc6yB2z4pSrHiKOxE3UxUhH_XwHgTN2ZF3Z5yGg6f8T22IhSJyQIU\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": true,\n \"released\": \"Aug 12, 2010\",\n \"updated\": 1661931330000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• Use voice commands while navigating – even when your device has no connection. Try saying "cancel my navigation" "what's my ETA?" or "what's my next turn?"
• It's easier to access privacy settings from the homescreen. Just tap your Google Account profile picture.\",\n \"comments\": [\n \"Having issues with Reminders for the last 2 days. Every time I click \\\"done\\\" or \\\"1 hour\\\" in the notification window, it just takes me to the home screen but does not remove the reminder from the notifications! Is anyone else having this problem? I rely heavily on Reminders which is why this issue is extremely frustrating. Google, please resolve ASAP!!\",\n \"The Google app has become a bit cumbersome as it's a merger of many Google services. To me, one of the most important features is Assistant. However, in the last 6 months it has become increasingly quirky on the 2 devices I've used it. On a Nord N200, it would unreliably work on Android 12 while using Android Auto; to the point of being useless. On my Pixel 6, works much better but has now stopped speaking any time the screen is on or phone is unlocked (despite setting to speech to full).\",\n \"Very, very intrusive -- like most Google apps. While using a totally different browser, Google forces itself onto the screen pushing this app EVERY TIME I open the other browser. Selecting \\\"No thanks\\\" does nothing to prevent the same message from opening again and again. Thanks Google. Also, regardless of all settings, locations, etc, set to English it constantly opts for Spanish version of websites. Basura. Pure basura.\",\n \"Idk what the hell has happened in the last 3 weeks but Google voice has stopped working with my brand newcar. It computes what I'm saying then doesn't make my call, doesn't navigate to where I tell it (which is super annoying as Maps won't let me type the address while driving which DUH is dangerous hence why hands free is pretty important) AND even after doing the rundown of location accuracy settings cannot calculate my precise location unless connected to WIFI. This has never been a problem!\",\n \"I would love to give this app 5 stars. When it works, it's absolutely wonderful!! That is...when it opens. Mostly it does. However, often it doesn't. Why? I have no idea. If I go in and manually start the app at those times, it works fine. Often, it won't open when my lock screen is on. I have it set to open when my lock screen is on so...what the heck? If I'm driving I can't safely look down, find the app and manually open it so... I wish you would fix it so it works more consistently.\"\n ],\n \"appId\": \"com.google.android.googlequicksearchbox\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.googlequicksearchbox\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.googlequicksearchbox&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.googlequicksearchbox/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.googlequicksearchbox/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.googlequicksearchbox/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouTube Music\",\n \"description\": \"Connecting you to the world of music:\\n● More than 70 million official songs\\n● Music content including live performances, covers, remixes and music content you can’t find elsewhere\\n● Thousands of curated playlist across many genres and activities\\n\\nGet personalized music, perfect for every moment:\\n● Personalized playlists and Mixes made just for you, built around your favorite types of music\\n● Personalized activity mixes for your Workout, Relax, and Focus sessions\\n● Create playlists with song suggestions or collaborate with other music fans to create the perfect playlist\\n● Personalized Library to see all of your liked and added songs, playlists, artists, and albums\\n\\nStay on top of the trend and discover new music:\\n● Check out curated for you mixes such Discover Mix and New Release Mix\\n● Discover music based genres (Hip Hop, Pop, Country, Dance & Electronic, Blues, Indie & Alternative, Jazz, Kpop, Latin, Rock, and more)\\n● Discover music based mood (Chill, Feel Good, Energy Booster, Sleep, Focus, Romance, Workout, Commute, Party)\\n● Explore top charts from all over the world\\n\\nEnhanced your listening experience with unique features:\\n● Song lyrics so you can sing along to your favorites\\n● Switch seamlessly between audio and video\\n● Listen on your phone, desktop, smart speaker, smart TV, car, smart watch and within your favorite apps. \\n● Compatible with Google Maps, Waze, Google Assistant, and more.\\n\\nUpgrade to Music Premium (available in select countries) to enjoy:\\n● Listen ad-free\\n● Play music in the background\\n● Access your downloads, including smart downloads\\n● Switch seamlessly between audio and video, only with YouTube Music\\n\\n----------\\nOnly first-time YouTube Red, Music Premium, YouTube Premium and Google Play Music subscribers are eligible for free trials, introductory offers or promotional pricing.\\n\\nMonthly price: $9.99 USD / $9.99 CAD / $11.99 AUD / $12.99 NZD / £12.99 / €9.99 / $99 pesos MXN / ₩7,900/ 99 kr NOK / 99 kr SEK / 99 kr DKK / 169 ₽ / ARS$99/ ₹99.00 IN / R59.99 ZA / ₡3,190 /$5.99 USD (EC, DO, UY, VE, GT, BO, HN, SV, PY, NI, PA) / 19.99 zł / RON22.00 / 149.00 Kč / Ft1,490.00 / lev8.99 / USD$5.99 (BY) / €5.99 (SK, SI) / €6.99 (GR, MT, CY, LT, LV, EE) / $6.99 (MK) / 13.99 Turkish Lira (TR) / kn59.99 (HR) / $9.99 (IS) / ₪19.90 (IL) / dh19.99 (AE) / Rial19.99 (QA) / $4.99 (BH, KW, OM, LB) / RP49,000 (ID) / NT$149.00 (TW) / ฿129.00 (TH) / ₱129.00 (PH) / $58.00 (HK) / RM 14.90 (MY) / $9.98 (SG) / USD$5.99 (VE) / ₦900.00 (NG) / $9.99 (TC) / £49.99 (EG) / USD$9.99 (AS, AW, GU, MQ, YT, PF, MP, PG, PR, TC, VI)/ USD$5.99 (BM, KY)/ €9.99 (GF, GP, NC)\",\n \"descriptionHTML\": \"Connecting you to the world of music:
● More than 70 million official songs
● Music content including live performances, covers, remixes and music content you can’t find elsewhere
● Thousands of curated playlist across many genres and activities

Get personalized music, perfect for every moment:
● Personalized playlists and Mixes made just for you, built around your favorite types of music
● Personalized activity mixes for your Workout, Relax, and Focus sessions
● Create playlists with song suggestions or collaborate with other music fans to create the perfect playlist
● Personalized Library to see all of your liked and added songs, playlists, artists, and albums

Stay on top of the trend and discover new music:
● Check out curated for you mixes such Discover Mix and New Release Mix
● Discover music based genres (Hip Hop, Pop, Country, Dance & Electronic, Blues, Indie & Alternative, Jazz, Kpop, Latin, Rock, and more)
● Discover music based mood (Chill, Feel Good, Energy Booster, Sleep, Focus, Romance, Workout, Commute, Party)
● Explore top charts from all over the world

Enhanced your listening experience with unique features:
● Song lyrics so you can sing along to your favorites
● Switch seamlessly between audio and video
● Listen on your phone, desktop, smart speaker, smart TV, car, smart watch and within your favorite apps.
● Compatible with Google Maps, Waze, Google Assistant, and more.

Upgrade to Music Premium (available in select countries) to enjoy:
● Listen ad-free
● Play music in the background
● Access your downloads, including smart downloads
● Switch seamlessly between audio and video, only with YouTube Music

----------
Only first-time YouTube Red, Music Premium, YouTube Premium and Google Play Music subscribers are eligible for free trials, introductory offers or promotional pricing.

Monthly price: $9.99 USD / $9.99 CAD / $11.99 AUD / $12.99 NZD / £12.99 / €9.99 / $99 pesos MXN / ₩7,900/ 99 kr NOK / 99 kr SEK / 99 kr DKK / 169 ₽ / ARS$99/ ₹99.00 IN / R59.99 ZA / ₡3,190 /$5.99 USD (EC, DO, UY, VE, GT, BO, HN, SV, PY, NI, PA) / 19.99 zł / RON22.00 / 149.00 Kč / Ft1,490.00 / lev8.99 / USD$5.99 (BY) / €5.99 (SK, SI) / €6.99 (GR, MT, CY, LT, LV, EE) / $6.99 (MK) / 13.99 Turkish Lira (TR) / kn59.99 (HR) / $9.99 (IS) / ₪19.90 (IL) / dh19.99 (AE) / Rial19.99 (QA) / $4.99 (BH, KW, OM, LB) / RP49,000 (ID) / NT$149.00 (TW) / ฿129.00 (TH) / ₱129.00 (PH) / $58.00 (HK) / RM 14.90 (MY) / $9.98 (SG) / USD$5.99 (VE) / ₦900.00 (NG) / $9.99 (TC) / £49.99 (EG) / USD$9.99 (AS, AW, GU, MQ, YT, PF, MP, PG, PR, TC, VI)/ USD$5.99 (BM, KY)/ €9.99 (GF, GP, NC)\",\n \"summary\": \"The world of music dedicated to you\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 2175652895,\n \"score\": 4.5394,\n \"scoreText\": \"4.5\",\n \"ratings\": 4079014,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.music/reviews\",\n \"histogram\": {\n \"1\": 231362,\n \"2\": 76614,\n \"3\": 131106,\n \"4\": 461259,\n \"5\": 3178656\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"ytmusic-support@google.com\",\n \"developerWebsite\": \"https://music.youtube.com\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/intl/en/policies/privacy/\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Music & Audio\",\n \"genreId\": \"MUSIC_AND_AUDIO\",\n \"icon\": \"https://play-lh.googleusercontent.com/GnYnNfKBr2nysHBYgYRCQtcv_RRNN0Sosn47F5ArKJu89DMR3_jHRAazoIVsPUoaMg\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/9GBIpzQ-hefe9tpn0WCuWTqZ-YpHxG6XXbQZgWZyCI21W0Iy68zKYpjv8eqBxRZykQ\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/oKs8dzSCKog2yeviLXoUQ_mz6Csy91PWp8Pg8mB2oN_WT83DsiBbLzg24Qxth5LTx6I\",\n \"https://play-lh.googleusercontent.com/fTBO6wa9vsL7akpi9f1toV2jNoJCC-3vKawfe9EadR1-GCgRjm-xop7WDASQTaG7uOqT\",\n \"https://play-lh.googleusercontent.com/jCvOIPHyj_6ykkowDTKdRUqnWzcVegadTFoMdhNsU0Q88Hck94HTz2L0V3wfpEpLjQ\",\n \"https://play-lh.googleusercontent.com/S-dxZjz1PTVif-VmuvpZLbywW86_IevYrEjW0vTJJdB1pPhL_LpWbrz_uFRYBrS-o60\",\n \"https://play-lh.googleusercontent.com/bPrdWV54-ezQSdjIVTq_vp6_IlkzI8l9T2Ex92B0N5_xXtCEtUh1E7HGAszlB4OXBQ\",\n \"https://play-lh.googleusercontent.com/aMKWQ009BAApJC2tLRUQGt6ek928AIKqZzJBFR-9fQ34BxdTExZzHTXrmBcSVY7INNM\",\n \"https://play-lh.googleusercontent.com/3gHjko_O1Yy4Do7UEHjRkLCW4YWp-71fbsihmReTb8paqvmbu5qzAhK6PP27TKg4Fow\",\n \"https://play-lh.googleusercontent.com/RGnus0taO_C-lHvUpYznUZprn0bd-7fAN_jeo79jJLyiroKMZiRkaHBSNr07l5nvnAWc\",\n \"https://play-lh.googleusercontent.com/hpy01HLLOXtm1Mkryc2SstFESDxqXv3BIUNmzakuAITduA1bx3nbypNvwkxN75na1yg\",\n \"https://play-lh.googleusercontent.com/MH0zR1LJgQocVOHVc_kjC7zGMJzioKKk58xAypJUt-7TkYZFGgdNJFsc9J3HGdxWKys\",\n \"https://play-lh.googleusercontent.com/KtWEpBRSRutuvDFcQu0E0XhGUEikuPwVALuoWMKNk2-oMUqyiX0_EokhVpad5p-upGAo\",\n \"https://play-lh.googleusercontent.com/HVy73yc6f6NdGh2a6yddjwNiTjfC6-PXIDqW__lU7pbnUpYx2JaCw-XiMnpflG0YBw\",\n \"https://play-lh.googleusercontent.com/1FPY9baPFPFw_OOuQUY6q5nAcO_D07iSWFh8icM0A95_fnYqWeIWLpqkVknc8w6Vuo4\",\n \"https://play-lh.googleusercontent.com/AqWH8nATkKdMpEcJkDNG8S3rq-RYSqkOOtIf_NlyN58ew-i3YcSoLfibIc8gALj5wHk\",\n \"https://play-lh.googleusercontent.com/DsUtTvSiIhZTv-xLarxSfJvZU7GGIFRncdQoA1882Euh_gO8aSoFznmNfHUR0IVAdVI\",\n \"https://play-lh.googleusercontent.com/CTeBPOpXezUARk9W8qB_aRCS7I1Es5LqFXbouZJ6wt2Ha_xnkNrwgavbHi5xNysjNw\",\n \"https://play-lh.googleusercontent.com/wDZdvEk9wDK2TvPLMxdlSBHwF5KADHJuiDo254tbLqrMcLBHtIitbAaBNTNwXg9c1Wg\",\n \"https://play-lh.googleusercontent.com/zAaIHHhTFUpXp8IeJvzoiTgl20x48dECG7Zt82sRovK3Ub1ZvKsa_rDqLOJPru6NHgAq\",\n \"https://play-lh.googleusercontent.com/pMHOr7-Z62CguJx9F2WILNTM8cxh2YZvo8C0BEeEiRoKSrr0EIfND2WtPWFrwvyzMxc\"\n ],\n \"contentRating\": \"Teen\",\n \"adSupported\": true,\n \"released\": \"Nov 12, 2015\",\n \"updated\": 1661952764000,\n \"version\": \"VARY\",\n \"comments\": [\n \"This app was great up until yesterday. It KEEPS crashing in the middle of a song, and for whatever reason it will not play the next song...it instead just buffers and I end up having to skip a song, then go back to it. I have restarted my phone, restarted the app, cleared the cache, all that. I am trying to avoid uninstalling and reinstalling the app because I will lose my playlists and I don't want to do that...please fix this bug. It's very irritating and I pay monthly for premium.\",\n \"Like being able to access music off the fly, very neat and helpful. However, after upgrading to premium, I have noticed my music will pause at times when I lock my screen, which it isn't supposed to do on the upgraded plan. Only happened a couple of times, but still the issue should be addressed so everyone knows what they're getting. Otherwise, I'm in love with it! 😎\",\n \"Works Great, I use it about 3 nights a week for the last 4yrs or so. It compiles a playlist based on my search term, dropping in \\\"new\\\" stuff that I have come to appreciate. However, as I do not want to pay for a subscription, I listen for free. This means I get constant ads, sometimes almost after every song. And forget about pressing \\\"Play\\\" and walking away, as after about 3 or 4 songs it stops, requiring me to press Play again. The UI is not the most intuitive, leaving me guessing which button\",\n \"So, I ended up switching to YT Music after Spotify decided to stop working permanently. I have to say, I don't think I'll ever go back, even if it does get fixed. Because it's YouTube, there's literally EVERYTHING you can listen to. I even found a song that wasn't on Spotify on here. Overall, the ads are a bit annoying, playing almost after every song, but that's okay. The \\\"Are you still watching?\\\" is also kinda annoying. But, if I were to get Premium for any music app, it'd be this one. -Thoma\",\n \"The interface and experience of listening to music directly from YouTube Music is fantastic. However, when using \\\"Device Files,\\\" it all comes apart. It takes about 20 seconds to load a song when using Device Files, which is just unacceptable. I want to use this as my main media player, but it's impossible until the Device Files issue is fixed.\"\n ],\n \"appId\": \"com.google.android.apps.youtube.music\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.music\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.youtube.music&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.music/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.music/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.music/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Maps\",\n \"description\": \"Navigate your world faster and easier with Google Maps. Over 220 countries and territories mapped and hundreds of millions of businesses and places on the map. Get real-time GPS navigation, traffic, and transit info, and explore local neighborhoods by knowing where to eat, drink and go - no matter what part of the world you’re in.\\n\\nGet there faster with real-time updates\\n• Beat traffic with real-time ETAs and traffic conditions\\n• Catch your bus, train, or ride-share with real-time transit info\\n• Save time with automatic rerouting based on live traffic, incidents, and road closures\\n\\nDiscover places and explore like a local\\n• Discover local restaurant, events, and activities that matter to you\\n• Know what’s trending and new places that are opening in the areas you care about\\n• Decide more confidently with “Your match,” a number on how likely you are to like a place\\n• Group planning made easy. Share a shortlist of options and vote in real-time\\n• Create lists of your favorite places and share with friends\\n• Follow must-try places recommended by local experts, Google, and publishers\\n• Review places you’ve visited. Add photos, missing roads and places.\\n\\nMore experiences on Google Maps\\n• Offline maps to search and navigate without an internet connection\\n• Street View and indoor imagery for restaurants, shops, museums and more\\n• Indoor maps to quickly find your way inside big places like airports, malls and stadiums\\n\\n* Some features not available in all countries\\n\\n* Also available for Wear OS\\n\\n* Navigation isn't intended to be used by oversized or emergency vehicles\",\n \"descriptionHTML\": \"Navigate your world faster and easier with Google Maps. Over 220 countries and territories mapped and hundreds of millions of businesses and places on the map. Get real-time GPS navigation, traffic, and transit info, and explore local neighborhoods by knowing where to eat, drink and go - no matter what part of the world you’re in.

Get there faster with real-time updates
• Beat traffic with real-time ETAs and traffic conditions
• Catch your bus, train, or ride-share with real-time transit info
• Save time with automatic rerouting based on live traffic, incidents, and road closures

Discover places and explore like a local
• Discover local restaurant, events, and activities that matter to you
• Know what’s trending and new places that are opening in the areas you care about
• Decide more confidently with “Your match,” a number on how likely you are to like a place
• Group planning made easy. Share a shortlist of options and vote in real-time
• Create lists of your favorite places and share with friends
• Follow must-try places recommended by local experts, Google, and publishers
• Review places you’ve visited. Add photos, missing roads and places.

More experiences on Google Maps
• Offline maps to search and navigate without an internet connection
• Street View and indoor imagery for restaurants, shops, museums and more
• Indoor maps to quickly find your way inside big places like airports, malls and stadiums

* Some features not available in all countries

* Also available for Wear OS

* Navigation isn't intended to be used by oversized or emergency vehicles\",\n \"summary\": \"Real-time GPS navigation & local suggestions for food, events, & activities\",\n \"installs\": \"10,000,000,000+\",\n \"minInstalls\": 10000000000,\n \"maxInstalls\": 11717129301,\n \"score\": 4.0663075,\n \"scoreText\": \"4.1\",\n \"ratings\": 16229855,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.maps/reviews\",\n \"histogram\": {\n \"1\": 2258822,\n \"2\": 741414,\n \"3\": 1034068,\n \"4\": 1825971,\n \"5\": 10369557\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://maps.google.com/about/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Travel & Local\",\n \"genreId\": \"TRAVEL_AND_LOCAL\",\n \"icon\": \"https://play-lh.googleusercontent.com/Kf8WTct65hFJxBUDm5E-EpYsiDoLQiGGbnuyP6HBNax43YShXti9THPon1YKB6zPYpA\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/FQx43QTaAqeOtoTLylK3WIs7ySKuGS8AurXNA1Kj34m6w6CjavF4Oj3s5DB6xZZ7DS63\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/FK7X8M1BCF0Ji6-TkHaww2qP8FEdIrvofW6qDRMCNjszqq5XiVmGNCV00KXSSuETMS8\",\n \"https://play-lh.googleusercontent.com/PJkiXQiABQxpVdHMpvOux53wP2TVuYg0fq9K5JYYDO336nvbX-0ShhHWzZGnagmWlw\",\n \"https://play-lh.googleusercontent.com/6K2sbPKNLgAKWrEUFDLkoumlAoeCH491rS7b_yEWdxwEXgLslsXg64Uq7UC-_n9u0eo\",\n \"https://play-lh.googleusercontent.com/GxNGfSXkAxOEvgOXPKNLp373_MqNS9rPVYlCi-1JekFD3N3JdT3g3d4z_5dxWaFvtKg\",\n \"https://play-lh.googleusercontent.com/iXEapPYDZQvo6qFLwlcEpau5qSrNECycERn5mPtr2t4DAIfNJSj3h0FM_t74By7bI9rb\",\n \"https://play-lh.googleusercontent.com/rbE2lxgiuVV_CjldaGNdBKEZRizx97rEO_yl4ihk7pXh5y8cRf7FROsmw5OLtQrcFA\",\n \"https://play-lh.googleusercontent.com/CZqlsBWxW65_RNZVPzMlWqQ6dg9meysacASXxgH1IJr81mnXCbsr4qQg5wwkD7xQ8Vk\",\n \"https://play-lh.googleusercontent.com/TUsqChyQ0N92woJa_wI3CBcE3s2_AVOYqKhzBJhF0_kbJIrbexoX8WLMhzxu9DiQ4EM\",\n \"https://play-lh.googleusercontent.com/eAjXucba0K068B4vftcTCP_my9c1Jc2cVoBHJ4iOKC0sCmJbfH4DA2apFXW_afEedJK5\",\n \"https://play-lh.googleusercontent.com/CtsHG3eIDWZLPvfx9EHyvy1C-a79N93mAH1SE7KpBwgfWUUfgMFhideRpcynzXWNzQ\",\n \"https://play-lh.googleusercontent.com/pY3-lUJH2B4EiUIW0Os8rSGtIXi2D1SBBpUUsODoTK55Rqq_nk8mFqeX-LmQdRDTCQ\",\n \"https://play-lh.googleusercontent.com/XB6MPAFJh0nh3NzSygUU5vdp53HO4gcYaaw3ifeao-i5b0nmL2sm1i0ewWkJN1PKXQ\",\n \"https://play-lh.googleusercontent.com/bV3JqTSIxqcbqPEcEEKLIfBO3Z04Q0vtMRYXFTKH3pspCe0da0s-HtbcVy9IwX23qOA\",\n \"https://play-lh.googleusercontent.com/DLpbKo2JM6C7mCM5CRjhYyNRFvE5LB6EpW2ke7JaGklg-rO2ZCHvOepMgZpvQEjiHw\",\n \"https://play-lh.googleusercontent.com/ZJ219UkXj0fWgaj6MowzMVQSu3Yi5yatHj1gkO8O5u2A6BTTkBAIXulNwvcQBO021lQ\",\n \"https://play-lh.googleusercontent.com/uUzei9bj47jnqynYszL-4bv1og_icGxkg0EGHj3-H7bAcc1WrSZDCbRvYECxyFjn2XFd\",\n \"https://play-lh.googleusercontent.com/nMYDAh_uAVJwdUMrldBhJoJbAo6c2nOrzJHlj1L_5Pr-KxS6NZP0BN4I1IGvPQpTPvM\",\n \"https://play-lh.googleusercontent.com/j3ie0r4OgyoxJ6uYC5SIUL1Jrh2zstVn3Lq_N9QbMjhC6qzbz_U9_Rnlp9AjXWYHUg\",\n \"https://play-lh.googleusercontent.com/VIWtxGqi0t7r6xBk5I3GxrX0r7SaB2pxLICKf_frFlENdorlWIr0AdL6aam4ZpIz1L-E\",\n \"https://play-lh.googleusercontent.com/H01Rq4yLLWzXeVNv1_dZpN1hUXVS2um1td-4MV4QpaeEp8NJVjS7GWtL2suk-ZWUn_M\",\n \"https://play-lh.googleusercontent.com/BjMBjq8a85USfXrf_Bta7gdPGAhHd5HkausCns05qKE9AOPa19af7S5bwwLfsFAVYv3Y\",\n \"https://play-lh.googleusercontent.com/IOxpItUvwASYpWNBjYKIgHKtb0VekTSjke7RQfivNrAHJyKgRPB8cq9SYivk4kP3TTIf\",\n \"https://play-lh.googleusercontent.com/yIvO-5ymaTwH-Q3I_auPp1d9OJpZKjiHHNGQCAyJvRPBtc4JXdQ14lKJIgc5UFMLY4E\",\n \"https://play-lh.googleusercontent.com/jJiCBmpnboxxwA9_fqq-ZwQdkevSKtOfagG2TlJGkLCcFKXSGFHLNIf652QwNHoSjw\",\n \"https://play-lh.googleusercontent.com/hDKztDC3KuTsH3RuQcXuw6GjcvrwFPcwxJu1qjbGPOy-7ljRDr_cs6SJ6yky1ekShw\",\n \"https://play-lh.googleusercontent.com/r36va9ZTneygVUEQgq_1kvhx6ozQ4J_ogUE0OgNhNF0j0TJAomTTCQx9r73Xg3qxqQ3U\",\n \"https://play-lh.googleusercontent.com/TfD62XgFCQIqVThH6ST3zFNkpL2MkOXY-l1NgN3FN_zEpGLqqWivelqKNPHVOfSKZLA\",\n \"https://play-lh.googleusercontent.com/53bp_PMf2X3-BxbSfp6pFEZrsjgeYT3qOmT5XAcCIyuWU2MWDsClBhZEDoWUaAzydkih\",\n \"https://play-lh.googleusercontent.com/c7bTuu0Y0yj57NpxEo_zUycc5DVm1UnNKkx6xuAFcVN7vQ85X0Wm1-Bq-B2tDsBtUfc\",\n \"https://play-lh.googleusercontent.com/HAG-Oi0ZauAPyVvE_zGKokwkhAkR6YDyXlxbckigLIxAv6wg6Q0DV3h94P55chivwAOl\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": true,\n \"updated\": 1661443431000,\n \"version\": \"VARY\",\n \"recentChanges\": \"Thanks for using Google Maps! This release brings bug fixes that improve our product to help you discover new places and navigate to them.

Become a beta tester: http://goo.gl/vLUcaJ\",\n \"comments\": [\n \"Update.. Can you fix the app already. Everything is wrong. You had a good thing, now it's just freaking annoying! Keeps freezing or the map location dissappear. I'm also having the same problem as other reviewers. The screen will go completely black and I'm unable to close the app. I have to completely restart my phone. Or the app will be stuck in some weird format that shows highway etc that I'm on but not routing.\",\n \"This app CONSTANTLY CRASHES MY PHONE! even after 2 system updates. It'll freeze up, maps turn black and can't leave the screen for a while. If I exit navigation on the app and then hit 'start' to navigate again, it won't pick up at current location. It'll show beginning location then app crashes. I absolutely Loved this app. Still do and hope the glitches get fixed ASAP. Ridiculous. If two systems updates and app updates don't work then what will??\",\n \"Used to be a great app. I love that I can save locations and view my directions ahead of time and during the travel. Not into the voice system so I read ahead, little by little. Always had small bugs as far as where/when to turn or which exit to take. Now, it freezes like crazy, especially when I'm running multiple apps. Can't listen to YouTube or Spotify without having a freeze. And it always freezes at the worst times. So, causes lots of wasted time. May need to find a new app for my trips.\",\n \"Far too much clutter. Unless the option is made to be able to remove all labels (especially businesses), Google Maps will remain a visual nightmare. As soon as you zoom in enough to see the specific streets, it's nothing but businesses of all kinds popping up everywhere. There needs to be more customization options to be able to turn off unwanted labels. All of them if need be. It's gotten nearly impossible to scroll on the map without having a commercial entity of some sort being selected.\",\n \"Major bugs introduced in recent release. I think I use Google maps more than any other app on my phone. However, I've also recently experienced a lot of really terrible bugs as described in the previous two reviews. I think it is limited to the driving mode, but when that is enabled it freezes pretty regularly to the point where I've had to restart my phone while driving in order to get the navigation to reload. Hopefully these are bugs that they are going to fix and will quickly go away\"\n ],\n \"appId\": \"com.google.android.apps.maps\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.maps\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.maps&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.maps/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.maps/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.maps/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Duo\",\n \"description\": \"Google Duo is the highest quality video calling app*. It’s simple, reliable, and works across Android and iOS phones and tablets, smart devices, and on the web.\\n\\n\\n Features:\\n\\n Make calls between Android and iOS\\n Whether you’re on your phone, tablet, or on the web, you can stay in touch with Duo. You can also share and join group calls with just a link.\\n\\n Group call with up to 32 people\\n Bring together all the people who matter most, even when you're apart, with group calling. Duo now supports 32 people in group video calls.\\n\\n Bring everyone together with Family mode**\\n Doodle on video calls and surprise loved ones with fun masks and effects that transform you into astronauts, cats and more.\\n Capture special moments\\n Take photos of your video calls to capture any moment and share it automatically with everyone on the call.\\n\\n Send video and voice messages, photos, and more\\n Short on time or your friends can’t pick up? Leave a personalized video message with fun effects, or share voice messages, photos, notes, and emojis.\\n\\n Low Light Mode\\n Duo lets you make video calls even in poor lighting conditions.\\n\\n Voice calling\\n Make voice-only calls to your friends when you can’t chat over video.\\n\\n *Based on Signals Research Group technical study comparing video degradation time over 3G, LTE, and WiFi.\\n\\n **Requires sign-in with a Google account.\\n\\n ***Data charges may apply. Check your carrier for details.\\n\\n ****Specific feature availability may vary based on device specifications.\\n\\n *****If your Android TV does not have a built-in camera, you will need to connect a USB camera and microphone to your Android TV device.\\n\\n ******Duo works on Android TV devices with Android 8.0 or higher.\",\n \"descriptionHTML\": \"Google Duo is the highest quality video calling app*. It’s simple, reliable, and works across Android and iOS phones and tablets, smart devices, and on the web.


Features:

Make calls between Android and iOS
Whether you’re on your phone, tablet, or on the web, you can stay in touch with Duo. You can also share and join group calls with just a link.

Group call with up to 32 people
Bring together all the people who matter most, even when you're apart, with group calling. Duo now supports 32 people in group video calls.

Bring everyone together with Family mode**
Doodle on video calls and surprise loved ones with fun masks and effects that transform you into astronauts, cats and more.
Capture special moments
Take photos of your video calls to capture any moment and share it automatically with everyone on the call.

Send video and voice messages, photos, and more
Short on time or your friends can’t pick up? Leave a personalized video message with fun effects, or share voice messages, photos, notes, and emojis.

Low Light Mode
Duo lets you make video calls even in poor lighting conditions.

Voice calling
Make voice-only calls to your friends when you can’t chat over video.

*Based on Signals Research Group technical study comparing video degradation time over 3G, LTE, and WiFi.

**Requires sign-in with a Google account.

***Data charges may apply. Check your carrier for details.

****Specific feature availability may vary based on device specifications.

*****If your Android TV does not have a built-in camera, you will need to connect a USB camera and microphone to your Android TV device.

******Duo works on Android TV devices with Android 8.0 or higher.\",\n \"summary\": \"High quality video calling for Android & iOS phones, tablets, Google Nest & web.\",\n \"installs\": \"5,000,000,000+\",\n \"minInstalls\": 5000000000,\n \"maxInstalls\": 5799316972,\n \"score\": 4.5909877,\n \"scoreText\": \"4.6\",\n \"ratings\": 9508185,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.tachyon/reviews\",\n \"histogram\": {\n \"1\": 361436,\n \"2\": 123726,\n \"3\": 367797,\n \"4\": 1336434,\n \"5\": 7318780\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Communication\",\n \"genreId\": \"COMMUNICATION\",\n \"icon\": \"https://play-lh.googleusercontent.com/l9KG7T3GgFZtvfMeJ_aTsaofrGP8JnmQCPGuDrxhvFAfC-IpXhwGfMGeH2AihVqWBlM\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/Wc3aXINSi4dTCGvd2BAWaN1UIGo1aAiCt41iVUc7e_ejmhNWKTTfVYaN1HNiwVciBgo\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/-lBYuaFn0No6GyeDCt5DKvOsSu1S_EP-0hWH1qZqf7iYV3bgzHmAySt1_qawXaTH__mE\",\n \"https://play-lh.googleusercontent.com/DspLrD5q8qcgkZVu8OpNa72p7mALfHxhMKu-gPTJw0vKPdoLP6xeSmiPvExRIu_5hCEP\",\n \"https://play-lh.googleusercontent.com/DEEXX1W-MkIud3_Gj8Db9P9DejNzI49nxTizoM4sNbHE14BWwpZLFcTvJblvrXgSW9sM\",\n \"https://play-lh.googleusercontent.com/oBPI7y_5F3zfsaBp6_i9WHYA5FyyTSwnqZZYLS0P333j4SS0I9pvxKNSGFiKZH9nLiQ\",\n \"https://play-lh.googleusercontent.com/ZHQ9e9mIPzA80HZlSeHoK43g_PVCAnkVTV_XXLeKLD2FKYp11dQImjem570-oxpPe9Y\",\n \"https://play-lh.googleusercontent.com/iGSeBcx-DztRN17tWPLyxrMiOMFUNs-HXTZ5cIRR8g_vGSwDx1Dqomh4nEcA9zTtOQk\",\n \"https://play-lh.googleusercontent.com/LhmGyXJgFzB9n27sB9X-AUVxYMXtgYG8ot15QfNPzjVfVfDbORfIJXpFHOsFKXSJGF0\",\n \"https://play-lh.googleusercontent.com/AuUeYdj-kAnq0E5RjHWRleBgK73NzjDHXAEkhTzfgY4m9RadV8nL6oX3Uo4deXuoM6g\",\n \"https://play-lh.googleusercontent.com/G8opEAa3gmNid0TiaRUkfvUAviezbJZiCJUcKH85NsJyc7ub-BuRtgBeJr5ETiTqqg\",\n \"https://play-lh.googleusercontent.com/8G76-QA-wq1LOSa7NA31oMbGSr5rWXOvHRyEDMr64poArOTHsxx99-_dS8ht_CVf1gg\",\n \"https://play-lh.googleusercontent.com/-3LaDXSMAYI7ZONhMG-m_x6RQdHxP225J-vSWQz6RJ0nXSeIm1HFkJ9rli8kP8u1tCs\",\n \"https://play-lh.googleusercontent.com/-Zph7bSvmIeEf7xtl0WuX4uWXm82_DKTxPv9aZiJyhpPElfpXZHjvCgg7wXJ0MB4Clg\",\n \"https://play-lh.googleusercontent.com/vcCjJKXIcU_-H-3ReNUksC90udxERD8bGTUwm9hVyquMHi9bXFeak-GiBFKn4BQhdj0b\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Aug 16, 2016\",\n \"updated\": 1661461275000,\n \"version\": \"VARY\",\n \"recentChanges\": \"•Make group video calls with up to 32 people
•Share and join group calls with a link
•Take photos of your video calls
•Try doodles, masks and fun effects with Family mode (Sign-in required with a Google account)\",\n \"comments\": [\n \"It works like a charm and both voice and video quality are amazing, as long as you have more than 1 bar. I removed a star only because I can't find a way to reduce quality, video size, bit rate or any other way to remedy the issues when the \\\"other caller\\\" is away from wifi and has low bars. I understand why it might be difficult but adding the ability to \\\"pinch zoom\\\" or a quality/size slider to shrink the video size requested from the sender would be so helpful to reduce stuttering.\",\n \"Audio cuts out a lot for some reason. It's done that with every phone I've had. I always end up switching to Facebook Messenger which works flawlessly with no audio cut outs. I'll probably stick with them permanently for awhile. EDIT (8/23/22): Audio quality has gotten better. Not as choppy as before. Still happens once in a while though.\",\n \"Good app. My wife and I use it to call each other while traveling internationally. We can use text and data when traveling, but not calling. We have T-Mobile. Duo uses data, so it allows us to call without extra charges and fees. We tried video calling a few times. The quality was just OK. When we used it for voice only calls, the quality was really good, indistinguishable from cell phone calls. Voice uses much less bandwidth than video. Overall, it is worth it.\",\n \"Hello, I'm a quite frustrated as I write this email. I recently had to update my Duo app, which I had been using daily for overa year. Since the update, I no longer get a full screen of the incoming call, or it won't ring at all, causing me to miss important calls. I hate the update. I attempted to go through the app settings to see if there's anything I could do to fix it, but was unsuccessful. Please help.\",\n \"Love being able to talk to my husband and see his face since he's away. Makes it seem like he's home and it works for us! Just wish if your phone number changed it would update without manually having to do it. Took us awhile to figure out why none of our calls were going through. Also having to have person in contacts is somewhat of a pain because it's not always his phone he calls from so then we have to make sure it's saved in each other's contacts and then for him erased after.\"\n ],\n \"appId\": \"com.google.android.apps.tachyon\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.tachyon\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.tachyon&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.tachyon/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.tachyon/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.tachyon/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Docs\",\n \"description\": \"Create, edit, and collaborate with others on documents from your Android phone or tablet with the Google Docs app. With Docs you can:\\n\\n- Create new documents or edit existing files\\n- Share documents and collaborate in the same document at the same time.\\n- Work anywhere, anytime - even offline\\n- Add and respond to comments.\\n- Never worry about losing your work – everything is saved automatically as you type.\\n- Search the web and your files in Drive, right from Docs\\n- Open, edit, and save Word documents and PDFs.\\n\\nGoogle Docs is part of Google Workspace: where teams of any size can chat, create, and collaborate.\\n\\nGoogle Workspace subscribers have access to additional Google Docs features, including:\\n- Working in a single document with teammates or people outside your company. See edits as others type, communicate through built-in chat, and leave feedback through comments and suggestions\\n- Importing your documents to make them instantly editable, including Microsoft® Word and PDF files. Export your work in .docx, .pdf, .odt, .rtf, .txt or .html format\\n- Unlimited version history. Track changes made to your documents and undo anything you choose.\\n- Working across devices, with or without Internet\\n\\nLearn more about Google Workspace: https://workspace.google.com/products/docs/\\n\\nFollow us for more:\\nTwitter: https://twitter.com/googleworkspace\\nLinkedin: https://www.linkedin.com/showcase/googleworkspace\\nFacebook: https://www.facebook.com/googleworkspace/\\n\\nPermissions Notice\\nContacts: This is used to give suggestions of people to add to files and share with.\\nStorage: This is used to save and open files on USB or SD storage.\",\n \"descriptionHTML\": \"Create, edit, and collaborate with others on documents from your Android phone or tablet with the Google Docs app. With Docs you can:

- Create new documents or edit existing files
- Share documents and collaborate in the same document at the same time.
- Work anywhere, anytime - even offline
- Add and respond to comments.
- Never worry about losing your work – everything is saved automatically as you type.
- Search the web and your files in Drive, right from Docs
- Open, edit, and save Word documents and PDFs.

Google Docs is part of Google Workspace: where teams of any size can chat, create, and collaborate.

Google Workspace subscribers have access to additional Google Docs features, including:
- Working in a single document with teammates or people outside your company. See edits as others type, communicate through built-in chat, and leave feedback through comments and suggestions
- Importing your documents to make them instantly editable, including Microsoft® Word and PDF files. Export your work in .docx, .pdf, .odt, .rtf, .txt or .html format
- Unlimited version history. Track changes made to your documents and undo anything you choose.
- Working across devices, with or without Internet

Learn more about Google Workspace: https://workspace.google.com/products/docs/

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/

Permissions Notice
Contacts: This is used to give suggestions of people to add to files and share with.
Storage: This is used to save and open files on USB or SD storage.\",\n \"summary\": \"Create, edit, and collaborate online with Google Docs, part of Google Workspace.\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 1351361862,\n \"score\": 4.1677837,\n \"scoreText\": \"4.2\",\n \"ratings\": 1719597,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.docs/reviews\",\n \"histogram\": {\n \"1\": 181417,\n \"2\": 69893,\n \"3\": 139153,\n \"4\": 217415,\n \"5\": 1111712\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://support.google.com/docs/?p=android_docs_help\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Productivity\",\n \"genreId\": \"PRODUCTIVITY\",\n \"icon\": \"https://play-lh.googleusercontent.com/emmbClh_hm0WpWZqJ0X59B8Pz1mKoB9HVLkYMktxhGE6_-30SdGoa-BmYW73RJ8MGZQ\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/SGPBqPT3BOhYlNK2ln_9NnFNDnE5VFepluszZEaf_QSBLVcFADxrOv_r0HBStoXY_-M\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/qfcVoE21Kmok5CMb6BtCgJJAiZSNaW6Q3NnWuLWp674gpV0Zhvi0WWnIEBZvej7BRyE\",\n \"https://play-lh.googleusercontent.com/BI-lqIJAjO6_A7WhD_suxRzrSZInflX68vCezvrhr95-i0SqcYtahkd2B5nT36z-Lg\",\n \"https://play-lh.googleusercontent.com/bZ6CsOvCH_pP8KtKjmp3rgqdHPuwzVNG9yAv33ruFVyNehQDUQzEyml6HdPFJb50r74\",\n \"https://play-lh.googleusercontent.com/COYwJWfnfo4ACgvrDIv4L5dJGzurbSDseU4oWyM5sniiQoaIiNb19mKRFj9HNBY3dLI\",\n \"https://play-lh.googleusercontent.com/KMYIlpSmai6GoGjCe7hmnAHwFBe3NQnKvRUqTXsLhUNWjFaeNmOar0Sqa9bAm7eBRXzf\",\n \"https://play-lh.googleusercontent.com/iXQyQzrrL0iDs7GWaVOziKwzwf9ZEqf_mSZi_72-PC8K0NqKuuTdDYHlregvsFyX3fyc\",\n \"https://play-lh.googleusercontent.com/0-3Uhsy1ZepKjfj8IkHTGpH4aWCUKUKNjuj6tEdDFu8XN_OqKvTJrdj_zJor-k7CCQ\"\n ],\n \"video\": \"https://www.youtube.com/embed/ex185KgkgBQ?ps=play&vq=large&rel=0&autohide=1&showinfo=0\",\n \"videoImage\": \"https://play-lh.googleusercontent.com/SGPBqPT3BOhYlNK2ln_9NnFNDnE5VFepluszZEaf_QSBLVcFADxrOv_r0HBStoXY_-M\",\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Apr 30, 2014\",\n \"updated\": 1661965363000,\n \"version\": \"VARY\",\n \"recentChanges\": \"* Bug fixes and performance improvements\",\n \"comments\": [\n \"Lately it has been becoming more infuriating to use and my last month of using it has been the last straw. Not only does it have a hyper sensitive scroll bar which randomly jumps dozens of pages with a mistap, I've been suffering from an unfixable synchronization error. The popup covers a good half of my screen keyboard for several seconds, grossly disrupting me as I write. I'm at my wits end here and can no longer stay silent about it. Fix. This. Or give us the option to disable it.\",\n \"THIS APP IS UNSTABLE. GOOGLE FIX THESE ISSUES Update: it's worse now. If I position the cursor on a new line and start typing, often it jumps up to where I was last typing and insert the new characters that I havev typed. This happens a lot. Was absolutely great but lately it's been getting \\\"synchronization errors\\\" and keeps saying \\\"Can't detect more Grammar errors. Text is too long\\\". I will update my review to a 4 star once these issues are fixed\",\n \"I have not seen the sync error that others have been getting, simply because I cannot even open some of my documents from my phone. A few, I have no issue with, but the ones I had been previously working from between computer and phone crash the app in an instant. I do hope a fix comes out soon, because it is almost unusable in the state it's in.\",\n \"Wish there were more formatting options, but it's utile, clean and easy to use. Don't know if the source of my difficulty in trying to highlight for selection of anything more than a single word lies with the app or my phone, but it's very frustrating.\",\n \"I've used this app for years to co write with a friend of mine. Its amazing and I use it daily, but the past week has been unbeadable. I can't type anything without a \\\"synchronization error\\\" popping up. I can't read what I'm typing as it flashes constantly above my keyboard. Nothing fixes it. This app needs fixed and updated and it's ridiculous it has gone on as long as it has.\"\n ],\n \"appId\": \"com.google.android.apps.docs.editors.docs\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.docs\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.docs.editors.docs&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.docs/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.docs/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.docs/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Calendar\",\n \"description\": \"Get the official Google Calendar app, part of Google Workspace, for your Android phone and tablet to save time and make the most of every day.\\n\\n• Different ways to view your calendar - Quickly switch between month, week, and day view.\\n• Events from Gmail - Flight, hotel, concert, restaurant reservations, and more are added to your calendar automatically.\\n• Tasks - Create, manage, and view your tasks alongside your events in Calendar\\n• All your calendars in one place - Google Calendar works with all calendars on your phone, including Exchange.\\n\\nGoogle Calendar is part of Google Workspace. With Google Workspace, you and your team can:\\n• Schedule meetings quickly by checking coworkers' availability or layering their calendars in a single view\\n• See if meeting rooms or shared resources are free\\n• Share calendars so people see full event details or just if you are free\\n• Access from your laptop, tablet or phone\\n• Publish calendars on the web\\n\\nLearn more about Google Workspace: https://workspace.google.com/products/calendar/\\n\\nFollow us for more:\\nTwitter: https://twitter.com/googleworkspace\\nLinkedin: https://www.linkedin.com/showcase/googleworkspace\\nFacebook: https://www.facebook.com/googleworkspace/\",\n \"descriptionHTML\": \"Get the official Google Calendar app, part of Google Workspace, for your Android phone and tablet to save time and make the most of every day.

• Different ways to view your calendar - Quickly switch between month, week, and day view.
• Events from Gmail - Flight, hotel, concert, restaurant reservations, and more are added to your calendar automatically.
• Tasks - Create, manage, and view your tasks alongside your events in Calendar
• All your calendars in one place - Google Calendar works with all calendars on your phone, including Exchange.

Google Calendar is part of Google Workspace. With Google Workspace, you and your team can:
• Schedule meetings quickly by checking coworkers' availability or layering their calendars in a single view
• See if meeting rooms or shared resources are free
• Share calendars so people see full event details or just if you are free
• Access from your laptop, tablet or phone
• Publish calendars on the web

Learn more about Google Workspace: https://workspace.google.com/products/calendar/

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/\",\n \"summary\": \"Always know what’s next with Google Calendar, part of Google Workspace.\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 4096388219,\n \"score\": 4.221934,\n \"scoreText\": \"4.2\",\n \"ratings\": 2127406,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.calendar/reviews\",\n \"histogram\": {\n \"1\": 219579,\n \"2\": 80503,\n \"3\": 152936,\n \"4\": 229511,\n \"5\": 1444847\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://support.google.com/calendar?p=mobilesync\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Productivity\",\n \"genreId\": \"PRODUCTIVITY\",\n \"icon\": \"https://play-lh.googleusercontent.com/Jsbb0EeesKUbDTl3UyDKO6sNz45RCMh7gnoI6giQcQz1f5Mj0J4TRh7Psyu53vShh-qm\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/8iI_yxynQlETaQ-KDUsc3HH6P3bWu87hWXqDMHODtEATIPZDRpNybKY8Fbw8FfPSog\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/qpZnzWMIr8ASHbzTyLRr22b1OPMDuSaXO2XQ2xRE-widbNvPFVf_AJBwHTk1oCTExSo\",\n \"https://play-lh.googleusercontent.com/Fvi5bZp7Obbs4jSr5sSa0N4dqhXBop-PKvp01mW2n6MOrxiteVOJ8fdEaDC73v2kXlY\",\n \"https://play-lh.googleusercontent.com/gVU2j-1eGLOKhadE74qtpWY4LIvbkQtzuw1KFK2R2ALB-QX9cJuYDgfK3DoFllTCURNB\",\n \"https://play-lh.googleusercontent.com/ADEX0z1rjbO_Z07brXp8KxrBixKWMVrcDCTGoYF2a6Eri3U8u98eiq1rROqHPyVwDg\",\n \"https://play-lh.googleusercontent.com/SgiK94gNcymqSM6Y6BVo8bKv7912k7lyZX2lZ-ewpAqQZmjWhkjXXhc-E6goe7k21ERt\",\n \"https://play-lh.googleusercontent.com/ux25_uzqpYJ4Qu_Pg2v7jblKXKGkrUrMazncd-1F4AJBlTKe62sdVRZf9IaQHMNeNJvx\",\n \"https://play-lh.googleusercontent.com/XLvSnjDBQUaRZZe3jkkCBEztZtz3eyky9nS44Opvs5WRgRi3lCQYE890qe1VYAz0SPJV\",\n \"https://play-lh.googleusercontent.com/smFdztHBHJ9DbfVR7gvNCQqz1jOA9otsyyrZeR6D9Ad7oKvhEWoUbE43-Uf6JV_o0Ts\",\n \"https://play-lh.googleusercontent.com/MpeNiXSUla8tpSxEumhLNZpz4Md_DejfSmHvuB0Gh3UHx8XjRt7NfiAj5plzh5R5xw\",\n \"https://play-lh.googleusercontent.com/HYwBE8XPux6aMwbYVf_On_B5BKw3R5iaRrMem4yBb0-LFcWPbsNpgEm6xJPHizDDCbs\",\n \"https://play-lh.googleusercontent.com/kbWLLZHPJ9rR069V_IhQZtmybmiLU1HrMUSiVRUdCyefNje5WEPCyck7b_eg9UGq6Q\",\n \"https://play-lh.googleusercontent.com/HLlJnyYdy7j2eC6yjJPgPJeoTOO9vPRpxB1pE4ioaisG9nS_nHxKMaK40tjsjK2KSg\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Oct 17, 2012\",\n \"updated\": 1661794322000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• Bug fixes and performance improvements.\",\n \"comments\": [\n \"I loved this app because I could set reminders on my home devices and they would pop up on my phone. After the last update, those stopped popping up. I've restarted. I've checked notifications settings. There's nothing wrong other than the latest update. What's the point of a reminder when I have to go into the calendar to see them? That's not reminding me of anything.\",\n \"Update: Thank you for restoring the color option for events. At a glance I know the type of event on my calendar! Getting able to select the color for events was very helpful, with emphasis on \\\"was\\\". The ability to select a color is no longer an option. It was very helpful because at a glance I knew whether a meeting was in my office or somewhere else needing a commute and requiring me to schedule my office hours accordingly. Obviously this isn't a huge issue but it is important to me.\",\n \"Annoying background clipart and maps makes it difficult to see your agenda and ruins using multiple color-coded calendars. There should be an easy way to turn that off without misspelling words (to get rid of clipart) or deleting each map. You've received LOTs of feedback about this over the years. It's an easy enough change and is in your iOS version, so some management level person is just being a jerk. Don't be evil.\",\n \"I'm getting Unwanted spam/rated x type messages piling up in my Google calendar and Google drive notifications. I have tried so many different ways to get rid of these sort of notifications and messages from my calendar and Google drive, but they just start popping up again after a few days here. What can I do to get rid of this? I've heard that I would need to use a laptop or computer to fix this issue?\",\n \"Whoa! Must be slim pickings finding developers today. This app gets worse with every update. You can't even tell what day it is. You can no longer resize the widget. The widget just shows a dot for events. As if a dot is helpful. Hey. Wow. I have dot to do today! If you click on the widget month view, the app opens in week view. And we are stuck with the Palo alto color-scheme. Not that I care, but the word on the Street, is as far as colors go, google don't know dot.\"\n ],\n \"appId\": \"com.google.android.calendar\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.calendar\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.calendar&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.calendar/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.calendar/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.calendar/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Messages\",\n \"description\": \"Meet Messages, Google's official app for texting (SMS, MMS) and chat (RCS). Message anyone from anywhere with the reliability of texting and the richness of chat. Stay in touch with friends and family, send group texts, and share your favorite pictures, GIFs, emoji, stickers, videos and audio messages.\\nChat features (RCS)\\nOn supported carriers, you can send and receive messages over Wi-Fi or your data network, see when friends are typing or when they have read your message, share images and videos in high quality, and more.\\nClean, intuitive, and comfortable design\\nInstant notifications, smart replies and a fresh new design make communicating faster and more fun. With dark mode, you can use Messages comfortably in low-light situations.\\nEasy sharing\\nSelect or take pictures and videos directly from the app and share easily. You can even send audio messages to your contacts.\\nRicher conversations\\nSend audio messages, emoji, stickers, or your location. You can also send and receive payments with Google Pay.\\nPowerful search\\nNow you can find more of the content shared in your conversations: tap on the search icon and select a specific contact to see your messaging history with them and all the photos, videos, addresses or links you shared with each other.\\nMessages is supported on devices running Android™ 5.0 Lollipop and above. App also available on Wear OS\",\n \"descriptionHTML\": \"Meet Messages, Google's official app for texting (SMS, MMS) and chat (RCS). Message anyone from anywhere with the reliability of texting and the richness of chat. Stay in touch with friends and family, send group texts, and share your favorite pictures, GIFs, emoji, stickers, videos and audio messages.
Chat features (RCS)
On supported carriers, you can send and receive messages over Wi-Fi or your data network, see when friends are typing or when they have read your message, share images and videos in high quality, and more.
Clean, intuitive, and comfortable design
Instant notifications, smart replies and a fresh new design make communicating faster and more fun. With dark mode, you can use Messages comfortably in low-light situations.
Easy sharing
Select or take pictures and videos directly from the app and share easily. You can even send audio messages to your contacts.
Richer conversations
Send audio messages, emoji, stickers, or your location. You can also send and receive payments with Google Pay.
Powerful search
Now you can find more of the content shared in your conversations: tap on the search icon and select a specific contact to see your messaging history with them and all the photos, videos, addresses or links you shared with each other.
Messages is supported on devices running Android™ 5.0 Lollipop and above. App also available on Wear OS\",\n \"summary\": \"Simple, helpful messaging by Google\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 3438019150,\n \"score\": 4.1948504,\n \"scoreText\": \"4.2\",\n \"ratings\": 8428341,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.messaging/reviews\",\n \"histogram\": {\n \"1\": 934932,\n \"2\": 324088,\n \"3\": 512964,\n \"4\": 1048129,\n \"5\": 5608206\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://www.google.com/mobile/android/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Communication\",\n \"genreId\": \"COMMUNICATION\",\n \"icon\": \"https://play-lh.googleusercontent.com/OY4rxeNTPaHwyOTZ-RUooqJvPnO5QUYmQcw0dhD90Mu6UWItOSZfQv7ks_FscbBow0M\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/lKAYJxxItJh0wtWqaDAHseZVjodpHkv1E3yXnCV6FoJh3nHNJNj6EQju6V40ZFWasJA\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/kV2ZsWZ53iBWRNJITzqIa8aoISszggBcrVNCo0_EFORHPokisCK81zVMOwF0hFDUJw\",\n \"https://play-lh.googleusercontent.com/S1dMTqvysB-31RezOng7Rj-9X-3dseboYAZ2E50CqZG0jbYxuseP3EaDJ4BGk76jEg\",\n \"https://play-lh.googleusercontent.com/kfS1FeNjatc2CViq_QtYXe0zpDoTeEmMlxsgr5-R9ASCgysetwZeJztG7Qk8kjfQ5A\",\n \"https://play-lh.googleusercontent.com/zlWcFfKj4wgHBT4xr1MW8VYoUGgzBECyqJckkzpsjPBqgeVlqPKRezfahmv9pquoirKL\",\n \"https://play-lh.googleusercontent.com/Ocg31hKhxcjRPRlugd2cqmJq-_W7JtBoeOP3M8MA6EITWkKksAGtCffHIK_S1AJB7w\",\n \"https://play-lh.googleusercontent.com/ATl-cgHDQK0yfG4F3lI9v5pRykN3DGC-s_u8CXk4vWHU_VGszrkSnz3fCwAUhDe9pGk\",\n \"https://play-lh.googleusercontent.com/xekJBCf0onsN12AzF_PTHEGRyf637ul6t8eBg1ktTnWJbbn1bXXDxiEEsE6Ikl8icA\",\n \"https://play-lh.googleusercontent.com/S6Xtd7fqpjhHjPh8v-6kF2DUAwa89_AW0k9uvz6qEvFdDGkIdlfxPugBDIe_7r4fcg\",\n \"https://play-lh.googleusercontent.com/myC4ggLXl7bqeCDwLv4dZgXsKumiHrKbEvqUE1xxSpQaqNe-xVJPiHR2mTkZCPhNRsHY\",\n \"https://play-lh.googleusercontent.com/onfN925YJQW99KQrg0feJM2pClbc_TWBL6B5m7iFW5TUHtiqlSqwK-jBhKQfn-Iu\",\n \"https://play-lh.googleusercontent.com/V9NjiBNeih8YEi_c49InC2FQu-NOIEpxpr11phIibKpoQn7zVT7-l4uoAQWb8tEMioo\",\n \"https://play-lh.googleusercontent.com/H6T3SRJFSkrCq9Ty2_xjQxam-uEMIcIPrBh1idEKwBmt4VmJU3RrJMwK9qg9CQkb1bY\",\n \"https://play-lh.googleusercontent.com/hINJgwKaxDuHOTA_ZHlBDCr2vNcH482iN4EaV4r8Bu5BMRfgTuiYZrMw0HzjZZDJNcg\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Nov 12, 2014\",\n \"updated\": 1661459623000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• Bug fixes and stability improvements.\",\n \"comments\": [\n \"I like it but I wish it was more customizable like android/Samsung messages. If I am buying a new font, I'd like to see that transfer into my Google messages as well, along with the ability to check a box to delete all messages at once when doing a phone clean up. I'd also like to be able to change the wording colors to match. The different white and black fonts together throw me off. I do love being able to quick video call or sends pictures/videos in better quality than Samsung messages.\",\n \"My favorite texting app. It's also linked to duo so all I have to do is click the button at the top to start a video call instead of opening the duo app myself. EDIT: as of this month ALOT of my messages are going unsent and instead of automatically switching from chat to text it tells me that I have no SMS signal. Very frustrating. It never happened until recently. Please fix the issue! I know that it happened after an update...\",\n \"I just lost years of history of an SMS conversation with my daughter. There is nothing in archived and the auto deleted is not turned on. I also lost some group history but those conversations were not as critical. In trying to recover from backup, I found there is no way to restore from a backup without doing a factory reset on the phone. What a bad design!\",\n \"The app has been reliable but recently I've been unable to copy my text messages. This is rather strange behavior I'm fearful of uninstalling and reinstalling in case I might lose my messages I'm not sure what else to try I've reset the phone etc. I suspect it's just a bug that was introduced but perhaps there's a setting I have messed up somewhere. I can certainly take a screen capture of the text and then use OCR to pull it out I got text ferry or something like that but not ideal.\",\n \"Ever since the app was updated to change or disable swipe options, I only have one complaint. After every update the \\\"Alarms and Reminders\\\" permission turns back on, this is a battery draining \\\"feature\\\" as it keeps the app running in background. Some of us don't live lifestyles so complicated we need to schedule text messages. The clock app should be the only one where this is default behavior.\"\n ],\n \"appId\": \"com.google.android.apps.messaging\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.messaging\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.messaging&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.messaging/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.messaging/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.messaging/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Sheets\",\n \"description\": \"Create, edit, and collaborate on spreadsheets from your Android phone or tablet with the Google Sheets app. With Sheets, you can:\\n\\n- Create new spreadsheets or edit existing files\\n- Share spreadsheets and collaborate in the same spreadsheet at the same time.\\n- Work anywhere, anytime - even offline\\n- Add and respond to comments\\n- Format cells, enter or sort data, view charts, insert formulas, use find/replace, and more\\n- Never worry about losing your work – everything is saved automatically as you type\\n- Quickly get insights, insert charts, and apply formatting with smart suggestions\\n- Open, edit, and save Excel files.\\n\\nGoogle Sheets is part of Google Workspace: where teams of any size can chat, create, and collaborate.\\n\\nGoogle Workspace subscribers have access to additional Google Sheets features, including:\\n- Easily add collaborators to projects, see changes as they occur, receive notifications for edits that happen while you’re away, and chat with colleagues in the same spreadsheet. All changes are automatically saved as you make them. And with offline access, you can create, view, and edit files wherever and whenever\\n- Get insights fast, powered by Google AI\\n- Work seamlessly across Sheets and Excel\\n- Maintain control with enterprise-grade security\\n- Analyze data from other business-critical tools\\n- Build custom solutions\\n\\nLearn more about Google Workspace: https://workspace.google.com/products/sheets/\\n\\nFollow us for more:\\nTwitter: https://twitter.com/googleworkspace\\nLinkedin: https://www.linkedin.com/showcase/googleworkspace\\nFacebook: https://www.facebook.com/googleworkspace/\\n\\nPermissions Notice\\nContacts: This is used to give suggestions of people to add to files and share with.\\nStorage: This is used to save and open files on USB or SD storage.\",\n \"descriptionHTML\": \"Create, edit, and collaborate on spreadsheets from your Android phone or tablet with the Google Sheets app. With Sheets, you can:

- Create new spreadsheets or edit existing files
- Share spreadsheets and collaborate in the same spreadsheet at the same time.
- Work anywhere, anytime - even offline
- Add and respond to comments
- Format cells, enter or sort data, view charts, insert formulas, use find/replace, and more
- Never worry about losing your work – everything is saved automatically as you type
- Quickly get insights, insert charts, and apply formatting with smart suggestions
- Open, edit, and save Excel files.

Google Sheets is part of Google Workspace: where teams of any size can chat, create, and collaborate.

Google Workspace subscribers have access to additional Google Sheets features, including:
- Easily add collaborators to projects, see changes as they occur, receive notifications for edits that happen while you’re away, and chat with colleagues in the same spreadsheet. All changes are automatically saved as you make them. And with offline access, you can create, view, and edit files wherever and whenever
- Get insights fast, powered by Google AI
- Work seamlessly across Sheets and Excel
- Maintain control with enterprise-grade security
- Analyze data from other business-critical tools
- Build custom solutions

Learn more about Google Workspace: https://workspace.google.com/products/sheets/

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/

Permissions Notice
Contacts: This is used to give suggestions of people to add to files and share with.
Storage: This is used to save and open files on USB or SD storage.\",\n \"summary\": \"Create and edit online spreadsheets with Google Sheets, part of Google Workspace\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 1193013833,\n \"score\": 4.086846,\n \"scoreText\": \"4.1\",\n \"ratings\": 1054250,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.sheets/reviews\",\n \"histogram\": {\n \"1\": 129685,\n \"2\": 45812,\n \"3\": 93513,\n \"4\": 119463,\n \"5\": 665760\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://support.google.com/docs/?p=android_sheets_help\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Productivity\",\n \"genreId\": \"PRODUCTIVITY\",\n \"icon\": \"https://play-lh.googleusercontent.com/keE2gN0Hqh8-Tsf_RYZ_-yS2uo6ToqYVyRBv_UZaLXsgeeHBd2YPcEUWEF4DEtfGyb1h\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/4l7xCS_HlIru6w8PmIiJtkkQJW9WIBozQMWJqGO5Aq_JrYpOCFNGl5-EbyJbs5uC_V4\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/IDjPSgnayyh3M8QsEC8QCAO8qKuCPMOiDASw7g8Kntpew5WU-uMJXIrVzWOYcG6baw\",\n \"https://play-lh.googleusercontent.com/7XYlK-uSNNR3dPWIcAY6VpK2HShX2Zd8ADdU1oqcV2ko3FDVDeaXQ-cFCwjhodmgkvw\",\n \"https://play-lh.googleusercontent.com/3NQfiAQTHVyiPlvzebz1T69pxoAfKWnRdtd__a-GKurIW-Tblbt3blBh8Dzzba6dWDcI\",\n \"https://play-lh.googleusercontent.com/mtqj_0cck6ghlSM20as9FsSOs1xp4Y18V-fWuueHYEfPHVrbEq9uAhsJfspNSSnCFw\",\n \"https://play-lh.googleusercontent.com/_OquGNJr7HQ-cuSV7pgqIlI1i24wxfhwewgxhozP7GOr4LVld6yZFyZrYCKrzIBECQ\",\n \"https://play-lh.googleusercontent.com/nXi5p8Y4hYmAAMtX1CfW-UIuMVGt304cnJEefKU87J-tk5SHc9nYsUR6yFrb4IUnMk4\",\n \"https://play-lh.googleusercontent.com/991kCPgbTtlyntel1C3DXps12NG8jMyWlXr8LJgiXaTJBtnlLsGc0VffK7HyP-JaCemK\",\n \"https://play-lh.googleusercontent.com/OotcKhmGuV6EDWk6gfFv00gnNU0pOGosMLXUHDsPH1qEun7meF-qL7qmPsDs8gC1eEY\",\n \"https://play-lh.googleusercontent.com/uBUuZ4q-I42WvFU7x-CA6Oum3vxRgiLEOZwz-_j44S2bqXAK-r2yYTTw-P0WExN9ng\",\n \"https://play-lh.googleusercontent.com/Z9fKAYwH90z4UaC-M09WUtGPoaB6CMVXixuGdNSomIuvdj_r_BvAKC1yhY5Q-icv6Veu\"\n ],\n \"video\": \"https://www.youtube.com/embed/v20iyzwjDLc?ps=play&vq=large&rel=0&autohide=1&showinfo=0\",\n \"videoImage\": \"https://play-lh.googleusercontent.com/4l7xCS_HlIru6w8PmIiJtkkQJW9WIBozQMWJqGO5Aq_JrYpOCFNGl5-EbyJbs5uC_V4\",\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Apr 30, 2014\",\n \"updated\": 1661965345000,\n \"version\": \"VARY\",\n \"recentChanges\": \"* Bug fixes and performance improvements\",\n \"comments\": [\n \"Very useful app. However there is a bug that continues to happen where it will switch me, the only authorized user of the sheet, to a view only setting where I don't have any ability to change any of my sheets. I found a work around that I can do by clearing the data and cache, and since these are on the cloud I don't lose anything and am again able to use the application normally. If you fix this bug permanently I will change review to 5 stars as I actually love the functionality of this app.\",\n \"No longer opens any Excel files from my phone's internal storage. I just get the message \\\"Can't open this document. Google Sheets was unable to open your spreadsheet.\\\" This is a very recent issue and I can find no workaround for it. Was any functionality remove in recent updates? Update 8/10/2022 ... Most recent update seems to have corrected the issue. No problem opening locally stored docs.\",\n \"Considering Chromebook sales and usage spiked during the pandemic, what with distance learning and work-from-home, a reasonable person would expect Google would have made their spreadsheet app at least stable. I'm sure someone reasonable MUST work in the Sheets department, but one would never guess from the app. It opens a file, I try to go to the cell I was working on, it promptly crashes and must be reopened. How is a body supposed to get any work done in these conditions?!\",\n \"Love the app, but I need to be able to add background images like I would in excel. Fix this in an update, and my rating will go to a 5. Update: Still have this issue, and numerous others with things that work in excel but not here, but it's unfair to keep it at a one because I do get a lot of use out of it, and it still makes the most sense for me with its compatability with other Google products.\",\n \"I have had a great run with this app during the last three years of needing it for work. I rated lower because data on my screen has been blurring anytime I scroll the screen down or up. It clears up at some point but happens again when I need to scroll again. It impairs my vision and distracts me from work tasks. Please fix this issue. :-)\"\n ],\n \"appId\": \"com.google.android.apps.docs.editors.sheets\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.sheets\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.docs.editors.sheets&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.sheets/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.sheets/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.sheets/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google TV\",\n \"description\": \"Google TV app, previously Play Movies & TV, makes it easy to find and enjoy the entertainment you love in one place. With Google TV, you'll be able to: \\n\\nFind what to watch next\\nBrowse 700,000+ movies and TV episodes from across your streaming apps, all in one place and organized into topics and genres. Discover new things with recommendations based on what you love and what’s trending across the services you already have access to. Search for titles to see which streaming apps offer them.\\n\\nSee the latest releases\\nBuy or rent the newest movies and shows right in the Shop tab. Purchases are stored in your Library and can be downloaded to watch when you're not connected. Watch instantly on your laptop, Android phone or tablet, or on your TV with Google TV or on Play Movies & TV where available. \\n\\nOne list for all your discoveries\\nAdd interesting shows and movies to your Watchlist to keep track of your new discoveries and view them later. The Watchlist is shared between all your devices, so you can even add to your Watchlist from your TV or phone and laptop through Search on any browser.\\n\\nUse your phone as your remote \\nWith a remote built right into the app, you can find something great to watch even when the couch has eaten your remote. And you can use your phone’s keyboard to quickly type complicated passwords, movie names or search terms on your Google TV or other Android TV OS device.\\n\\nPantaya is a service only available in the US.\\nSeparate subscriptions required for certain streaming services or access to certain content.\",\n \"descriptionHTML\": \"Google TV app, previously Play Movies & TV, makes it easy to find and enjoy the entertainment you love in one place. With Google TV, you'll be able to:

Find what to watch next
Browse 700,000+ movies and TV episodes from across your streaming apps, all in one place and organized into topics and genres. Discover new things with recommendations based on what you love and what’s trending across the services you already have access to. Search for titles to see which streaming apps offer them.

See the latest releases
Buy or rent the newest movies and shows right in the Shop tab. Purchases are stored in your Library and can be downloaded to watch when you're not connected. Watch instantly on your laptop, Android phone or tablet, or on your TV with Google TV or on Play Movies & TV where available.

One list for all your discoveries
Add interesting shows and movies to your Watchlist to keep track of your new discoveries and view them later. The Watchlist is shared between all your devices, so you can even add to your Watchlist from your TV or phone and laptop through Search on any browser.

Use your phone as your remote
With a remote built right into the app, you can find something great to watch even when the couch has eaten your remote. And you can use your phone’s keyboard to quickly type complicated passwords, movie names or search terms on your Google TV or other Android TV OS device.

Pantaya is a service only available in the US.
Separate subscriptions required for certain streaming services or access to certain content.
\",\n \"summary\": \"Easily discover, watch, and stream your favorite movies & TV shows in one place\",\n \"installs\": \"5,000,000,000+\",\n \"minInstalls\": 5000000000,\n \"maxInstalls\": 7346689938,\n \"score\": 3.9358933,\n \"scoreText\": \"3.9\",\n \"ratings\": 2178223,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.videos/reviews\",\n \"histogram\": {\n \"1\": 377944,\n \"2\": 93609,\n \"3\": 162846,\n \"4\": 199521,\n \"5\": 1344279\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://support.google.com/googleplay\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Video Players & Editors\",\n \"genreId\": \"VIDEO_PLAYERS\",\n \"icon\": \"https://play-lh.googleusercontent.com/ueI8EVWy8As6GEwg4KG9m2q_NtCTMZMCpsTXktthX0j3sSMVTMbUFqKg3QGON2V_pR4\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/h6hIniPwL2mnpuWawUfiCSCfLcnVEjrC3JUJPfrk1-wa9xKKRfV2nO-SkuVwqLSJnLlU\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/lzrF1KhUDYbu_O6fneigfSywIg5qzGY0-LSQsNXjmvSpm3TPNGZdGRmxbBx71ks_-6U\",\n \"https://play-lh.googleusercontent.com/u31tS4Uhml1yWyvjlS9ef-ljffhNIbhpiEoEnXawRhCwlXjY9saJZxjxFJWZhYNJxfe4\",\n \"https://play-lh.googleusercontent.com/NBR476p4OtGtmYhcIhduteIpAs9hwGt6MYFBEdGxUE8CAwaB8xwd5lQ1gxpPCUIBxNC8\",\n \"https://play-lh.googleusercontent.com/oDL1O3zFDIRJrYaIsDIMrn27cSz-aj14pTKFaFbOk_rmSdv3B60R7p4hyu_jxXP3JA4\",\n \"https://play-lh.googleusercontent.com/4hjeEMRtO7LNAsEPZpXCu9W8bHZBknOOrdQarVLTmIGLbODBYubPaff_OSt51GDvQRUf\",\n \"https://play-lh.googleusercontent.com/tmUmZq1RfjX_p7aRe8LmupLjOnkMQbh0E1X7BSfcbUFMaTojmlmwQ96AupicTEC1CA\"\n ],\n \"video\": \"https://www.youtube.com/embed/T1-5ejufxIg?ps=play&vq=large&rel=0&autohide=1&showinfo=0\",\n \"videoImage\": \"https://play-lh.googleusercontent.com/h6hIniPwL2mnpuWawUfiCSCfLcnVEjrC3JUJPfrk1-wa9xKKRfV2nO-SkuVwqLSJnLlU\",\n \"contentRating\": \"Teen\",\n \"adSupported\": false,\n \"released\": \"Jun 3, 2011\",\n \"updated\": 1660935684000,\n \"version\": \"VARY\",\n \"recentChanges\": \"Find where your favorite shows and movies are streaming
* Discover something new in just a few taps
* Add thumbs up or down to get personal recommendations based on what you like to watch
* See which streaming apps offer the show or movie you want to watch\",\n \"comments\": [\n \"The quality of movies have been good. One of the problems I have is that you don't get the extras when you buy a movie and yes I know not all movies have \\\"outtakes\\\", \\\"deleted scenes\\\" or \\\"the making of...\\\" but it be nice to have them on one app instead of having me download another to watch the extra content. Also some movies don't appear on here sometimes saying unavailable but when I look up the same movie on the web I get one that's available but that one doesn't show up on the app at all.\",\n \"Loved this app until it was replaced with the play store to purchase content. Can't pre-order movies. Can't see upfront how much a movie is when looking at the to purchase tab. You need to tap on every movie to see how much it cost. Not able to see new content. Every section is showing me the same stuff. Wish it was in the format like the play store.\",\n \"Approximately half of the 1k or so movies I purchased here will no longer play. Any help in this matter would be appreciated. Update after google play movies and TV was axed, the users were assured the shopping experience would be the same. Unfortunately, it is not. Now instead of all the categories many people are already used to and happy with, we get so many ads for one subscription, or another. I come here to buy movies and show, not subscriptions.(I could've stayed with cable for that.🤷\\u200d\",\n \"I use the Google TV app mostly for remote control over my TV, I find it faster than the notifications panel TV remote built in to Android as I can map the app to a double press to the power button. The issue is, for both of these ways for accessing the remote, the TV is not automatically paired once the app is open, and you have to select it, everytime. I would love a feature that keeps the TV paired to the app. A light mode like the Google App would be nice, or a bubble like the camera has.\",\n \"This app is beyond buggy. When I try to view what's in my library, I get a network error. Also, bring back the ability to review movies. This app is a bad attempt to be like Apple with their Apple TV app. Google for once just do your own thing. Android is a fragmented mess. So far behind when it comes to quality when it comes to everything Google\"\n ],\n \"appId\": \"com.google.android.videos\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.videos\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.videos&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.videos/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.videos/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.videos/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Gboard - the Google Keyboard\",\n \"description\": \"Gboard has everything you love about Google Keyboard—speed and reliability, Glide Typing, voice typing, Handwriting, and more\\n\\nGlide Typing — Type faster by sliding your finger from letter to letter\\n\\nVoice typing — Easily dictate text on the go\\n\\nHandwriting* — Write in cursive and printed letters\\n\\nEmoji Search* — Find that emoji, faster\\n\\nGIFs* — Search and share GIFs for the perfect reaction.\\n\\nMultilingual typing — No more switching between languages manually. Gboard will autocorrect and suggest from any of your enabled languages.\\n\\nGoogle Translate — Translate as you type in the keyboard\\n\\n* Not supported on Android Go devices\\nHundreds of language varieties, including:\\nAfrikaans, Amharic, Arabic, Assamese, Azerbaijani, Bavarian, Bengali, Bhojpuri, Burmese, Cebuano, Chhattisgarhi, Chinese (Mandarin, Cantonese, and others), Chittagonian, Czech, Deccan, Dutch, English, Filipino, French, German, Greek, Gujarati, Hausa, Hindi, Igbo, Indonesian, Italian, Japanese, Javanese, Kannada, Khmer, Korean, Kurdish, Magahi, Maithili, Malay, Malayalam, Marathi, Nepali, Northern Sotho, Odia, Pashto, Persian, Polish, Portuguese, Punjabi, Romanian, Russian, Saraiki, Sindhi, Sinhala, Somali, Southern Sotho, Spanish, Sundanese, Swahili, Tamil, Telugu, Thai, Tswana, Turkish, Ukrainian, Urdu, Uzbek, Vietnamese, Xhosa, Yoruba, Zulu, and many more! Visit https://goo.gl/fMQ85U for the full list of languages supported\\n\\nWear OS support: Everything you love about the Google Keyboard now available on your watch—speed and reliability, Glide Typing, Voice Typing, and more\\n\\nGlide Typing — Type faster by sliding your finger from letter to letter\\n\\nVoice Typing — Easily dictate text on the go\\n\\nEmoji Typing — Find your favorite emojis on your wrist\\n\\nAll Wear OS languages supported, including:\\nChinese (Mandarin, Cantonese, and others), Czech, Danish, Dutch, English, Finnish, French, German, Hindi, Indonesian, Italian, Korean, Norwegian, Polish, Portuguese, Russian, Spanish, Swedish, Thai, Turkish, Vietnamese, and many more!\\n\\nPro tips:\\n• Gesture cursor control: Slide your finger across the space bar to move the cursor\\n• Gesture delete: Slide left from the delete key to quickly delete multiple words\\n• Make the number row always available (enable in Settings → Preferences → Number Row)\\n• Symbols hints: Show quick hints on your keys to access symbols with a long press (enable in Settings → Preferences → Long press for symbols)\\n• One handed mode: On large screen phones, pin keyboard to the left or the right of the screen\\n• Themes: Choose your own theme, with or without key borders\",\n \"descriptionHTML\": \"Gboard has everything you love about Google Keyboard—speed and reliability, Glide Typing, voice typing, Handwriting, and more

Glide Typing — Type faster by sliding your finger from letter to letter

Voice typing — Easily dictate text on the go

Handwriting* — Write in cursive and printed letters

Emoji Search* — Find that emoji, faster

GIFs* — Search and share GIFs for the perfect reaction.

Multilingual typing — No more switching between languages manually. Gboard will autocorrect and suggest from any of your enabled languages.

Google Translate — Translate as you type in the keyboard

* Not supported on Android Go devices
Hundreds of language varieties, including:
Afrikaans, Amharic, Arabic, Assamese, Azerbaijani, Bavarian, Bengali, Bhojpuri, Burmese, Cebuano, Chhattisgarhi, Chinese (Mandarin, Cantonese, and others), Chittagonian, Czech, Deccan, Dutch, English, Filipino, French, German, Greek, Gujarati, Hausa, Hindi, Igbo, Indonesian, Italian, Japanese, Javanese, Kannada, Khmer, Korean, Kurdish, Magahi, Maithili, Malay, Malayalam, Marathi, Nepali, Northern Sotho, Odia, Pashto, Persian, Polish, Portuguese, Punjabi, Romanian, Russian, Saraiki, Sindhi, Sinhala, Somali, Southern Sotho, Spanish, Sundanese, Swahili, Tamil, Telugu, Thai, Tswana, Turkish, Ukrainian, Urdu, Uzbek, Vietnamese, Xhosa, Yoruba, Zulu, and many more! Visit https://goo.gl/fMQ85U for the full list of languages supported

Wear OS support: Everything you love about the Google Keyboard now available on your watch—speed and reliability, Glide Typing, Voice Typing, and more

Glide Typing — Type faster by sliding your finger from letter to letter

Voice Typing — Easily dictate text on the go

Emoji Typing — Find your favorite emojis on your wrist

All Wear OS languages supported, including:
Chinese (Mandarin, Cantonese, and others), Czech, Danish, Dutch, English, Finnish, French, German, Hindi, Indonesian, Italian, Korean, Norwegian, Polish, Portuguese, Russian, Spanish, Swedish, Thai, Turkish, Vietnamese, and many more!

Pro tips:
• Gesture cursor control: Slide your finger across the space bar to move the cursor
• Gesture delete: Slide left from the delete key to quickly delete multiple words
• Make the number row always available (enable in Settings → Preferences → Number Row)
• Symbols hints: Show quick hints on your keys to access symbols with a long press (enable in Settings → Preferences → Long press for symbols)
• One handed mode: On large screen phones, pin keyboard to the left or the right of the screen
• Themes: Choose your own theme, with or without key borders\",\n \"summary\": \"Fast and smart typing with Emojis, GIFs, and more\",\n \"installs\": \"5,000,000,000+\",\n \"minInstalls\": 5000000000,\n \"maxInstalls\": 5783560946,\n \"score\": 4.5194936,\n \"scoreText\": \"4.5\",\n \"ratings\": 11299850,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.inputmethod.latin/reviews\",\n \"histogram\": {\n \"1\": 549659,\n \"2\": 219021,\n \"3\": 557310,\n \"4\": 1459262,\n \"5\": 8514555\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"gboard-dev-support@google.com\",\n \"developerWebsite\": \"https://support.google.com/gboard\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/X64En0aW6jkvDnd5kr16u-YuUsoJ1W2cBzJab3CQ5lObLeQ3T61DpB7AwIoZ7uqgCn4\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/tZe2v0AyCAoYvs8G7lx2AR5FztQen6sTrlSAURfnSfQ1XhviNP1RpME2M5OPkFqlBXo\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/wCwS_mqlZv9EvtJ2p8WxABoiKsKN24W3rPhUTf_iKdYbjxvieQgHnJpyBxmEM3Yrnt8\",\n \"https://play-lh.googleusercontent.com/gc_ZvNGbJc-0IR0XEept1AcsLt2i3hUSfy3Ue9cN9wJAo0KeEdtc_OpVU3oaR-1bduzL\",\n \"https://play-lh.googleusercontent.com/vL5_QCpO7sNESSGcdBJ9YXUNyLfd4HIp0YQf_D5ejE6Qr8SYvUN2Zlr2r_o0PSLf5w\",\n \"https://play-lh.googleusercontent.com/xXG-hKhVN2Zu8uBGbn9_A0WVJ4IrAJe-60Pe_ZOAsRGbFsFKxUg8mR27TdhKKgFEIQw\",\n \"https://play-lh.googleusercontent.com/_yspBFWlK8d2n158XxN22mJVj9eUUjjfgIwWJghKfxdov9ZLcJIeTsvLzRf6D2weBfY\",\n \"https://play-lh.googleusercontent.com/BmZDS1uzwbGNvFerZTw3cilCygPu1Jtx13c_pVZRepR9T1zORg3R3qpslurnoBjJYOnr\",\n \"https://play-lh.googleusercontent.com/xJHnXUP0gGcpQnPBzfwjBYBl1p4f65BnrUVcvXxX_C-Av-9nPRpoGYjmwNQDilsUfHk\",\n \"https://play-lh.googleusercontent.com/OFVebCpfPZJb1e76wTpx85Yckr4vLf66c87rwbEogODtrRv8xMxpBllc_B-9scqNi2Aj\",\n \"https://play-lh.googleusercontent.com/GYBxG2fhtKWDbY4Qzd2XH8H5M-xlynGt_fRtGjvs6g4SM_z63ma3Ig1dl44zW-D-4j4\",\n \"https://play-lh.googleusercontent.com/D5E7gEfOytUYXa0vod54LFm8H_k1d4GvAhdcL0n4tUEAQQDEzYeCfcgJj1UOT-RZfg\",\n \"https://play-lh.googleusercontent.com/wh6iIUFgVjOTdq1wHjT2M5_cqWE02fGKI9VwgNLleIsPO1RPGyV--1UPaTD-K5LswvE\",\n \"https://play-lh.googleusercontent.com/TwK9LWVFqhpj_IIOQ_beNj4OBvt9v9HYCcH1Zq2-shnFVA5J-u6ZiHdwy-0Q-A-jxw\",\n \"https://play-lh.googleusercontent.com/faXVTTqj7YG_ZeDgdi-YCxdkg_qz-6TTR9F4vx5CuBwYWN6-6dn2e5534Qn3syJJ8CA\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Jun 5, 2013\",\n \"updated\": 1661372472000,\n \"version\": \"VARY\",\n \"comments\": [\n \"Peak Android typing experience. You seriously can't get much better than this. Plenty of customizable options for those who like their experience a specific way (Which I totally get as I am one of those people). Such examples can consist of customizing the height of the keyboard between 7 different heights. Don't like the number row? No problem, get rid of it! Want to spice up your keyboard with different colors? Do it! This is a perfect keyboard. 100% recommend to everyone! The absolute best!\",\n \"This is my favorite keyboard to use on my phone. I love all the different ways you can personalize the keyboard to my specific style. As well as how quickly the \\\"next word\\\" suggestions pick up on my lingo. It's like it already is in my head which makes for super fast messaging! The other feature I cannot live without is the option to switch to voice typing with a simple click on the microphone icon conviently located in the upper right hand corner of the keyboard at all times. 100/100 Gboard!\",\n \"Opacity setting would be 🌚nice💸 but I can't find that option because it's buried in a submenu somewhere. I also wish I had two options for auto rotate phone screen so I can get it to let me use my phone upside down, because, my phone's power cord gets shoved down into the top of the thing its on, like my bed, or a desk, or the top of the washing machine and dryer( it's the closest thing I have to a vehicle right now) using the phone upside down would allow the power jack to remain unbroken.\",\n \"Great app!! If anyone can take this suggestion... I am left-handed and want to add the Emoji icon on the right side of the spacebar. Could you add a feature where the Emoji button is on the right side instead of left? Thank you in advance!!! I constantly click on it on accident when trying to lock the space button and it's very frustrating. Love the app otherwise!!\",\n \"I like the app, but I don't like the fact that I can't customize the \\\"main person\\\" emojis. It only offers the male with orange shirt. Would be nice to use a female like other apps offer. Also, would be nice to be able to change the background in messages, or color scheme and have more options for personalizing the keyboard instead of just colors. I have those options on my factory keyboard.\"\n ],\n \"appId\": \"com.google.android.inputmethod.latin\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.inputmethod.latin\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.inputmethod.latin&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.inputmethod.latin/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.inputmethod.latin/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.inputmethod.latin/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Play Games\",\n \"description\": \"Games are more fun with the Google Play Games app. We'll help you find your next favorite game – from action to puzzles. And with \\\"Instant play,\\\" many games require no installation. Really. Save your progress and track your achievements as you level up. Plus, you can pick up where you left off from any device.\\n\\nKEY FEATURES\\n• Instant play: There’s no installation needed – look for the \\\"Instant play\\\" button to instantly play full games.\\n• Built-in Google games: Play Solitaire, Minesweeper, Snake, PAC-MAN, Cricket, and Whirlybird – even when you’re offline.\\n• Save your progress: Your progress is automatically saved to the cloud when you see \\\"Progress saved by Play Games.\\\"\\n• Gamer profile: Create a custom gamer ID, unlock achievements, earn XP, and level up.\\n• Gameplay recording: Easily record and share your best gameplay moments.\",\n \"descriptionHTML\": \"Games are more fun with the Google Play Games app. We'll help you find your next favorite game – from action to puzzles. And with "Instant play," many games require no installation. Really. Save your progress and track your achievements as you level up. Plus, you can pick up where you left off from any device.

KEY FEATURES
Instant play: There’s no installation needed – look for the "Instant play" button to instantly play full games.
Built-in Google games: Play Solitaire, Minesweeper, Snake, PAC-MAN, Cricket, and Whirlybird – even when you’re offline.
Save your progress: Your progress is automatically saved to the cloud when you see "Progress saved by Play Games."
Gamer profile: Create a custom gamer ID, unlock achievements, earn XP, and level up.
Gameplay recording: Easily record and share your best gameplay moments.\",\n \"summary\": \"Play games instantly, save progress, and earn achievements.\",\n \"installs\": \"5,000,000,000+\",\n \"minInstalls\": 5000000000,\n \"maxInstalls\": 5012182432,\n \"score\": 4.2989445,\n \"scoreText\": \"4.3\",\n \"ratings\": 12966142,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.play.games/reviews\",\n \"histogram\": {\n \"1\": 1310554,\n \"2\": 341474,\n \"3\": 749223,\n \"4\": 1324827,\n \"5\": 9240013\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"googleplay-support@google.com\",\n \"developerWebsite\": \"http://play.google.com/store/apps/category/GAME\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Entertainment\",\n \"genreId\": \"ENTERTAINMENT\",\n \"icon\": \"https://play-lh.googleusercontent.com/szHQCpMAb0MikYIhvNG1MlruXFUggd6DJHXkMPG1H4lJPB7Lee_BkODfwxpQazxfO9mA\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/9gOTPuX04WeVNByX9Z1n6T2k11lS3Ds8w7wEX1VQo_lXQ7q1lHEHHkEcUeGTyeGgL0Y7\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/f6i2ZuqZ5He5RgmLR8Hfesx9YvTvlpTg3MmQUVvNmkiUn3W5SO7E_qskG9Qn2jr6O7e_\",\n \"https://play-lh.googleusercontent.com/KbCgQw8Cv0tkAYX2XSldOqSdxOiJLjxE9JG3EfIwNeF9wnTio14kPDi2Mhre-xHARxI\",\n \"https://play-lh.googleusercontent.com/KYY72PYyn9aajJx1CEKdIwWdTE-UdG4UUkx0pnqlAz8p9OgT8pkMsjuHJdzzz7X3UvM\",\n \"https://play-lh.googleusercontent.com/Joo9WSgjhjXaT3NGLw0gFCJcA0096e-sgtiV8xgWUYvinKBGb8PAq62ccIANQF3l27su\",\n \"https://play-lh.googleusercontent.com/BtbRnEWT5j5m_dpHLjFJuWaCu60xZGa0J8pDpszBt9jFrrURuaPExkQZTVT0pqZZTp7V\",\n \"https://play-lh.googleusercontent.com/CPv_031C9AknKFnA3CdCmHPwx2A0M2tKCa8tbQ5OpH-1TWza632w4Gxevw1Tykp3Jw\",\n \"https://play-lh.googleusercontent.com/8eb8dsvDQ4kmG-tDGOtKLYjDKfdj2yrf_ZSQiCUuM5KjPiKx-S3OjMGSA_7L6juFLw\",\n \"https://play-lh.googleusercontent.com/GBEA586J_WAWnZAHH2w_Q3QzEk7NOhOcZ5E-RIaexT4tq8MLF3EhPIfwaobZ4MxFNXI\",\n \"https://play-lh.googleusercontent.com/VdPtn7XiAQv6gY1jfUqHuwZAx9uYTcD1gbPvDvmHgY-1LaYEwUjk3JZV39KHaTZuEA\",\n \"https://play-lh.googleusercontent.com/_FUwUq77-1ucueJyTExIfwxjc9LPVvtkclD4a7MEx4C2AyUyJc3IEsNdjAcpdooSi50\",\n \"https://play-lh.googleusercontent.com/-MHkIju8VmybVhHdeCx2liNkWKXZCTZpDSXeIiFZ49RH3PCmbSWMrhIEH_mMCvIvtAA\",\n \"https://play-lh.googleusercontent.com/7hbaRgjvOko8XxU3xkhDJg-crlZnX06S6J4Oip1Ao8iH32gnQnkF2lK9xCs7Y4lu9Q\"\n ],\n \"video\": \"https://www.youtube.com/embed/_w8FQfQZ1SA?ps=play&vq=large&rel=0&autohide=1&showinfo=0\",\n \"videoImage\": \"https://play-lh.googleusercontent.com/9gOTPuX04WeVNByX9Z1n6T2k11lS3Ds8w7wEX1VQo_lXQ7q1lHEHHkEcUeGTyeGgL0Y7\",\n \"contentRating\": \"Teen\",\n \"contentRatingDescription\": \"Diverse Content: Discretion Advised\",\n \"adSupported\": false,\n \"released\": \"Jul 24, 2013\",\n \"updated\": 1661966772000,\n \"version\": \"VARY\",\n \"comments\": [\n \"Amazing! I love getting into a game and it saves my progress! The only thing that annoys me is that sometimes when I get into a new game, it'll do this weird thing to sign into Google Play Games. It will grey out the screen a bit and then the black bar will come down like a squeegee and go down the screen to remove the tint. I don't know what that is. ✌\",\n \"For being a core android app, this app is complete garbage! I get network issues all the time, not because of my network that works for everything else, JUST this app. Some downloads freeze halfway, no matter how many times I restart, and other times I get a image of a sad satellite saying Try Again. I also have \\\"auto update\\\" turned on but every time I check there's like 20+ apps waiting to update. It's also just a bad, confusing interface. Come on Google, get your act together!!!\",\n \"Meh, I like the free solitaire, however it would be great if it would stay muted. I click \\\"hard\\\" and then have .5 seconds to click mute before it blasts out my speakers. Also snake is broken entirely. The balls and things to get work, but visually the field is blank for me. Possibly the background is drawn on top of everything.\",\n \"To be honest it takes too long to load, too long to finish each scene and it kicks you off and you lose your energy. This is the only game that causes a loss in your internet connection And when you make a purchase it may say successful but you do not always get your purchase. I love this game but you should not have to use all your energy on 1 scene of the same frame. And should be getting more coins and money for the purchase price.\",\n \"No problems with the app itself. Just wish it allowed transferring as much of it as possible to an SD card. Have an older tablet where Samsung is not upgrading the OS past version 5.1.1. This version won't see the entire SD card as internal storage. This issue is not exclusive to Google Play Games. It's just a pain when the tablet's internal storage can't be upgraded beyond 32 GB and it's running out of space. Am doing everything possible to disable unused Samsung apps, move all data files to the SD card, and much as other apps as they allow to the SD card. So every app that doesn't allow this is a problem when trying to squeeze more life out of a 4.5 year old tablet.\"\n ],\n \"appId\": \"com.google.android.play.games\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.play.games\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.play.games&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.play.games/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.play.games/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.play.games/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google News - Daily Headlines\",\n \"description\": \"Google News is a personalized news aggregator that organizes and highlights what’s happening in the world so you can discover more about the stories that matter to you.\\n\\nWith Google News, you’ll find:\\n\\nYOUR BRIEFING: It can be nearly impossible to keep up with every story you care about, Your Briefing makes it easy to stay in the know about what’s important and relevant in your world. It updates throughout the day to bring you the top local, national, and world headlines, plus personalized news tailored to your interests.\\n\\nLOCAL NEWS: Explore your community through stories and articles from news outlets in your local area. Customize and choose multiple locations so you can know what’s happening near you or wherever home is.\\n\\nFULL COVERAGE: Dive deeper into a story with multiple perspectives. The Full Coverage feature organizes everything online about a story, surfacing and highlighting coverage from different outlets and mediums. With just a tap, you’ll uncover how the story is unfolding and how everyone is reporting on it.\\n\\nSTORIES FOR YOU: The For You section delivers personalized news related to your interests. Take control and customize the articles you see by following the topics and sources you care about.\\n\\nACCESS FROM ANY DEVICE: Google News is designed to meet the needs of users with different phones and levels of connection. When your connection isn’t strong or you need to save data, Google News will continue to work smoothly by slimming down the size of images and downloading less data. Articles can be downloaded over Wi-Fi to save for later when you are offline.\\n\\nDo you prefer to access your news on your Laptop or Desktop? Pair the Google News mobile app with our Desktop website, news.google.com, so you can stay up to date and access the news no matter what device you’re on.\",\n \"descriptionHTML\": \"Google News is a personalized news aggregator that organizes and highlights what’s happening in the world so you can discover more about the stories that matter to you.

With Google News, you’ll find:

YOUR BRIEFING: It can be nearly impossible to keep up with every story you care about, Your Briefing makes it easy to stay in the know about what’s important and relevant in your world. It updates throughout the day to bring you the top local, national, and world headlines, plus personalized news tailored to your interests.

LOCAL NEWS: Explore your community through stories and articles from news outlets in your local area. Customize and choose multiple locations so you can know what’s happening near you or wherever home is.

FULL COVERAGE: Dive deeper into a story with multiple perspectives. The Full Coverage feature organizes everything online about a story, surfacing and highlighting coverage from different outlets and mediums. With just a tap, you’ll uncover how the story is unfolding and how everyone is reporting on it.

STORIES FOR YOU: The For You section delivers personalized news related to your interests. Take control and customize the articles you see by following the topics and sources you care about.

ACCESS FROM ANY DEVICE: Google News is designed to meet the needs of users with different phones and levels of connection. When your connection isn’t strong or you need to save data, Google News will continue to work smoothly by slimming down the size of images and downloading less data. Articles can be downloaded over Wi-Fi to save for later when you are offline.

Do you prefer to access your news on your Laptop or Desktop? Pair the Google News mobile app with our Desktop website, news.google.com, so you can stay up to date and access the news no matter what device you’re on.\",\n \"summary\": \"Stay informed with latest world & local news personalized for your interest\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 3315041970,\n \"score\": 4.133473,\n \"scoreText\": \"4.1\",\n \"ratings\": 1708798,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.magazines/reviews\",\n \"histogram\": {\n \"1\": 198820,\n \"2\": 70666,\n \"3\": 129256,\n \"4\": 214877,\n \"5\": 1095153\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://news.google.com/about\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"News & Magazines\",\n \"genreId\": \"NEWS_AND_MAGAZINES\",\n \"icon\": \"https://play-lh.googleusercontent.com/b3MqZswO8F7j3lcdH01kxzaeHa7vUndy7ma_JwdM_j_Vpj8LKZcKt0HmpORQ7CKF2A\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/rwqVnx3lkmjy7XBaHDTsPSL7LNFd3LU-wLMN-YhUXVFOZWxEWVTe7M4nNTe2qqNWgg\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/w8zXKxd1eelrnMaaP-nIt_ANvlyYFNahafAW650WyJr0lV90ZAyl77lTxLL4n4bgqfcR\",\n \"https://play-lh.googleusercontent.com/dgRPfVjGsoYKPi4SkHnmTZq_kbISKniLdlgayJL_MgbmBGKUesGT93A9EhP-eFNH0A\",\n \"https://play-lh.googleusercontent.com/slUxI0sYwNMr_MrXiuY-286PpA8y11vtjoMIAwF-XcNCgsA4ZLDMjM02mhjSwWoxwA\",\n \"https://play-lh.googleusercontent.com/kgH2i76nS0HdsbtOCrHutssGTnFLZ56mWMUMqdSiirtbcFalKeBV0wzi22pMkbA2NUQ9\",\n \"https://play-lh.googleusercontent.com/xa-fCZJYplHx4O2yIii0XgDBS88OOHoPQEkq7OZCzqsX8274j72Voh3yZeVl8i8w3w\",\n \"https://play-lh.googleusercontent.com/KZV_JpwbN0SmKxGF9NTJdDrL1Emye0ziPBfXsM3ECfNne2xKg41L-ZWKRMquDuBAh1g\",\n \"https://play-lh.googleusercontent.com/vY1nlLT0RKVW6HFSXP8EWViB8KoalBPNrM425-eoSNMqeUmiLki7uYnbSYkZVWaJtvA\",\n \"https://play-lh.googleusercontent.com/aHRy4If_9ifrBXcW6z8wPj73RlKrcwGa3aVfV8xDZxT_nwE8Eayp-mC7zjMxGUkrqQ\",\n \"https://play-lh.googleusercontent.com/KYz1_YLRQYKElq9SkIWBNJTjJz1fZuZkkQloyVTycC_SRy2usfc-8J_I5VSBwYDGzNN0\",\n \"https://play-lh.googleusercontent.com/HiLICsjyOgNfH68HseRcsZmAwohvLn7bDmou_SnbsLCR_N9BIovqzsMwAeMc18cCDt0\",\n \"https://play-lh.googleusercontent.com/gfeGQ5r2TpUsFXEsKcFCQgrVW6GOSuWeiHyolp99xgLg53Y1fpuCpNKbNskBUQJD6YA\",\n \"https://play-lh.googleusercontent.com/eYSedCYw7VJkGuXKANv-MtM6uVU5PfNeu2M6tsgE_SFjMp65TfQrlebgzX-d5JGclQ\",\n \"https://play-lh.googleusercontent.com/HgKvcmd7717LEmdQ6mMczUN_dd41buvP8Nkh25D9RYg53BgE2ZPzbe_vzZ9P6VyJq1bi\",\n \"https://play-lh.googleusercontent.com/WrFiGdqLbNGKpH3XCbOHNppjpepbxYZUGkYPMzrshGU5gAGdtDu__nhhY9kUoeYryP7G\",\n \"https://play-lh.googleusercontent.com/YYGj2O1TqtUoDc4Yy9rDCWex-1eyjf2XD0nYyH4J4OrS5jIi2BJBy6vaZdq_v-ZzXEo\",\n \"https://play-lh.googleusercontent.com/AKBmJzDp4_qb2T-CswnBDUfHqc-oly9ZMDQdNyTnh90yRD3Y9hMtYK_rHX-S_kdC3zU\",\n \"https://play-lh.googleusercontent.com/zYvEoF-_YVP2rnywIxJ_8AY25D9iUC1Nzd5JAMIRDcHUDZnrDSY7tTDV0122LbLR1rE\",\n \"https://play-lh.googleusercontent.com/t0v68A3GAPHTPH30ibMVIOxtjM4VZbBPghpX3p7wN_w1k_nl93RRiTk7VJm2PrOoDKmG\",\n \"https://play-lh.googleusercontent.com/qj71PXOpsyU6d4gOoKHasCrFO1tuXrC1krFwZoxpzt_nfOmnCs75O-fYpE2uEj7bta8\",\n \"https://play-lh.googleusercontent.com/5cssJdjM9gJXYFmf5Fl7TtdWIobHq2y4GUdnpFZGHLb9I1kE0eC6h1YYmoAIX5GGRik\",\n \"https://play-lh.googleusercontent.com/rV7n5-xlv3gwbX8tb7F7tA0Drv57-l9UusEF1cbA6oVnlee9cmY4qh_rIHog1tSHrPo\"\n ],\n \"contentRating\": \"Teen\",\n \"adSupported\": true,\n \"released\": \"Jun 27, 2012\",\n \"updated\": 1661270488000,\n \"version\": \"VARY\",\n \"recentChanges\": \"· Bug fixes and performance improvements\",\n \"comments\": [\n \"Can you please add \\\"save for later\\\" and \\\"more like this\\\" buttons? Sometimes I don't have time to read right that second but it captures my interest, only for all the stories I hearted to go missing after the auto-refresh. There's a bookmark article button, but that's only if you click into the story. I appreciate getting to dismiss what I don't like, but the algorithm isn't swift enough to understand what I DO like, at least not now. A \\\"more\\\" button would be easier. Thank you.\",\n \"Update: Yep, you fixed it with today's (July 7) update! Works fine again. Thanks Google! Today's (June 6, 2022) update has rendered the app useless. It crashes instantly upon opening and says: \\\"Unfortunately, Google News stopped.\\\" And it continues to run and crash in the background. Needs fixed. Good app until this. Will update review when fixed.\",\n \"App won't even start after the 6 July update. Android just says the app has a big and won't open. Cleared cache, cleared data, uninstalled and reinstalled, still nada. I have no idea what's going on. EDIT: I want to leave the original review for the fact that the Google team responded insanely fast and I've redownloaded the app and everything works as expected. Thank you sincerely to the Devs. I'm not a Dev but I work with them so I know it's difficult to respond to user bugs. Y'all Rock!\",\n \"It's been more than 2 year since the Android version of this for ChromeOS became a Progressive Web App, and it has nearly achieved parity. It has a Dark Theme, open all links in-app, and an improved UI. But there is no Direct Sharing of articles to other Google News users, and no Push Notifications. It also is not fully touchscreen friendly. Certain menus are hidden until you hover a Mouse Cursor over them. This feature gap has existed for too long now. Please address these shortcomings ASAP.\",\n \"Very select news stories and sources, it comes across as being biased. Despite loading my \\\"interests\\\" list with certain things, they'll still show what they think you should see. It's fine at best, I'd suggest finding other news aggregate options. Update: yikes, your reply of \\\"help you make sense of the news\\\" is kinda alarming. Thank you for confirming my suspicions\"\n ],\n \"appId\": \"com.google.android.apps.magazines\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.magazines\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.magazines&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.magazines/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.magazines/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.magazines/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Home\",\n \"description\": \"Set up, manage, and control your Google Nest, Google Wifi, Google Home, and Chromecast devices, plus thousands of compatible connected home products like lights, cameras, thermostats, and more – all from the Google Home app.\\n\\nOne view of your home.\\nThe Home tab gives you shortcuts for the things you do most, like playing music or dimming the lights when you want to start a movie. Control it all with just a tap or two – and get to the good stuff faster. The Feed tab highlights important events in your home in one place. Here, you’ll also find ways to get more out of your devices and improve your home setup.\\n\\nCreate Routines that allow you to turn on compatible lights, check the weather, play the news, and more with one simple command.\\n\\nSee all the active audio and video streams on your compatible home devices in one place, change the volume, skip to the next track, or quickly change which speakers they’re playing from.\\n\\nUnderstand what’s going on at home with a glance.\\nThe Google Home app is designed to show you the status of your home and keep you up to date with what you may have missed. Check in on your home anytime and see a recap of recent events. You can also get a notification if something important happens while you’re away.\\n\\nSet up your Nest Wifi and Google Wifi in minutes using the Google Home app. Run speed tests, set up a guest network, and easily share your Wi-Fi password with family and friends. Use parental controls like Wi-Fi pause to manage online time for the kids. Automatically prioritize video conferencing and gaming traffic on all devices, or decide which devices to prioritize for all traffic types. Get more insights on your network, whether it’s a notification when a new device joins your network or detailed insights for troubleshooting a poor internet connection.\\n\\nA helpful home is a private home.\\nProtecting your privacy starts with one of the world’s most advanced security infrastructures, which we build directly into Google products so that they’re secure by default. The built-in security in your Google Account automatically detects and blocks threats before they reach you, so that your personal information is secure.\\n\\nWe build privacy tools that keep you in control.\\nControl your Google Assistant activity, privacy settings, information, and personal preferences. See your activity, delete it manually, or choose to delete it automatically. Control your privacy on Google Assistant with your voice. Ask questions like “Where can I change my privacy settings?” to get answers to the most common privacy and security questions.\\n\\nVisit the Google Nest Safety Center at safety.google/nest to learn more about how we protect your information and respect your privacy.\\n\\n* Some products and features may not be available in all regions. Compatible devices required.\",\n \"descriptionHTML\": \"Set up, manage, and control your Google Nest, Google Wifi, Google Home, and Chromecast devices, plus thousands of compatible connected home products like lights, cameras, thermostats, and more – all from the Google Home app.

One view of your home.
The Home tab gives you shortcuts for the things you do most, like playing music or dimming the lights when you want to start a movie. Control it all with just a tap or two – and get to the good stuff faster. The Feed tab highlights important events in your home in one place. Here, you’ll also find ways to get more out of your devices and improve your home setup.

Create Routines that allow you to turn on compatible lights, check the weather, play the news, and more with one simple command.

See all the active audio and video streams on your compatible home devices in one place, change the volume, skip to the next track, or quickly change which speakers they’re playing from.

Understand what’s going on at home with a glance.
The Google Home app is designed to show you the status of your home and keep you up to date with what you may have missed. Check in on your home anytime and see a recap of recent events. You can also get a notification if something important happens while you’re away.

Set up your Nest Wifi and Google Wifi in minutes using the Google Home app. Run speed tests, set up a guest network, and easily share your Wi-Fi password with family and friends. Use parental controls like Wi-Fi pause to manage online time for the kids. Automatically prioritize video conferencing and gaming traffic on all devices, or decide which devices to prioritize for all traffic types. Get more insights on your network, whether it’s a notification when a new device joins your network or detailed insights for troubleshooting a poor internet connection.

A helpful home is a private home.
Protecting your privacy starts with one of the world’s most advanced security infrastructures, which we build directly into Google products so that they’re secure by default. The built-in security in your Google Account automatically detects and blocks threats before they reach you, so that your personal information is secure.

We build privacy tools that keep you in control.
Control your Google Assistant activity, privacy settings, information, and personal preferences. See your activity, delete it manually, or choose to delete it automatically. Control your privacy on Google Assistant with your voice. Ask questions like “Where can I change my privacy settings?” to get answers to the most common privacy and security questions.

Visit the Google Nest Safety Center at safety.google/nest to learn more about how we protect your information and respect your privacy.

* Some products and features may not be available in all regions. Compatible devices required.\",\n \"summary\": \"Set up and control your compatible Nest, Chromecast, and Google Home devices.\",\n \"installs\": \"100,000,000+\",\n \"minInstalls\": 100000000,\n \"maxInstalls\": 318577681,\n \"score\": 4.2614393,\n \"scoreText\": \"4.3\",\n \"ratings\": 1616946,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.chromecast.app/reviews\",\n \"histogram\": {\n \"1\": 149134,\n \"2\": 54570,\n \"3\": 86207,\n \"4\": 261529,\n \"5\": 1065495\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"8.0\",\n \"androidVersionText\": \"8.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://cast.google.com/chromecast/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"https://www.google.com/intl/en_US/chrome/browser/privacy/\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Lifestyle\",\n \"genreId\": \"LIFESTYLE\",\n \"icon\": \"https://play-lh.googleusercontent.com/vr1isZKzTtlok9P81H6cR98iqpPhkuQHJp19Z5kPej3QlhNTnLohXpqcgMqrQpyegA\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/w5t-6BTNJyulwgkI0yMfm5CBJj_6yBIn1cYO8LuJNg_KEiVl6dwG6BtwivObaIf2nbg\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/XkDw68lcMXC7qB6vt7nCK_F_65pbBQqmE9zt7KbZmIkEJmPwYUUAbyxHnFYadk_4vgLW\",\n \"https://play-lh.googleusercontent.com/RILIio_EjbtyWyL8vfn1M84r9oVA7-_4MWHmQG4jHo09fOV3tZk6Xgfs030BUOt1jyX9\",\n \"https://play-lh.googleusercontent.com/k8eEvUgyZQCEKz8-StKX3z-RITF_CcaR_Azecvd6mi9zLzm_-vSDnSsQtitJ9bfSTEc\",\n \"https://play-lh.googleusercontent.com/5uaw-FsfyL20D3jSpcrtHPP-6v8uzkaatCW42tMdynSpCjImlfktU4jCuQUABOsSbV0\",\n \"https://play-lh.googleusercontent.com/5K6M1orFRTM0VS3AK7fDRtPlAJgQGrx_l7Z1tixQhwZQw1VqLRcaptmyLK_47c-sv7c\",\n \"https://play-lh.googleusercontent.com/zg4_QUFu9RmSGJ2ji1LYki0oD--W1YCdE8_cQbueSG3ijH07dYkdBWdjha4-ZGtKfcU\",\n \"https://play-lh.googleusercontent.com/83p64EZ4cagMJyFWif6DIp_pwwMmwDntFEdf_4JsiLttwgwXbFCS4IApQ0mR3sDHXOs\",\n \"https://play-lh.googleusercontent.com/TeigXuKgL-popkKzirBAClAn6Km8GN0ObOTBSv66zn4XAjuaWgNUQP-o2guP9-yd3yw\",\n \"https://play-lh.googleusercontent.com/rFr2cXxTb-pz7FuRuCt0FflIuJZSlrHQfy7_mIK_SXg6kbgQweXGOwTPaZ1VzqPdyg\",\n \"https://play-lh.googleusercontent.com/XPPxK87xq-VLUt00Qn0XcVkCfobtp8CUVVHsDaLOpORNKfVBks96b21RbhGVMfiZdA\",\n \"https://play-lh.googleusercontent.com/a1a3G4R5mnmKSOVWcM52tXtfrFJY98X5H_G5PjkQqz1VFDc1wa2BEznpHAQbm3ePbuo\",\n \"https://play-lh.googleusercontent.com/ORckmkxoCrdpEsiOSEDXAaULG8vaYvIUqJXRWS8QK8L9tC26YyY8QofUjz0AG0tOdg\",\n \"https://play-lh.googleusercontent.com/MD2jxciagae81YtzMhi8EOyFqA5smbNMGs_zlJ-j-flwYDDW56ZaB4uGhaBy48g3QXc\",\n \"https://play-lh.googleusercontent.com/5Q60oJpffoWrKn-cfCDEBFU1PpZKYS0aOqqOWNk9s-JkJGBIpZO3ENqnhU4pRl0BwA\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Jul 18, 2013\",\n \"updated\": 1661556650000,\n \"version\": \"VARY\",\n \"recentChanges\": \"Over the next few weeks we’ll be rolling out the following:

Check out the updated controls for popular smart home devices including fans, air purifiers, vacuum cleaners, blinds, TVs, and more.\",\n \"comments\": [\n \"The Google Home experience has gotten progressively worse over time. I've had the Google hub, minis, and several smart devices, including TVs, set up for years. Each iteration of devices and seemingly every update makes things worse. Voice commands rarely work on the first try now, rarely work when trying to control a second device, for example telling the hub to turn down the Google TV in another room, and the Home app is generally unintuitive. Multi user functionality for all of it is trash.\",\n \"I just bought a smart portable AC, tried to add it to Google Home and it just appears as a \\\"device linked to you\\\", with no options of adding it to a room or a group. If I select it, it just turns it on or off, with no options for adjusting temperature or fan controls. I added the same device to Alexa. It took far less time and I have immediate control over changing the temperature, mode and creating a routine within the app. Also, Sengled bulbs will no longer connect with Google Home.\",\n \"Constantly crashes. It'll open, but when I try to go anywhere else in the app, there's a 90% chance it will crash to the home screen. Don't know exactly when it started, but it seems like it all went downhill after they lost the ability to group speakers. Yes, I have force closed, cleared cache, restarted, reinstalled, tried on other devices..... so please don't suggest that.\",\n \"Google is useless. Everything I buy from them they just stop supporting. I had thermostats, pixel phones, 12 speakers, 2 hubs, 4 tvs, etc etc etc. All junk. The app has been a nightmare for years. Unfortunately I don't even know a good alternative, so I'm going smart+home free for a while. This is just aggravating when factory resets don't fix your problem, their help pages are useless and so are they on the phone.\",\n \"Connection to Google devices are slow & inconsistent. Layout of controls an app are extremely poor. It's hard to believe that this is the best Google can do. It is pathetic that the most basic of features aren't available or easy to access. From setting temperatures to controlling volume it's just absolutely clunky, slow, and not well thought out.\"\n ],\n \"appId\": \"com.google.android.apps.chromecast.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.chromecast.app\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.chromecast.app&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.chromecast.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.chromecast.app/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.chromecast.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Keep - Notes and Lists\",\n \"description\": \"Quickly capture what’s on your mind and get a reminder later at the right place or time. Speak a voice memo on the go and have it automatically transcribed. Grab a photo of a poster, receipt or document and easily organize or find it later in search. Google Keep makes it easy to capture a thought or list for yourself, and share it with friends and family.\\n \\n Capture what’s on your mind\\n • Add notes, lists and photos to Google Keep. Pressed for time? Record a voice memo and Keep will transcribe it so you can find it later.\\n Share ideas with friends and family\\n • Easily plan that surprise party by sharing your Keep notes with others and collaborating on them in real time.\\n Find what you need, fast\\n • Color and add labels to code notes to quickly organize and get on with your life. If you need to find something you saved, a simple search will turn it up.\\n Always within reach\\n • Keep works on your phone, tablet, computer and Android wearables. Everything you add syncs across all of your devices so your thoughts are always with you.\\n The right note at the right time\\n • Need to remember to pick up some groceries? Set a location-based reminder to pull up your grocery list right when you get to the store.\\n Available everywhere\\n • Try Google Keep on the web at http://keep.google.com and find it in the Chrome Web Store at http://g.co/keepinchrome.\\n \\n Permissions Notice\\n Camera: This is used to attach images to notes in Keep.\\n Contacts: This is used to share notes to contacts.\\n Microphone: This is used to attach audio to notes.\\n Location: This is used to set and fire location-based reminders.\\n Storage: This is used to add attachments from storage to their notes.\",\n \"descriptionHTML\": \"Quickly capture what’s on your mind and get a reminder later at the right place or time. Speak a voice memo on the go and have it automatically transcribed. Grab a photo of a poster, receipt or document and easily organize or find it later in search. Google Keep makes it easy to capture a thought or list for yourself, and share it with friends and family.

Capture what’s on your mind
• Add notes, lists and photos to Google Keep. Pressed for time? Record a voice memo and Keep will transcribe it so you can find it later.
Share ideas with friends and family
• Easily plan that surprise party by sharing your Keep notes with others and collaborating on them in real time.
Find what you need, fast
• Color and add labels to code notes to quickly organize and get on with your life. If you need to find something you saved, a simple search will turn it up.
Always within reach
• Keep works on your phone, tablet, computer and Android wearables. Everything you add syncs across all of your devices so your thoughts are always with you.
The right note at the right time
• Need to remember to pick up some groceries? Set a location-based reminder to pull up your grocery list right when you get to the store.
Available everywhere
• Try Google Keep on the web at http://keep.google.com and find it in the Chrome Web Store at http://g.co/keepinchrome.

Permissions Notice
Camera: This is used to attach images to notes in Keep.
Contacts: This is used to share notes to contacts.
Microphone: This is used to attach audio to notes.
Location: This is used to set and fire location-based reminders.
Storage: This is used to add attachments from storage to their notes.\",\n \"summary\": \"Google Keep\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 1860204744,\n \"score\": 4.1576924,\n \"scoreText\": \"4.2\",\n \"ratings\": 1414079,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.keep/reviews\",\n \"histogram\": {\n \"1\": 153366,\n \"2\": 59144,\n \"3\": 113872,\n \"4\": 172404,\n \"5\": 915270\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://support.google.com/?p=notes_main\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Productivity\",\n \"genreId\": \"PRODUCTIVITY\",\n \"icon\": \"https://play-lh.googleusercontent.com/9bJoeaPbGTB8Tz_h4N-p-6ReRd8vSS-frZb2tmJulaGIoTKElKj3zpmcFJvnS96ANZP5\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/CqR5E1oLeJ2nEM2ooBFayv4Ri56BNrgn-zbGAmZdDbIl2MrqMrwDMAKYKs88E6hwn9I\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/qW1OCeXIVPbBFRtmiUSYhzRfhwEV1CwJa5367zJjBwHktdp1l_tXG1zHWC5Xn4wJYQ\",\n \"https://play-lh.googleusercontent.com/Kd17zb0wMFSZ_yCf0CSUCZe5vVQOTVrnTEwz9kYDAKchgH4YiFo6Q5NlaCei92b-DnE\",\n \"https://play-lh.googleusercontent.com/W6pBP57UU3sGnhrVO_SWywKMb5YwKcDoQW3hBxW3L0pV4UyzS7IDbxaqD_vK6qHg4i4\",\n \"https://play-lh.googleusercontent.com/j0W5FC6v_GeR-8Z-YnXqrhR3Rw2LDLJQ6yQ6HpnzzRdSrz9Wcl3bylBnjpRnrEQzBQ\",\n \"https://play-lh.googleusercontent.com/YPvG90WiRFcg7A45HZ0bPwKe6h_I7lcfy6jMWjQYq3ryi65iCR7UQ-r7WFQDpLkSBQ\",\n \"https://play-lh.googleusercontent.com/ZXHmAeEubL_FFSux8ufdc3kWESm6l3Qps0cC-pt8uNWM74A4iElX7CbcQIgyXli9eQ\",\n \"https://play-lh.googleusercontent.com/WohXKjCe_QuVrxL3ksS8lODC17sMd-U4kYALcaYabasjh0mm-quhTCfc2xwuZbA9_HU\",\n \"https://play-lh.googleusercontent.com/xYnq3zRONE2rpRksqySiqBC8G3UvXJufCV2If7Ck8cPELE8OY1PcVbmGof8CxjXlIyY\",\n \"https://play-lh.googleusercontent.com/OaJ9ioyoRept6HWOMXjGkA8IMkfh1st9JEdIOyvpemFmFNFI50frodVswWNcAgFxzg\",\n \"https://play-lh.googleusercontent.com/Rv_Fumphjg7BH6I8_sA7PPA2R4Vyq2twJ7ijutwLd54zbDD-d_tDWk9miKA6Kp6cWCM\",\n \"https://play-lh.googleusercontent.com/rYYXBg1-E5-3Tesa9TW8DSEURcSNbXd1yrt4WDGTV-CA5aPGBH-h4uCpoFIV_w4za2M\",\n \"https://play-lh.googleusercontent.com/UnKazEvT-iNEgftYniQK4JOaQ3Bqm3rE-fWo6dRh4inWUGYpSkEgLSGYZxdv-0sfI3M\",\n \"https://play-lh.googleusercontent.com/p23hsdqcrm5D0cLJxdVpLWPkNeNNY5NToUhMea5rNk1CL8xF8lsKo7xVZ1piykfztZE\",\n \"https://play-lh.googleusercontent.com/mhjx0LuEJrAw4rY3p9ymDfFJIh9PkyKxJAlx6lFy4FWaRFP3TyAZYFMrLuIDz6l1jqg\",\n \"https://play-lh.googleusercontent.com/RQ1Z6-Hno0AmQGof2Scts_RB-QhhK7S1z9jpDBFLoZv0edIZ4Cg3EdZUH8lT6_RXFw\",\n \"https://play-lh.googleusercontent.com/Ahx-x6ZZupv29aFSn4-ecqsOx42TjPRxtSudo_0DM9C7XM6extmimQPZWwbZjn--J0U\",\n \"https://play-lh.googleusercontent.com/1hpIHMXKjTM1XKVxkY3KXch29ahS2mvzAmLyJSiszCsjm9ab5gZjZjjjZym0CU7Buw\",\n \"https://play-lh.googleusercontent.com/iOHORvZsUUASyTb5Te2Jz3TXyRFwrU38D_gphUO8z0-761Lj8qJVwSCwQtFM2w80sw\",\n \"https://play-lh.googleusercontent.com/z_wu2k0Z0jVDnS44KP1_Sip4JSjf-dfLnNUwpzox9OCdIGiAMc4AojXWeqf8vkWG9SO3\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Mar 20, 2013\",\n \"updated\": 1661455915000,\n \"version\": \"VARY\",\n \"recentChanges\": \"* Bug fixes and performance improvements\",\n \"comments\": [\n \"Used to be able to just record sounds, now \\\"recording\\\" is purely voice-text dictation. I make music and have been using Keep to hum melodies & make notes, or record myself playing, etc... The whole system is broken like this. FFS, if someone wants to dictate text, we all have the little mic on our keyboard to do that. Making audio notes, regardless of human language, is it's own important thing - and worked well with the visual and text notes that Keep does well. Please return this feature!\",\n \"Good intentions but bad execution - an easy fix would make it 5 star. The controls to move and sort your list are incredibly sensitive. You could move something by accident or put it in a subfolder without realizing it. If your scrolling, for example, it prioritizes your left/right swipe over your up/down scroll way to much. You can be 10 degrees off vertical and it will move it left/right which can ruin your subtasks structure, which can be difficult to assess what happened and get it back\",\n \"This is a nice simple text note app . you can search notes, but other than that there is no organization other than folders. so it should be eazy peazy to use? if it works... ongoing problems since February 2022, cannot scroll or edit notes without 10 to 20 second delay for every single action.... if it even responds usually completely unresponsive because it is frozen.\",\n \"So far so good. Not great. A few upgrades needed: 1) the ability to lock a note with a password. 2) the ability to have headers within a checklist. 3) the ability to change font/color/ highlight within a note. 4)more background color options. they don't even have white. 5) Make lables color coded like in emails.\",\n \"The longer you explore the app, the more options you will see, even if you think it isn't available, I found complaints about options that the app does have. They say it doesn't have them, but it actually does. So far? So good! Just remember your other settings can affect the functionality, like accidentally hitting your \\\"do not disturb\\\" button. I love the app!\"\n ],\n \"appId\": \"com.google.android.keep\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.keep\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.keep&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.keep/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.keep/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.keep/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Pay: Save, Pay, Manage\",\n \"description\": \"Google Pay is a safe, simple, and helpful way to manage your money, giving you a clearer picture of your spending and savings:\\n- Pay at your favorite places\\n- Send and receive money instantly\\n- Earn rewards for everyday payments\\n- Understand your spending & improve your financial health\\n\\n📱MAKE PAYMENTS FAST & EASY\\n\\nSend & receive money\\n+ Transfer money easily to friends & family safely\\n+ Create a group to send and receive money for things like trips, dinner, bills, rent, and more. Google Pay will even help you do the math on who owes what. \\n+ Money transfers are instant and free with Google Pay balance. There are no fees if you use ACH to withdraw funds\\n\\nYour shared payments stay with the group\\n+ When you send a payment with Google Pay, it’ll stay between you and your friends. Only the people involved in the transaction will see it. \\n\\nPay contactless\\n+ Pay with your phone anywhere contactless payments are accepted. Just unlock it, hold it to the reader, and go. \\n\\nConnect with your favorite businesses and discover new ones\\n+ See businesses where you’ve used Google Pay when you open the app. Get quick access to your transactions, loyalty cards, and activate offers.\\n\\nDiscover nearby restaurants and order a meal\\n+ No need to toggle between different delivery apps. Explore places to eat, see menus, and order a meal for pickup or delivery with just a few taps. \\n\\nFuel your next adventure\\n+ Find nearby gas stations, see prices, and pay for fuel right from the app. \\n\\nTake your phone for a ride\\n+ Pay contactless for transit rides where available. Just add a pass or set up a card, then use your phone to ride. \\n\\nShop online\\n+ Use Google Pay to checkout quickly and securely when you shop on websites and apps.\\n\\n📈 ORGANIZE AND UNDERSTAND YOUR MONEY\\n\\nManage your money\\n+ See the total balance from all of your eligible accounts in one payment app, so you’ll always know exactly what’s coming in and what’s going out.\\n+ Get reminders about upcoming bill payments.\\n\\nStay on top of your spending\\n+ Get weekly summaries, track trends over time, and see what you’ve spent at every business.\\n\\nAll your transactions, all together\\n+ With your permission, you can see activity from accounts you've linked. Import receipts from Gmail and Google Photos and then simply search for any of them. \\n\\n💵 SAVE AND GROW YOUR MONEY\\n\\nEarn rewards you can use right away\\n+ Get cashback for things like paying and referring friends. Any money you receive will go straight to your balance so you can use it instantly.\\n\\nDouble down on cashback\\n+ Activate offers and get cashback for redeeming them – whether you use Google Pay or your plastic card. Better yet: get twice the rewards when you redeem with a cashback credit card.\\n\\nLoyalty made easy\\n+ No more sign-up forms or punch cards. Easily enroll in loyalty and rewards programs from the app, then let Google Pay apply points and perks automatically. \\n\\n🛡️ SAFER WITH GOOGLE\\n\\nAuthentication for every payment\\n+ You'll need to use your fingerprint, pattern, PIN, or face to verify your identity each time you open the app or make a payment — only you can pay or send money\\n\\nKeeping your private information safe\\n+ Try out a more personalized experience to see the most relevant offers from stores and get recommendations for ways to save. Turn it on or off at any time.\\n+ Manage and control personalization and other privacy settings like location preferences and contact syncing from settings\\n\\nYour cards encrypted\\n+ When you pay cashless with your Android phone, Google Pay shares a unique Virtual Account Number instead of your actual card number with the business, so your payment info stays safe\\n\\nStill have questions? Head over to https://support.google.com/googlepay\",\n \"descriptionHTML\": \"Google Pay is a safe, simple, and helpful way to manage your money, giving you a clearer picture of your spending and savings:
- Pay at your favorite places
- Send and receive money instantly
- Earn rewards for everyday payments
- Understand your spending & improve your financial health

📱MAKE PAYMENTS FAST & EASY

Send & receive money
+ Transfer money easily to friends & family safely
+ Create a group to send and receive money for things like trips, dinner, bills, rent, and more. Google Pay will even help you do the math on who owes what.
+ Money transfers are instant and free with Google Pay balance. There are no fees if you use ACH to withdraw funds

Your shared payments stay with the group
+ When you send a payment with Google Pay, it’ll stay between you and your friends. Only the people involved in the transaction will see it.

Pay contactless
+ Pay with your phone anywhere contactless payments are accepted. Just unlock it, hold it to the reader, and go.

Connect with your favorite businesses and discover new ones
+ See businesses where you’ve used Google Pay when you open the app. Get quick access to your transactions, loyalty cards, and activate offers.

Discover nearby restaurants and order a meal
+ No need to toggle between different delivery apps. Explore places to eat, see menus, and order a meal for pickup or delivery with just a few taps.

Fuel your next adventure
+ Find nearby gas stations, see prices, and pay for fuel right from the app.

Take your phone for a ride
+ Pay contactless for transit rides where available. Just add a pass or set up a card, then use your phone to ride.

Shop online
+ Use Google Pay to checkout quickly and securely when you shop on websites and apps.

📈 ORGANIZE AND UNDERSTAND YOUR MONEY

Manage your money
+ See the total balance from all of your eligible accounts in one payment app, so you’ll always know exactly what’s coming in and what’s going out.
+ Get reminders about upcoming bill payments.

Stay on top of your spending
+ Get weekly summaries, track trends over time, and see what you’ve spent at every business.

All your transactions, all together
+ With your permission, you can see activity from accounts you've linked. Import receipts from Gmail and Google Photos and then simply search for any of them.

💵 SAVE AND GROW YOUR MONEY

Earn rewards you can use right away
+ Get cashback for things like paying and referring friends. Any money you receive will go straight to your balance so you can use it instantly.

Double down on cashback
+ Activate offers and get cashback for redeeming them – whether you use Google Pay or your plastic card. Better yet: get twice the rewards when you redeem with a cashback credit card.

Loyalty made easy
+ No more sign-up forms or punch cards. Easily enroll in loyalty and rewards programs from the app, then let Google Pay apply points and perks automatically.

🛡️ SAFER WITH GOOGLE

Authentication for every payment
+ You'll need to use your fingerprint, pattern, PIN, or face to verify your identity each time you open the app or make a payment — only you can pay or send money

Keeping your private information safe
+ Try out a more personalized experience to see the most relevant offers from stores and get recommendations for ways to save. Turn it on or off at any time.
+ Manage and control personalization and other privacy settings like location preferences and contact syncing from settings

Your cards encrypted
+ When you pay cashless with your Android phone, Google Pay shares a unique Virtual Account Number instead of your actual card number with the business, so your payment info stays safe

Still have questions? Head over to https://support.google.com/googlepay\",\n \"summary\": \"Send money, shop, pay bills & earn rewards — plus a secure mobile wallet\",\n \"installs\": \"500,000,000+\",\n \"minInstalls\": 500000000,\n \"maxInstalls\": 742501274,\n \"score\": 4.067746,\n \"scoreText\": \"4.1\",\n \"ratings\": 8429609,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.paisa.user/reviews\",\n \"histogram\": {\n \"1\": 1247869,\n \"2\": 289611,\n \"3\": 561253,\n \"4\": 874589,\n \"5\": 5455724\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"5.0\",\n \"androidVersionText\": \"5.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://pay.google.com/about/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Finance\",\n \"genreId\": \"FINANCE\",\n \"icon\": \"https://play-lh.googleusercontent.com/HArtbyi53u0jnqhnnxkQnMx9dHOERNcprZyKnInd2nrfM7Wd9ivMNTiz7IJP6-mSpwk\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/nJb1jp0riNf3zmbbiJwK4l6NYpfV0m_YBfQFJUo7ufGFLndz2yeSRR-e0_dcSlK602o\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/_e4zCcgrRdWrkQ0Lp4dDdxxCD-mBD14UPzGD3gm0sIWs4vqw5cecjqnahb-tL7_4VPrc\",\n \"https://play-lh.googleusercontent.com/uZulu3Y729zkyXyHK_38xmUuIEZFKY_rQ4fV2-6DXfW8RHYmGs9GDRDnn_rlp_0ENCBP\",\n \"https://play-lh.googleusercontent.com/GJqSP1bc5D4r8jyeC1fQK8exRjKBQ2PLZLWTGwaGYc9V1iA6yD-mbOrNcsi-qmttD6A\",\n \"https://play-lh.googleusercontent.com/obcM35g9-8vfdzJAg-bYsD4YME5K-sAVxACfuenahDFX2ecqif3q0Wk4FhvB8izlU28\",\n \"https://play-lh.googleusercontent.com/BBL1Jrr5_6kFusUSHJuUxTLt3lF8rIPAFrGxrozmwq1VXjMsCWsRSQUPLQCFKaZeCFQ\",\n \"https://play-lh.googleusercontent.com/BO1PNVolo79Q0nN_0atFLF-FiU-dNnB5yZ6OQGn__XjjSDA0svn_GraLG2Vx8MkfAvQ\",\n \"https://play-lh.googleusercontent.com/vC5ZECxudQjRcG_BNRrH5Y3xXRBt4uSWySxPqMHcpHCxMD6xbVw0bUOTShQkvNuV2yI\",\n \"https://play-lh.googleusercontent.com/z8nPAJCwSSq_YDf2bw9G0GnbROyTv6-l7yFh2EbAInhQO8UuQGBRpIAEKD3775s5Qg\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Mar 3, 2021\",\n \"updated\": 1661331627000,\n \"version\": \"VARY\",\n \"recentChanges\": \"We're giving the app a fresh new look. Enjoy the latest features and offers, from Groups experiences to convenient card payments!\",\n \"comments\": [\n \"It has been one of the best UPI for quite a while. However, since a few months it has become very unreliable due to its server issues. It has been so frequent that one or the other issue pops-up everyday. Unless they address this and do it quickly, the user count will start going down drastically. You need to understand that for apps like this its all about getting the user base accustomed and if they start using another app you loose them forever.\",\n \"\\\"unable to load payment info\\\" when trying to use tap-pay. the app layout is absolutely a mess! why would someone think it makes sense for the user to tap on their credit card to add an unrelated loyalty account?! I like the attractiveness and promotional materials offered by the new layout, but not at the expense of basic functionality the user is looking for at the front of a checkout line! The app is not asking for any type of identification verification.\",\n \"Horrible app. Had to install it in order to save concert tickets to my phone. The interface is not user friendly and it take a few tries to actually locate your tickets. But, once you reach them the app almost instantly opens your camera to try forcing you to enter a credit card. I will be deleting this as soon as possible.\",\n \"Great to have when I leave my wallet somewhere. I did have an interesting issue earlier today though. I used the app last Tuesday and went to use it again just before posting this, but I couldn't find the app! Looked it up in playstore and I had to download and install it again! It still had my info in it too; recent transactions, card, etc. It's like the app deleted itself... really weird and inconvenient finding that out AT THE REGISTER! Hah! XD\",\n \"Annoying. Maybe this app fails because it tries to do too many things. Like many people I don't want to keep all my credit cards info on my phone. I mostly just want a convenient place to keep the dozen store loyalty cards I have. The old version of this app used to do that like a pro. Now it takes five minutes, offer refusals, security challenges, etc. just to call up the loyalty card bar code. Hey Google, make two apps and stop getting so many one star reviews.\"\n ],\n \"appId\": \"com.google.android.apps.nbu.paisa.user\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.paisa.user\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.nbu.paisa.user&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.paisa.user/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.paisa.user/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.paisa.user/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Clock\",\n \"description\": \"Clock combines all of the functionality you need into one simple, beautiful package.\\n\\n\\n\\n • Set alarms, add timers, and run a stopwatch\\n\\n • Keep track of time around the world using the World Clock\\n\\n • Set a bedtime schedule, listen to sleep sounds, and see your calendar\\n\\n • Pair with Wear OS devices to bring your alarms and timers to your wrist\",\n \"descriptionHTML\": \"Clock combines all of the functionality you need into one simple, beautiful package.



• Set alarms, add timers, and run a stopwatch

• Keep track of time around the world using the World Clock

• Set a bedtime schedule, listen to sleep sounds, and see your calendar

• Pair with Wear OS devices to bring your alarms and timers to your wrist\",\n \"summary\": \"Your simple and beautiful alarm clock for Android\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 1472478767,\n \"score\": 4.023852,\n \"scoreText\": \"4.0\",\n \"ratings\": 511560,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.deskclock/reviews\",\n \"histogram\": {\n \"1\": 77114,\n \"2\": 23867,\n \"3\": 33981,\n \"4\": 51320,\n \"5\": 325265\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"android-clock-feedback@google.com\",\n \"developerWebsite\": \"http://www.google.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/k-K6mdmZJZrJiuMJCHILReDGjMl_2ljzFIz3QLULfKL1q0tWtTcAkc0RDsjg9QEuXYw\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/Dj8PMETYgjeJL5tFlmYcgZkw6u14MiYmZaPbEszLg9-5oXeK5EsvEqoj_T-1RYNFw8df\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/yhYjuIASbAkDG4wSt_SaEGiGFiDMwZamrqRI_jfHmarSjKck2yrahhcTS1MO3XfVh9k\",\n \"https://play-lh.googleusercontent.com/gzNpR4NJQLV45-6im54YPGQRkB8iLK_h9mT2XCtkK3KEf2btrDegkB4a0SyBmq9sCKwy\",\n \"https://play-lh.googleusercontent.com/0Ndn-gLU60icuYOxdnIrxTTbYTJQei9QKSMuNgtq8in-CCp11neU_Uc4zpchD56iGA\",\n \"https://play-lh.googleusercontent.com/k0fGDNDbWfp0zWCDGPRQz2mBZsNu6nruvpRUM7E32pDoJxX0inMeBI8oH_5qo04W4Q\",\n \"https://play-lh.googleusercontent.com/lpvbzTARHNOdlXvmzo7KgCOzWMSIHnb5c74CysXSWuCEM5s5I_teFj3wcuBCp5nNVw\",\n \"https://play-lh.googleusercontent.com/I-_YHksHHoVHDlmOdCvmslqW43CJrhWURTICPsjvPcmjVn0YHEhz9pNxE5PeX3ZJiNPV\",\n \"https://play-lh.googleusercontent.com/2sg6M1yT3p1MhnaHgxyD-Vf2InUdZtT5DM6WqLPXt6OqJqT_iueurxZxWvWWmMmOynM\",\n \"https://play-lh.googleusercontent.com/CMU8-lYwFOIaO-fbyz5xeabIWuGDRu0IoP9H_dHbLrbSwNq3CWo89yLCcfvJ9dA_Iiw\",\n \"https://play-lh.googleusercontent.com/tCymjc4NBNQWXe0WUqveuDpxncd6LwrtiRBYKDz7oQARYkpGH34tXQZUP3iq67_whoRe\",\n \"https://play-lh.googleusercontent.com/meNSpnTJWR4gFoP7WRdpNvH83Ciog1P12oVrcAdJ2Es3K_PTIj_9PYlMGsGVy74Q-YXD\",\n \"https://play-lh.googleusercontent.com/TP1BH5_15kyt1Sl1rQOcfB5dU-tfryCJEgl0IJcVMm2PVx1bWXXCz2-b9jKaO5yERN4\",\n \"https://play-lh.googleusercontent.com/zYf6RhLrRIbazwc5996X6Phg2Cl-iScpfmftDT9nLayMRtwxjwaQrO6Iijdiw4cxuo52\",\n \"https://play-lh.googleusercontent.com/rLCLZAqf4csSLxrrxJQXIv4keSCcDtHSTgQvaTozAyYgJKGC2h2AaWFU5hjd5gyakOc\",\n \"https://play-lh.googleusercontent.com/bMSiCBbxzIcvq-0zzC7y6bPmllMw-zcezDMnkyGH7pNPmwlVCkCoaKowr18ht-zmdA\",\n \"https://play-lh.googleusercontent.com/jvdr8G2b0BgMCc2vH-3p7qlqBgkHP_Y9_6sDeg3RK_iBIni-niuSCpaIzYdPyRPlgw\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Jun 18, 2015\",\n \"updated\": 1655222413000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• New design and animations
• App colors match your device's wallpaper & style
• Bug fixes\",\n \"comments\": [\n \"The base app that comes with the phone is flawed and unreliable. Timers and alarms don't always go off, which is an extremely important feature to make sure is right with an app like this. I've had this issue access to devices and seeing the other reviewers, I'm not alone in the problem. Something as simple as a 20 minute timer won't go off reliably. There aren't any \\\"missed alarm\\\" notifications for when the alarms don't ring. Nothing but disappointment. This still has not been fixed 6 mos later\",\n \"For whatever reason the newest update made some BAD changes. I no longer have an easy access when the alarm goes off. Now, I have to swipe down from the top, find the alarm, tap it then snooze or stop it. NOT CONVENIENT when first waking up. Also, seeing a timer would be great if it actually went off or sounded. It appears I'm not the only one unsatisfied buy the upgrade.\",\n \"This app has been my alarm for years. As of the past few months it has been completely unreliable. Alarms just simply don't go off even though they're set for everyday. Trying to set the alarm volume is a whole other issue as it's impossible. For no reason it will just not ring anymore, only vibrate. I loved the simplicity, now I can't trust it.\",\n \"My alarm has become possessed and keeps setting itself. It does this every day for 7:00pm but when that time comes, the alarm doesn't go off. It resets itself to 8:00pm, then doesn't go off then either. Then it repeats the pattern. I am unable to cancel it as it doesn't show up when I open up the app. There are no alarms set for those times. There have never been alarms set for those times. Weird stuff.\",\n \"Used to be great, but lately it has been glitching and my alarms haven't been going off. It gives me notifications for upcoming alarms, but \\\"freezes\\\" and they never go off. Have had this occur for multiple alarms (15 min increments) on multiple occasions making me late for work more than once. I ended up having to buy an actual alarm clock to use as a backup due to lack of trust in this app.\"\n ],\n \"appId\": \"com.google.android.deskclock\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.deskclock\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.deskclock&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.deskclock/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.deskclock/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.deskclock/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Translate\",\n \"description\": \"• Text translation: Translate between 108 languages by typing\\n• Tap to Translate: Copy text in any app and tap the Google Translate icon to translate (all languages)\\n• Offline: Translate with no internet connection (59 languages)\\n• Instant camera translation: Translate text in images instantly by just pointing your camera (94 languages)\\n• Photos: Take or import photos for higher quality translations (90 languages)\\n• Conversations: Translate bilingual conversations on the fly (70 languages)\\n• Handwriting: Draw text characters instead of typing (96 languages)\\n• Phrasebook: Star and save translated words and phrases for future reference (all languages)\\n• Cross-device syncing: Login to sync phrasebook between app and desktop\\n• Transcribe: Continuously translate someone speaking a different language in near real-time (8 languages)\\n\\nTranslations between the following languages are supported:\\nAfrikaans, Albanian, Amharic, Arabic, Armenian, Azerbaijani, Basque, Belarusian, Bengali, Bosnian, Bulgarian, Catalan, Cebuano, Chichewa, Chinese (Simplified), Chinese (Traditional), Corsican, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Filipino, Finnish, French, Frisian, Galician, Georgian, German, Greek, Gujarati, Haitian Creole, Hausa, Hawaiian, Hebrew, Hindi, Hmong, Hungarian, Icelandic, Igbo, Indonesian, Irish, Italian, Japanese, Javanese, Kannada, Kazakh, Khmer, Kinyarwanda, Korean, Kurdish (Kurmanji), Kyrgyz, Lao, Latin, Latvian, Lithuanian, Luxembourgish, Macedonian, Malagasy, Malay, Malayalam, Maltese, Maori, Marathi, Mongolian, Myanmar (Burmese), Nepali, Norwegian, Odia (Oriya), Pashto, Persian, Polish, Portuguese, Punjabi, Romanian, Russian, Samoan, Scots Gaelic, Serbian, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenian, Somali, Spanish, Sundanese, Swahili, Swedish, Tajik, Tamil, Tatar, Telugu, Thai, Turkish, Turkmen, Ukrainian, Urdu, Uyghur, Uzbek, Vietnamese, Welsh, Xhosa, Yiddish, Yoruba, Zulu\\n\\nPermissions Notice\\nGoogle Translate may ask for permission to access the following features:\\n• Microphone for speech translation\\n• Camera for translating text via the camera\\n• SMS for translating text messages\\n• External storage for downloading offline translation data\\n• Accounts and credentials for signing-in and syncing across devices\",\n \"descriptionHTML\": \"• Text translation: Translate between 108 languages by typing
• Tap to Translate: Copy text in any app and tap the Google Translate icon to translate (all languages)
• Offline: Translate with no internet connection (59 languages)
• Instant camera translation: Translate text in images instantly by just pointing your camera (94 languages)
• Photos: Take or import photos for higher quality translations (90 languages)
• Conversations: Translate bilingual conversations on the fly (70 languages)
• Handwriting: Draw text characters instead of typing (96 languages)
• Phrasebook: Star and save translated words and phrases for future reference (all languages)
• Cross-device syncing: Login to sync phrasebook between app and desktop
• Transcribe: Continuously translate someone speaking a different language in near real-time (8 languages)

Translations between the following languages are supported:
Afrikaans, Albanian, Amharic, Arabic, Armenian, Azerbaijani, Basque, Belarusian, Bengali, Bosnian, Bulgarian, Catalan, Cebuano, Chichewa, Chinese (Simplified), Chinese (Traditional), Corsican, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Filipino, Finnish, French, Frisian, Galician, Georgian, German, Greek, Gujarati, Haitian Creole, Hausa, Hawaiian, Hebrew, Hindi, Hmong, Hungarian, Icelandic, Igbo, Indonesian, Irish, Italian, Japanese, Javanese, Kannada, Kazakh, Khmer, Kinyarwanda, Korean, Kurdish (Kurmanji), Kyrgyz, Lao, Latin, Latvian, Lithuanian, Luxembourgish, Macedonian, Malagasy, Malay, Malayalam, Maltese, Maori, Marathi, Mongolian, Myanmar (Burmese), Nepali, Norwegian, Odia (Oriya), Pashto, Persian, Polish, Portuguese, Punjabi, Romanian, Russian, Samoan, Scots Gaelic, Serbian, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenian, Somali, Spanish, Sundanese, Swahili, Swedish, Tajik, Tamil, Tatar, Telugu, Thai, Turkish, Turkmen, Ukrainian, Urdu, Uyghur, Uzbek, Vietnamese, Welsh, Xhosa, Yiddish, Yoruba, Zulu

Permissions Notice
Google Translate may ask for permission to access the following features:
• Microphone for speech translation
• Camera for translating text via the camera
• SMS for translating text messages
• External storage for downloading offline translation data
• Accounts and credentials for signing-in and syncing across devices\",\n \"summary\": \"The world is closer than ever with over 100 languages\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 1160190293,\n \"score\": 4.3760653,\n \"scoreText\": \"4.4\",\n \"ratings\": 8511309,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.translate/reviews\",\n \"histogram\": {\n \"1\": 706299,\n \"2\": 219795,\n \"3\": 421648,\n \"4\": 982547,\n \"5\": 6180989\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"translate-mobile-support@google.com\",\n \"developerWebsite\": \"http://support.google.com/translate\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy/\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/ZrNeuKthBirZN7rrXPN1JmUbaG8ICy3kZSHt-WgSnREsJzo2txzCzjIoChlevMIQEA\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/e4Sfy0cOmqpike76V6N6n-tDVbtbmt6MxbnbkKBZ_7hPHZRfsCeZhMBZK8eFDoDa1Vf-\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/dar060xShkqnJjWC2j_EazWBpLo28X4IUWCYXZgS2iXes7W99LkpnrvIak6vz88xFQ\",\n \"https://play-lh.googleusercontent.com/VnzidUTSWK_yhpNK0uqTSfpVgow5CsZOnBdN3hIpTxODdlZg1VH1K4fEiCrdUQEZCV0\",\n \"https://play-lh.googleusercontent.com/zo76JEdXGsBcxbsJXX3XPN0pGicjIYAy7mi95al8LTT14H4xrer-lE2kR_DEXCn-GY_l\",\n \"https://play-lh.googleusercontent.com/8HwziIPNKGnrJe5l6MfdAm6XeZ7nYEWjLXli34D5xyzBT9jE1qIQstzZXJP9X63b4A\",\n \"https://play-lh.googleusercontent.com/55jSKYsHEll9xSsXmMolSO2o3MKYYorwNpDh6UCye1EFzy_1ceRTwV7TKlqZ7SC_zhQ\",\n \"https://play-lh.googleusercontent.com/Ce-7eeLejslAivlaTQlydBOk6sDBcsHUQNfOJzsFYMObXtnN-_ZB9a_Ewn7z8bUhLMU\",\n \"https://play-lh.googleusercontent.com/wzGThpXdnwIhUdU6scVMtWOPOETWS689QRXwp11NzrPvDLkIQvOzl2O4GLivd_hWE60\",\n \"https://play-lh.googleusercontent.com/DQSWZgA09VypxvRO1cfq-xbY9tGJ3YMAQwzdzKivRnoSvuVDM15x1JyxtOvLFKM_4g\",\n \"https://play-lh.googleusercontent.com/n48lbZfbi-6OOSN-P7IKviWc4St4LjxbpBBNVayXObNMYjAVnpOISZc9fV2D2Y6giGg\",\n \"https://play-lh.googleusercontent.com/JsVcDnmK3__h0hKOknC_Yr_03VLJtN7sfMIstyHPnUVpz-vBVM9Uc5djxbYXPQ0t0g\",\n \"https://play-lh.googleusercontent.com/aXc_mfgzRtZtCh3WFtly_spULjuPQ_9CFQSfRai_pptENeE_OgtttoNwBW0sIBTWgJzK\",\n \"https://play-lh.googleusercontent.com/8GQRxInP-DOFvxzgXQKK3XJcuXbTq_-uFG-dccfy-S4FwSyHoqsMwYROSC04aKHJBFc\",\n \"https://play-lh.googleusercontent.com/WvSZTmEmb4QqmZcl_0QmQtQTsEcpvPna6FWIHpqS15K5F0zMt64ZK1ksd_UG6S4cwCB4\",\n \"https://play-lh.googleusercontent.com/uHIfQROsNz1uOH6vVdPFzf28MGtqLx0_w9wXgMm1b27Z2-VcxIjBO2d1tv7Mwz8DNB8\",\n \"https://play-lh.googleusercontent.com/UtyyG3GD6rzazGZz4O8lr0YSr-R7XKsor8sKlkWAakyvhWC-DCyEkBx0Un8e27LQ500\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"updated\": 1661907726000,\n \"version\": \"VARY\",\n \"recentChanges\": \"Bug fixes and improvements\",\n \"comments\": [\n \"The previous instance of the app had a clean interface and was simple to use. It also kept a list of all your translations in case you needed to quickly pull one up. Now it no longer keeps a log. Instead you now have to favorite each and every translation to keep a list of phrases and sentences. Also the UI is so dumbed down that it's even more cumbersome to navigate and use. If you have a previous version installed, do not update and keep it as long as you can, otherwise find another translator\",\n \"Don't like recent update either. Now I can't use the app in split screen. When I need to translate, I have to memorize the term/phrase, switch apps, type it in, go back to original app to confirm, go back to Translate to get the translation. (Not all apps allow copying of their text, so copy/paste is not an option.) Hopefully removing this feature was an oversight that will be fixed in the next update. In the meantime, I'll definitely be looking for a translator that works in split screen.\",\n \"You've completely ruined this app. The bubble that would pop up when you highlighted text was so convenient. Now it doesn't recognize text on the screen. Ex. I highlight German, but it acts like I highlighted English. It used to work with Duolingo. It would recognize the language text and automatically switch between English and the language perfectly. Somehow it knew which keyboard was needed. Now that's broken, too. Everything is broken. And yes I'm using the latest, I'm latest update! 😡\",\n \"As someone who used this app daily for almost 6 years, I must say, the latest update is so depressing. Many features are gone. For example, when translating into a language that does not use Roman characters, the Roman characters are no longer visible underneath. It is only possible when you translate a single word..but not a sentence. Also, if I translate into one language, and then simply want to change it into a different language, I'm not able to do so. I must completely retype. And more..\",\n \"I still think the latest interface change early 2022 is not as good as the previous version. However after working with it i have gotten used to it. Still not as user friendly as the older version. The app itself though is quite good and the quality of the translation continues to improve. Love the realtime translation using the camera. All in all still an good app!\"\n ],\n \"appId\": \"com.google.android.apps.translate\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.translate\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.translate&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.translate/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.translate/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.translate/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Contacts\",\n \"description\": \"Back up your contacts and sync them across all your devices\\n• Safely back up the contacts in your Google Account to the cloud\\n• Access the contacts in your Google Account from any device\\n\\nKeep your contacts organized and up to date\\n• View your contacts by account (e.g., work vs. personal)\\n• Easily add contacts and edit information like phone numbers, emails, and photos\\n• Get suggestions for adding new contacts, merging duplicates, and more\\n\\n Also available for Wear OS.\",\n \"descriptionHTML\": \"Back up your contacts and sync them across all your devices
• Safely back up the contacts in your Google Account to the cloud
• Access the contacts in your Google Account from any device

Keep your contacts organized and up to date
• View your contacts by account (e.g., work vs. personal)
• Easily add contacts and edit information like phone numbers, emails, and photos
• Get suggestions for adding new contacts, merging duplicates, and more

Also available for Wear OS.\",\n \"summary\": \"Back up your contacts & access them anywhere\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 1800829904,\n \"score\": 4.3314905,\n \"scoreText\": \"4.3\",\n \"ratings\": 985644,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.contacts/reviews\",\n \"histogram\": {\n \"1\": 84236,\n \"2\": 29509,\n \"3\": 60615,\n \"4\": 112159,\n \"5\": 699100\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://www.android.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Communication\",\n \"genreId\": \"COMMUNICATION\",\n \"icon\": \"https://play-lh.googleusercontent.com/D-haUsSx771Pt4brCyFEJUNKZaC8NUsD2bMB-ZL_yE2LnYdmt3YbgfZwDDM9B-wBHw\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/yDX4DPU-vJMsr88UpE1sf8QxW-rS5FEJX7FoVZBkaIFvBbyIGyWUdNSTEe5XgRJrPg\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/3zS4lpWzAw4ieAfHRIFVU_QfPNgb9rpEfvozuatnwkuDUsjxLXfgfI-ktBstajnzrA\",\n \"https://play-lh.googleusercontent.com/-gLsXwyw5XmjnF6L3iUHaa3XTG2dr0bOJIGgLMBXZtn0fbBStEP-IPjn3ZuLuwesAKs\",\n \"https://play-lh.googleusercontent.com/Ia8RHCH_Bop0duasRYakiU2N8QfDwou1KhxW8VclF4BAoF4drzVnp3ZXtcVGrW1fkew\",\n \"https://play-lh.googleusercontent.com/5YYskU6Gi3SaZAnULWWx2pw2muT5cPTklCVP7lle-0SCbsKCQzPLPZ1iT5y839RuTjx2\",\n \"https://play-lh.googleusercontent.com/0TsjXRhKmOnkDMDeXjlHalIDDSPssvt4swQBu_9vWbAnl2_UyPbTd_hGsknJR92TpD0\",\n \"https://play-lh.googleusercontent.com/M4tbA_mZRv9RjtglxqgYIFmozqSqaaDwBgZ_04r6CNU52JQtm5NCciFGiWB-D1j42g\",\n \"https://play-lh.googleusercontent.com/zZ-cbsCC4OsC4I0IJSu-1eKKydIbwp9InS0BCP_6_idXef3RM_5j9WjgE4AC__ZlkXg\",\n \"https://play-lh.googleusercontent.com/Ysnmn5E8u1UHcmfp629qh9bx7bZl3D4nU0DDl2tClqgAkZKsWrBvtp-5w73cEKttHLQ4\",\n \"https://play-lh.googleusercontent.com/wVAfePDUoqsM0tNFJMSmmcQjKYsQG_0kT6VSPwA1YU8hka5EH9aSQq4ABH-OGbi4uIoV\",\n \"https://play-lh.googleusercontent.com/XCPeKPvmylXfO3VkzqE8PrOIVexq2M91hMTXHWISFdrETDlFeuUc0OLdUEFzwGYZvcw\",\n \"https://play-lh.googleusercontent.com/RpMhpBuHY-_l21Ar08BawnFsHHUok59l-TZLZxj2Jl8ehwfX0nhQzmQDXBmqV2BNng\",\n \"https://play-lh.googleusercontent.com/tz_3dABaAH8teZnGqRPZ5ryHThXscb2kcgSNzwWT73nNwhdYcAt6Q3K8Px0MQCl9d3pU\",\n \"https://play-lh.googleusercontent.com/s_c--1KpBceNPI-i8yAUkzz9k0wbNTnczLuz_lXMopF2K_QacbtBEhbS_On5Z_vHcdc\",\n \"https://play-lh.googleusercontent.com/4uhhZY2RTMXKHjrPy7zt0UnJ8oslXpdZ7uwnWKVZHRgLp7JZAoHy1KVtAJCCyUXtM9k\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Dec 7, 2015\",\n \"updated\": 1661793863000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• Bug fixes and stability improvements\",\n \"comments\": [\n \"Every single time I try to use this app, and even on the desktop, it freezes or shuts down. The most infuriating thing is that under my Google account, it shows that my contacts haven't been synced since March of 2021, yet everything else is up to date. If there was a different contact backup app that ACTUALLY works, I wish someone would please let me know.\",\n \"On older versions of Android, you were able to manually change the color that a contacts first initial would be displayed over. For whatever reason that option has been removed and now just a random color is assigned. This makes it a lot less intuitive when it comes to quickly tell who is who within group chats. Not only that, but the color changes when you go to view details of any contact. Android has become less customizable with each new version release. One star.\",\n \"No option to display only contacts with phone numbers, one of the most basic features in every contacts app in every other phone I've ever had. Unfortunately, my new phone came preinstalled with this garbage with no other option but to take my chances with finding something else in the play store. The fact that this app is missing one of the most basic, common, and necessary features is a huge FAIL!\",\n \"The app does everything you would expect from a contacts app and it does it well. Except one thing. When you enter an address into someone's contact the autofill suggests places out of the country across, the Nation, and in other states before it suggests something in your location. You almost have to completely type the address before it will suggest anything remotely close to your area. Almost as if it was programmed to do this. And yes this is with location that are turned on.\",\n \"So helpful when switching devices. I sync all my data to Google, and love how easy all their products are to use. When you download it, one of the permissions requested is make and manage phone calls, and I was a little shocked at that. But it doesn't do that at all, so don't worry. I use it on all my devices instead of the regular phone app. I absolutely love Google Contacts.\"\n ],\n \"appId\": \"com.google.android.contacts\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.contacts\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.contacts&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.contacts/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.contacts/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.contacts/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouTube\",\n \"description\": \"Get the official YouTube app on Android phones and tablets. See what the world is watching -- from the hottest music videos to what’s popular in gaming, fashion, beauty, news, learning and more. Subscribe to channels you love, create content of your own, share with friends, and watch on any device.\\n\\nWatch and subscribe \\n● Browse personal recommendations on Home\\n● See the latest from your favorite channels in Subscriptions \\n● Look up videos you’ve watched, liked, and saved for later in Library \\n\\nExplore different topics, what’s popular, and on the rise (available in select countries)\\n● Stay up to date on what’s popular in music, gaming, beauty, news, learning and more\\n● See what’s trending on YouTube and around the world on Explore\\n● Learn about the coolest Creators, Gamers, and Artists on the Rise (available in select countries)\\n\\nConnect with the YouTube community\\n● Keep up with your favorites creators with Posts, Stories, Premieres, and Live streams\\n● Join the conversation with comments and interact with creators and other community members\\n\\nCreate content from your mobile device\\n● Create or upload your own videos directly in the app \\n● Engage with your audience in real time with live streaming right from the app\\n\\nFind the experience that fits you and your family (available in select countries)\\n● Every family has their own approach to online video. Learn about your options: the YouTube Kids app or a new parent supervised experience on YouTube at youtube.com/myfamily\\n\\nSupport creators you love with channel memberships (available in select countries)\\n● Join channels that offer paid monthly memberships and support their work\\n● Get access to exclusive perks from the channel & become part of their members community\\n● Stand out in comments and live chats with a loyalty badge next to your username\\n\\nUpgrade to YouTube Premium (available in select countries)\\n● Watch videos uninterrupted by ads, while using other apps, or when the screen is locked\\n● Save videos for when you really need them – like when you’re on a plane or commuting\\n● Get access to YouTube Music Premium as part of your benefits\",\n \"descriptionHTML\": \"Get the official YouTube app on Android phones and tablets. See what the world is watching -- from the hottest music videos to what’s popular in gaming, fashion, beauty, news, learning and more. Subscribe to channels you love, create content of your own, share with friends, and watch on any device.

Watch and subscribe
● Browse personal recommendations on Home
● See the latest from your favorite channels in Subscriptions
● Look up videos you’ve watched, liked, and saved for later in Library

Explore different topics, what’s popular, and on the rise (available in select countries)
● Stay up to date on what’s popular in music, gaming, beauty, news, learning and more
● See what’s trending on YouTube and around the world on Explore
● Learn about the coolest Creators, Gamers, and Artists on the Rise (available in select countries)

Connect with the YouTube community
● Keep up with your favorites creators with Posts, Stories, Premieres, and Live streams
● Join the conversation with comments and interact with creators and other community members

Create content from your mobile device
● Create or upload your own videos directly in the app
● Engage with your audience in real time with live streaming right from the app

Find the experience that fits you and your family (available in select countries)
● Every family has their own approach to online video. Learn about your options: the YouTube Kids app or a new parent supervised experience on YouTube at youtube.com/myfamily

Support creators you love with channel memberships (available in select countries)
● Join channels that offer paid monthly memberships and support their work
● Get access to exclusive perks from the channel & become part of their members community
● Stand out in comments and live chats with a loyalty badge next to your username

Upgrade to YouTube Premium (available in select countries)
● Watch videos uninterrupted by ads, while using other apps, or when the screen is locked
● Save videos for when you really need them – like when you’re on a plane or commuting
● Get access to YouTube Music Premium as part of your benefits\",\n \"summary\": \"Enjoy your favorite videos and channels with the official YouTube app.\",\n \"installs\": \"10,000,000,000+\",\n \"minInstalls\": 10000000000,\n \"maxInstalls\": 12442602848,\n \"score\": 4.205827,\n \"scoreText\": \"4.2\",\n \"ratings\": 142429679,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube/reviews\",\n \"histogram\": {\n \"1\": 18247225,\n \"2\": 4251514,\n \"3\": 7039517,\n \"4\": 13291234,\n \"5\": 99600152\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"ytandroid-support@google.com\",\n \"developerWebsite\": \"https://www.youtube.com\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Video Players & Editors\",\n \"genreId\": \"VIDEO_PLAYERS\",\n \"icon\": \"https://play-lh.googleusercontent.com/lMoItBgdPPVDJsNOVtP26EKHePkwBg-PkuY9NOrc-fumRtTFP4XhpUNk_22syN4Datc\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/vA4tG0v4aasE7oIvRIvTkOYTwom07DfqHdUPr6k7jmrDwy_qA_SonqZkw6KX0OXKAdk\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/BxbaFv67YkqT48wc4-9ILNSmLYLb92mgkrAYdyBwI478H2s6UDTutAveNu7cOZFEeSg\",\n \"https://play-lh.googleusercontent.com/lnfQ42Hslc6B_0A37YY_sNVPGEpND0YY0hcvjKLPCDB7dJNlDPn2ILICypeJxhecBQ\",\n \"https://play-lh.googleusercontent.com/nD2LH9KrtYmdruRXUn2ZQypfPHViJ1UYB1fHDN7Ti5JOmq8qHd-54oBCAVNUqvGWYC8\",\n \"https://play-lh.googleusercontent.com/xCBJ9BRKffRi8orvRzLn-LcMPPc1A8QC383k8NldcIREeoprwffXPgM_m85yD61B1Ng\",\n \"https://play-lh.googleusercontent.com/vOxdD2u-ys9J0U964Hle8gCzNAAht5-KR_xJcPCb1ukoGo_4ypD2nByU6wu-x8MUEw\"\n ],\n \"video\": \"https://www.youtube.com/embed/__NeP0RqACU?ps=play&vq=large&rel=0&autohide=1&showinfo=0\",\n \"videoImage\": \"https://play-lh.googleusercontent.com/vA4tG0v4aasE7oIvRIvTkOYTwom07DfqHdUPr6k7jmrDwy_qA_SonqZkw6KX0OXKAdk\",\n \"contentRating\": \"Teen\",\n \"adSupported\": true,\n \"released\": \"Oct 20, 2010\",\n \"updated\": 1661556650000,\n \"version\": \"VARY\",\n \"recentChanges\": \"For new features, look for in-product education & notifications sharing the feature and how to use it!\",\n \"comments\": [\n \"This is the buggiest app on my phone. It's amazing that, after a year with the Pixel 6, the official YouTube app still crashes constantly. A literal system freeze, which requires locking/unlocking the device to fix. You always know when it's about to happen, because the app starts to become jittery. By that point, it's too late to avoid. There's the screen rotation bug, where it just suddenly stops working automatically. There's the off-screen fullscreen bug. Just, unstable, for an entire year.\",\n \"Okay, so this app is extremely useful and fun to use, however, it is slowly crumblint over time, specifically as it applies to usage of ads. It has now been updated to force you to watch the two ads at the beginning or even in the middle of videos in order to proceed, and yes you can skip them, but there are some 10-15 second ads that cant be skipped, which means, whilst im attempting to enjoy a video, i have to have upwards of 30 seconds of my time wasted, good app, poor decision making.\",\n \"Youtube has been running good till i recently updated it. My video would constantly stop and the audio and time would continue playing. I would often find myself skipping backwards in the video just to see if it'll keep going and its an annoying process. I just want to enjoy my videos without having to check on if its playing right. I wouldnt mind it as much if i was listening to music or a podcast, but I really dont do that often. I'm leaving this review in hopes that it gets fixed soon\",\n \"Completely Miserable To Use. Simply scrolling autoplays everything even remotely visible on screen. Worse of all is that the last second or so of every single video is cut off, when I know for a fact that the videos are longer. It ruins so many videos, especially short ones. I've sat through 30 seconds of ads just for a 3 second video, only for it to cut off the last second. Google really wet the bed in excitement as it clammered for more piles of Ad money, at the expense of the userbase. Awful.\",\n \"No longer rotates in landscape without unlocking rotation lock. As of v17.33.42 (8/24/22), YouTube stopped allowing landscape videos to rotate if you want the bottom of the screen to be the side other than the one YT chooses. I prefer the top of my device to be the left side when I watch videos b/c it puts the volume controls on the top. I also prefer to leave rotation lock on for my phone since I don't use any other apps in landscape modes. I am now forced to give one of those preferences up.\"\n ],\n \"appId\": \"com.google.android.youtube\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.youtube&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Phone by Google\",\n \"description\": \"Google’s official phone calling app is now available to download for the first time. Phone helps you easily connect with family and friends, block spam callers, and know who’s calling before you answer – all with a simple, intuitive design.\\n\\nPowerful spam protection\\nSee warnings about suspicious callers that help you avoid unwanted calls from spammers, telemarketers and scammers. Block numbers to prevent them from calling you again.\\n\\nKnow who’s calling you\\nGoogle’s extensive caller ID coverage lets you know the business that’s calling so that you can answer with confidence.\\n\\nNo more waiting on hold 1, 5\\nHold for Me lets you go back to your day. If a business puts you on hold, Google Assistant can wait on the line for you and let you know when someone is ready to talk.\\n\\nScreen unknown callers 1, 2\\nCall Screen answers unknown callers, filters out detected spammers without interrupting you, and helps you learn more about callers you don’t recognize before you pick up.\\n\\nVisual voicemail 1, 3\\nCheck your messages without needing to call your voicemail – view and play them in any order, read transcriptions, and delete or save them right from the app.\\n\\nCall recording 1\\nRecord your phone calls to capture important information for reference later. Everyone hears a disclosure when the recording starts so they’re aware, and recordings are saved on your phone.\\n\\nIntuitive design\\nOur simple, lightweight design keeps your favorite people just a tap away. Plus, switch to dark mode to save battery and reduce eye strain at night.\\n\\nEmergency support 1, 4\\nSee your current location when you make an emergency call, and share information about the assistance you require, along with your location, to the emergency operator without speaking.\\n\\nPhone app is available on most Android devices running Android™ 7.0 and above.\\n\\n1Available only on some devices that have Phone pre-installed.\\n2Manual screening is not available in all languages or countries. For more information, see g.co/help/callscreen. Automatic screening is available in the US only, English only. Call Screen may not detect all spam calls.\\n3Transcription is available in the US only, English only.\\n4Available in Australia, United Kingdom and the US only, English only.\\n5Available in the US only, English only. Pixel 2+ devices only. Toll-free numbers only. May not detect every on-hold scenario.\",\n \"descriptionHTML\": \"Google’s official phone calling app is now available to download for the first time. Phone helps you easily connect with family and friends, block spam callers, and know who’s calling before you answer – all with a simple, intuitive design.

Powerful spam protection
See warnings about suspicious callers that help you avoid unwanted calls from spammers, telemarketers and scammers. Block numbers to prevent them from calling you again.

Know who’s calling you
Google’s extensive caller ID coverage lets you know the business that’s calling so that you can answer with confidence.

No more waiting on hold 1, 5
Hold for Me lets you go back to your day. If a business puts you on hold, Google Assistant can wait on the line for you and let you know when someone is ready to talk.

Screen unknown callers 1, 2
Call Screen answers unknown callers, filters out detected spammers without interrupting you, and helps you learn more about callers you don’t recognize before you pick up.

Visual voicemail 1, 3
Check your messages without needing to call your voicemail – view and play them in any order, read transcriptions, and delete or save them right from the app.

Call recording 1
Record your phone calls to capture important information for reference later. Everyone hears a disclosure when the recording starts so they’re aware, and recordings are saved on your phone.

Intuitive design
Our simple, lightweight design keeps your favorite people just a tap away. Plus, switch to dark mode to save battery and reduce eye strain at night.

Emergency support 1, 4
See your current location when you make an emergency call, and share information about the assistance you require, along with your location, to the emergency operator without speaking.

Phone app is available on most Android devices running Android 7.0 and above.

1Available only on some devices that have Phone pre-installed.
2Manual screening is not available in all languages or countries. For more information, see g.co/help/callscreen. Automatic screening is available in the US only, English only. Call Screen may not detect all spam calls.
3Transcription is available in the US only, English only.
4Available in Australia, United Kingdom and the US only, English only.
5Available in the US only, English only. Pixel 2+ devices only. Toll-free numbers only. May not detect every on-hold scenario.\",\n \"summary\": \"Reliable phone calls with spam protection, caller ID and more helpful features\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 1612263597,\n \"score\": 4.3533196,\n \"scoreText\": \"4.4\",\n \"ratings\": 11991991,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.dialer/reviews\",\n \"histogram\": {\n \"1\": 1134925,\n \"2\": 265382,\n \"3\": 573447,\n \"4\": 1272127,\n \"5\": 8746042\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://www.android.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/7M2PyII8UNkUIkzC92Knz5HRDCo-Rce_lr6T6ROz5c8SlY92ISKjsjbdWaC05ZiKV0k\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/PM89BEJhnVLyTGoIDDvwwiCLTlIqXZmrsPFsRPcLF31navLqlYSbmjieOK_cs9idLJI\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/P8ju0kqw9L94YvIRyCmOpYxIWsC84ELSWbRGpM3kBf9ylRXk1DXwAm1iKcC9kE-iEBY\",\n \"https://play-lh.googleusercontent.com/42l8zLA9YrXPdYKvaQyyoAMGM5xWdBewIi_gr3wDy7LEBgyI3USM238gwBAKhO_WcmE\",\n \"https://play-lh.googleusercontent.com/Zqq-fN4kbrYG0GxlkpRzpxzT_bfv1qdMX_HjC2DpUIQdx2vafrxDDja29RSEwWB5Q4A\",\n \"https://play-lh.googleusercontent.com/aTST_652p1w-YdH5Bvn95NxYhvAx5UgbsmejYGQLL24yGV-nXXtgcTXt2Pdz7xfAwnk\",\n \"https://play-lh.googleusercontent.com/hNxnw890rToihWIp3Z5fIJkHNXJ6Fc86yoSYsNJDi0UEcqXRpR2PTAlA0McgP884cvZ7\",\n \"https://play-lh.googleusercontent.com/G8TbeFHctcz4NcTyYrBFHxuEhzBQc_p4AgUA3Q8J_Fe9ZFc-M5FZVzVZevS_SZhka0Hs\",\n \"https://play-lh.googleusercontent.com/TnqyBfD1qVWes7PkIjX857rjOjLZHpedZCwDtkiCb7_hRH6gkLSdoNJP-2NyfwSaNf_n\",\n \"https://play-lh.googleusercontent.com/at5RHcyDhdzd0WHMJz22JsgtIEi46t3Hl9m9QkrTAkzXzH7gwc_waOVWxzmTyTlgEw5H\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Dec 7, 2015\",\n \"updated\": 1661463175000,\n \"version\": \"VARY\",\n \"recentChanges\": \"
With our latest update to Call Screen on Pixel devices in the US, the Google Assistant now helps you automatically screen unknown callers and filter out detected robocalls before your phone ever rings. And when it’s not a robocall, your phone rings a few moments later with helpful context about who is calling and why.\",\n \"comments\": [\n \"Overall, I like this dialer for the OnePlus 8, however there is one thing that's incredibly frustrating. When you receive an incoming call, you will either get a notification bar at the top or you'll get the full screen incoming call. With either, you have to either accept or reject the call, or just let the screen sit there until the caller hangs up. There needs to be an option to ignore the call (particularly for scam calls).\",\n \"For some odd reason the app has been behaving lately. I have always had issues with this app for one reason or another. I really like the Hold for me option and I love not getting spam calls anymore. (I love seeing them hanging up after my assistant gives his message). Beautiful! There are still a couple of issues that I can't seem to get any answers from anyone so I have to live with the app not working 100%.\",\n \"Moto/Google RTT problem. I don't know who to blame but I'm having the same problem as a previous reviewer, Nancy. I finally figured out it was RTT being activated. What a piece of.. garbage. I can't determine how to turn this off and if I move my phone from upright to any other position RTT kicks in. Most people have no need for this,.. feature. I thought I had been able to turn it off in a previous OS version by turning on text speech. But that no longer seems to work. COLLEE CANNOT HEAR YOU!!\",\n \"Two thirds of the time this app on my Motorola 4g phone rings but fails to show anything on the screen so I can't answer the call on my cell phone. I set it up to switch over to the house phone so I don't lose the call. The rest of the time it works as expected although I haven't done anything to the app. I've tried everything I could think of including removing and replacing the app, turning power on and off but nothing works permanently. Extremely annoying problem. Maybe a different app?\",\n \"Half the time it'll drop the call when I've got full bars, my voice or the other person's voice gets really choppy and sounds like one of us is underwater. I've had where it won't make calls and just disconnects for no reason, I feel like each update it just gets worse and not better, I mean when the purpose of the app is to call and talk to people and that fails it's kinda useless\"\n ],\n \"appId\": \"com.google.android.dialer\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.dialer\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.dialer&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.dialer/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.dialer/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.dialer/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Wallet\",\n \"description\": \"Google Wallet gives you fast, secure access to your everyday essentials. Tap to pay everywhere Google Pay is accepted, board a flight, go to a movie, and more – all with just your phone. Keep everything protected in one place, no matter where you go.\\n\\nCONVENIENT\\n\\nGet what you need fast\\n+ Three quick ways for accessing your everyday essentials: use your phone’s quick settings for fast access, open the Wallet app from your homescreen or use Google Assistant when your hands are busy.\\n\\nCarry cards, tickets, passes, and more\\n+ Catch a train, see a concert, or earn rewards at your favorite stores with a digital wallet that carries more\\n+ [US Only] Unlock the world around you with a digital wallet that carries your drivers license and digital car keys\\n\\nWhat you need, right when you need it\\n+ Your Wallet can suggest what you need, right when you need it. Get a notification for your boarding pass on the day of travel, so you’ll never have to fumble in your bag again.\\n\\nHELPFUL\\n\\nKeep track of receipts\\n+ Easily find transaction details in Wallet, including smart details like location pulled from Google Maps\\n\\nSeamless integration across Google\\n+ Sync your Wallet to keep your Calendar and Assistant up to date with the latest info like flight updates and event notifications\\n+ Shop smarter by seeing your point balances and loyalty benefits in Maps, Shopping, and more\\n\\nGet started in a snap\\n+ Set up is seamless with the ability to import cards, transit passes, loyalty cards and more that you’ve saved on Gmail.\\n\\nStay in the know on the go\\n+ Make boarding flights a breeze with the latest information pulled from Google Search. Google Wallet can keep you posted on gate changes or unexpected flight delays.\\n\\nSAFE & PRIVATE\\n\\nA secure way to carry it all\\n+ Security and privacy are built into every part of Google Wallet to keep all your essentials protected.\\n\\nAndroid security you can count on\\n+ Keep your data and essentials secure with advanced Android security features like 2-Step Verification, Find My Phone, and remotely erasing data.\\n\\nTap to pay keeps your card secure\\nALT: + When you tap to pay with your Android phone, Google Pay doesn’t share your real credit card number with the business, so your payment info stays safe.\\n\\nYou’re in control of your data\\n+ Easy to use privacy controls allow you to opt-in to sharing information across Google products for a tailored experience.\\n\\nGoogle Wallet is available on all Android phones and Wear OS devices (Lollipop 5.0+).\\nStill have questions? Head over to support.google.com/wallet.\",\n \"descriptionHTML\": \"Google Wallet gives you fast, secure access to your everyday essentials. Tap to pay everywhere Google Pay is accepted, board a flight, go to a movie, and more – all with just your phone. Keep everything protected in one place, no matter where you go.

CONVENIENT

Get what you need fast
+ Three quick ways for accessing your everyday essentials: use your phone’s quick settings for fast access, open the Wallet app from your homescreen or use Google Assistant when your hands are busy.

Carry cards, tickets, passes, and more
+ Catch a train, see a concert, or earn rewards at your favorite stores with a digital wallet that carries more
+ [US Only] Unlock the world around you with a digital wallet that carries your drivers license and digital car keys

What you need, right when you need it
+ Your Wallet can suggest what you need, right when you need it. Get a notification for your boarding pass on the day of travel, so you’ll never have to fumble in your bag again.

HELPFUL

Keep track of receipts
+ Easily find transaction details in Wallet, including smart details like location pulled from Google Maps

Seamless integration across Google
+ Sync your Wallet to keep your Calendar and Assistant up to date with the latest info like flight updates and event notifications
+ Shop smarter by seeing your point balances and loyalty benefits in Maps, Shopping, and more

Get started in a snap
+ Set up is seamless with the ability to import cards, transit passes, loyalty cards and more that you’ve saved on Gmail.

Stay in the know on the go
+ Make boarding flights a breeze with the latest information pulled from Google Search. Google Wallet can keep you posted on gate changes or unexpected flight delays.

SAFE & PRIVATE

A secure way to carry it all
+ Security and privacy are built into every part of Google Wallet to keep all your essentials protected.

Android security you can count on
+ Keep your data and essentials secure with advanced Android security features like 2-Step Verification, Find My Phone, and remotely erasing data.

Tap to pay keeps your card secure
ALT: + When you tap to pay with your Android phone, Google Pay doesn’t share your real credit card number with the business, so your payment info stays safe.

You’re in control of your data
+ Easy to use privacy controls allow you to opt-in to sharing information across Google products for a tailored experience.

Google Wallet is available on all Android phones and Wear OS devices (Lollipop 5.0+).
Still have questions? Head over to support.google.com/wallet.\",\n \"summary\": \"Fast, secure access to everyday essentials like cards, passes or tickets\",\n \"installs\": \"500,000,000+\",\n \"minInstalls\": 500000000,\n \"maxInstalls\": 509950081,\n \"score\": 3.9638743,\n \"scoreText\": \"4.0\",\n \"ratings\": 1293252,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.walletnfcrel/reviews\",\n \"histogram\": {\n \"1\": 215542,\n \"2\": 48745,\n \"3\": 101921,\n \"4\": 127708,\n \"5\": 799320\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"google-payments@google.com\",\n \"developerWebsite\": \"https://pay.google.com/about\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"https://policies.google.com/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Finance\",\n \"genreId\": \"FINANCE\",\n \"icon\": \"https://play-lh.googleusercontent.com/DHBlQKvUNbopIS-VjQb3fUKQ_QH0Em-Q66AwG6LwD1Sach3lUvEWDb6hh8xNvKGmctU\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/wHPP4mjBRywNkDOJ-6IpdI2H39buQ8OhfScYc7oNMLyedctH-U8m5Rjk2YDMRytb6ZI\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/3Egk1Z7OqjUvopx9tDufrr4x8wNQzVAsmYEkyVOPTG6EjzOrcBxw2hNx77VQkteFFUU\",\n \"https://play-lh.googleusercontent.com/CfcvYY2AcxT6dOSbjOQPS0w8L_wBglBmsv_7hYCbreT3ug-38Xfj43v3h1EZhT3RKu5Q\",\n \"https://play-lh.googleusercontent.com/cRAw6B-nt7sG-lktHz1V7VBDvCqZJRSQCgYt6ovL04SMMqfQt7BPJjKbgKgFHjLaLdA\",\n \"https://play-lh.googleusercontent.com/yYqyoFdjyePpEJ_e75IJppSmohi5OM6mWQAJTnr_kWzv0eoYBk9AC4BXmZCio1WExw\",\n \"https://play-lh.googleusercontent.com/uJoJcukJ4-uDqOOmgIYUMjE1WwO7otKSR0532m4t459MDo1LuWaK3tfi-eDT2C-b0zU\",\n \"https://play-lh.googleusercontent.com/rt9tNqeQIn6IVOK7i52zD4a6TwbTMZrEA894XrSo8g56u2N7mnqiYG3jOQ1v3M3E-mc\",\n \"https://play-lh.googleusercontent.com/ShteLlGdM45QUWpf3WV6R2SOKDdfB2UqbocJuQ391Asgzhm-RwImhoA3DD0sUI6xYA\",\n \"https://play-lh.googleusercontent.com/Ud2kDSLvjHRW8uET--x-OZGFnhNL54ryCgBWi_IQHzz8Ftor-tbvLpZEYo_jY-pw-jo\",\n \"https://play-lh.googleusercontent.com/0MemXwmFGX553raLXC9frvHmPBiIPtjdFjYdae6vl87_2zkyfIsYvImvYiidPjxDYycL\",\n \"https://play-lh.googleusercontent.com/WcVw0lpI3QvA0uWw4toAGRJ6MO3IubdyD0CffjYr1LDw7NbVwShKbst7YiaNA6k6iAFo\",\n \"https://play-lh.googleusercontent.com/7BfsnKcWqrM-Snl8uYEYZEPNUeDkRr7aOm1D4XMWMoNxKTrKNWgVmtzxnunqGjeNXmI\",\n \"https://play-lh.googleusercontent.com/J3QNC_EFBi_qgxddGvkz5RpgIXgwg6cizM9y6wbHB3q0xINxqNHuYPHjb-6lQGFvoL3A\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Jun 24, 2011\",\n \"updated\": 1661884234000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• Keep everything protected in one place, no matter where you go with the new Google Wallet.
• Enjoy faster, safer, easier access to essentials like your payment cards, loyalty cards, concert tickets and more – all from your Android phone.\",\n \"comments\": [\n \"It was all set up with PayPal to require me to enter my Google password for automatic payment. Now, it is repeatedly denying payment at all, with an Error message that is not explained. When payment was set up, they were called Google Play. Now, they are Google Wallet, and are added to my PayPal Wallet account. I want to be able to sign into Google to allow payments to their games. After posting here, they contacted me and somehow fixed the problem the same day.\",\n \"Firstly, lack of security. Everyone can access my loyalty cards or passes, if the phone is unlocked. Secondly, harder to find required card if its without a logo. Due to a bigger card size(comparing to old version), need more to scroll. Thirdly, there is no possibility to sort cards automatically at least by name. I have added a lot of loyalty cards, and had to spend additional time to sort. Also, it would be useful to have a separate travel passes from loyalty cards.\",\n \"Terrible. I have a concert tmrw night that was pushed back forever ago due to covid. The tix were in my expired passes for months. Then they updated the app last week and now they are gone. I can still open the link to them from the original email and try to redownload them but it wont let me because it says it's already in my wallet. Even gives me the option to open it in the wallet app. But when you hit it nothing happens and the expired passes are still empty. Thanks Google!\",\n \"It's a start but still a ways away from replacing your physical wallet. It needs much better security measures on the user end, you cannot add any forms of ID like Apple and the Wear app is only able to use payment methods. It would be much more convenient if the tickets populated on the watch and they could scan the barcode from my wrist.\",\n \"Even if I unlock my phone and open the Wallet app, it fails on tap to pay for the first time and forces me to authenticate. So my experience is: unlock phone, tap to pay, fail, authenticate, tap to pay 2nd time, success. There are no settings under NFC or in the wallet app to correct that. Update: Followed all the steps from the first link given. Second link refers to sending feedback. Already did that as well. Haven't heard anything.\"\n ],\n \"appId\": \"com.google.android.apps.walletnfcrel\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.walletnfcrel\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.walletnfcrel&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.walletnfcrel/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.walletnfcrel/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.walletnfcrel/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google One\",\n \"description\": \"The Google One app lets you automatically back up your phone and manage your Google cloud storage.\\n• Automatically back up the important things on your phone, like photos, contacts and messages using your free 15 GB of storage that comes with every Google account. If you break, lose or upgrade your phone, you can restore everything to your new Android device.\\n• Manage your existing Google account storage across Google Drive, Gmail and Google Photos.\\n\\nUpgrade to a Google One membership to get even more: \\n• Get as much storage as you need for your important memories, projects and digital files. Choose the plan that works best for you. \\n• Get extra protection for your phone with a VPN that encrypts your online activity and helps keep your personal information safe\\n• Get exclusive access to Google experts for help with all of Google’s products and services. If you have a question or need assistance, our team of Google experts is just a tap away.\\n• Share your storage with up to 5 additional people. This gives each person access to more storage from your plan, but not access to each other’s files.\",\n \"descriptionHTML\": \"The Google One app lets you automatically back up your phone and manage your Google cloud storage.
• Automatically back up the important things on your phone, like photos, contacts and messages using your free 15 GB of storage that comes with every Google account. If you break, lose or upgrade your phone, you can restore everything to your new Android device.
• Manage your existing Google account storage across Google Drive, Gmail and Google Photos.

Upgrade to a Google One membership to get even more:
• Get as much storage as you need for your important memories, projects and digital files. Choose the plan that works best for you.
• Get extra protection for your phone with a VPN that encrypts your online activity and helps keep your personal information safe
• Get exclusive access to Google experts for help with all of Google’s products and services. If you have a question or need assistance, our team of Google experts is just a tap away.
• Share your storage with up to 5 additional people. This gives each person access to more storage from your plan, but not access to each other’s files.\",\n \"summary\": \"Automatic phone backup, expanded storage for Drive, Gmail, Photos, and more.\",\n \"installs\": \"500,000,000+\",\n \"minInstalls\": 500000000,\n \"maxInstalls\": 827448647,\n \"score\": 4.3132906,\n \"scoreText\": \"4.3\",\n \"ratings\": 372819,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.subscriptions.red/reviews\",\n \"histogram\": {\n \"1\": 35070,\n \"2\": 9909,\n \"3\": 22563,\n \"4\": 40861,\n \"5\": 264404\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": true,\n \"IAPRange\": \"$0.99 - $249.99 per item\",\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://one.google.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Productivity\",\n \"genreId\": \"PRODUCTIVITY\",\n \"icon\": \"https://play-lh.googleusercontent.com/DGAleS46qOedNzJGsB3e29QLpL6Qi6EwIDze95nBvxMAMGEmbE6KOW__2haEkHVDs4Y\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/KMjC0ubqFf3JHXnkOKZhSDS-Rn9Vkn8cLOh97vg6pGCmpq_MVucWpthTF-0gCsyrA8bh\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/Hq1_md0WKFpe6InQDSxckKJRs8SgVFQVWxxl3i-ajrzXKa1fFSp1oJPuKODDFRNFyc4A\",\n \"https://play-lh.googleusercontent.com/Pz5zeJ7qzbfs0LmGQI-8dH957NuB49WeSxrbNEhzxs0pD2_4BTRinyT5M_UULQH2xA\",\n \"https://play-lh.googleusercontent.com/yAN2k-Xwt_0omZGVuBAfU2Kn-v5GBDLTineLs1lbH2X6IlWPsHxMsTLfPBPvmt3y9qg\",\n \"https://play-lh.googleusercontent.com/DEoNef6aL5xnBkgd8lXL9MiSA2BCa5aFDqq5t2hmUvMVhTdZoVQWUVud4H8RKFoFow\",\n \"https://play-lh.googleusercontent.com/WA26z-ix6Z3Ep1mIsjVmO2HGH07yhJ0s_sdDqUFMqQLdKSPmrUBYymrf1i4kM0GM-SE\",\n \"https://play-lh.googleusercontent.com/TesXWUcblbj1Ep_mFv6s4yOKLLra9L6VgI0GOZ9xttxM43Al5a7uPTw9DqOBSvHVZ11z\"\n ],\n \"video\": \"https://www.youtube.com/embed/4Ltr3pqgCSQ?ps=play&vq=large&rel=0&autohide=1&showinfo=0\",\n \"videoImage\": \"https://play-lh.googleusercontent.com/KMjC0ubqFf3JHXnkOKZhSDS-Rn9Vkn8cLOh97vg6pGCmpq_MVucWpthTF-0gCsyrA8bh\",\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"May 24, 2018\",\n \"updated\": 1660836936000,\n \"version\": \"VARY\",\n \"recentChanges\": \"This release contains bug fixes and performance improvements.\",\n \"comments\": [\n \"When using this app for doing a backup, during backup my caffeine button turns off after awhile. Then screen goes black of course, cannot see when the backup is completely finished. Please fix. Thank you. *Update: I tried your suggestion link. This did not make a difference. Caffeine button on equals, screen always on, button is located in drop down menu.\",\n \"This fairly price service is buggy, lacking in some basic functionalities, and there's basically no tech support. Very disappointed with Google. I switched to Google One and Google Drive to replace the also-buggy Microsoft Drive, and was rather appalled to find out that (1) you cannot select folders for offline access, only specific files, one by one; (2) you can't save files into Google Drive from an Android device, or at least not if the device is from Samsung. Ridiculous!\",\n \"Good for catastrophic or FULL recoveries only. If you (like me) want to factory reset to level-set on performance then be warned you CANNOT select which parts of the backup you can restore. For instance, if you want to recover just SMS and call history, but start over with apps and settings, then that is IMPOSSIBLE. Very disappointing. EDIT: well selectivity appears to be moot since neither of my backups succeed (vague \\\"try again\\\" toast message). Overall very janky and not intuitive.\",\n \"As far as I'm concerned this app (and it's collaborative apps like photos, drive, etc.) are by far the most innovative, consistent, inspiring and feature rich of these app category, maybe even ALL categories. There are times I can't find where the item I just downloaded is, come to find out it's already and always already uploaded to photos of whatever other utility. Top notch. Google is imo is the industry standard as far as not just quantity, but quality too. 5/5\",\n \"Most of the app is fine. The VPN is garbage. It's slow, and disconnects out of the blue. Reconnecting (or just connecting) is painfully slow, and fails completely at times, it just gives up. I definitely wouldnt recommend signing up for Google One just for the VPN, use a separate paid VPN company (who is actually concerned about your privacy. Not a mega-corporation tacking on a half-baked feature to an app)\"\n ],\n \"appId\": \"com.google.android.apps.subscriptions.red\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.subscriptions.red\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.subscriptions.red&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.subscriptions.red/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.subscriptions.red/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.subscriptions.red/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouTube Kids\",\n \"description\": \"A video app made just for kids\\nYouTube Kids was created to give kids a more contained environment filled with family-friendly videos on all different topics, igniting your kids’ inner creativity and playfulness. Parents and caregivers can guide the journey as your kids discover new and exciting interests along the way. Learn more at youtube.com/kids\\n\\nA safer online experience for kids\\nWe work hard to keep the videos on YouTube Kids family-friendly and use a mix of automated filters built by our engineering teams, human review, and feedback from parents to protect our youngest users online. But no system is perfect and inappropriate videos can slip through, so we’re constantly working to improve our safeguards and offer more features to help parents create the right experience for their families.\\n\\nCustomize your child’s experience with Parental Controls\\nLimit screen time: Set a time limit for how long your kids can watch and help encourage their transition from watching to doing.\\nKeep up with what they watch: Simply check the watch it again page and you’ll always know what they’ve watched and the newest interests they’re exploring.\\nBlocking: Don’t like a video? Block the video or whole channel, and never see it again.\\nFlagging: You can always alert us to inappropriate content by flagging a video for review. Flagged videos are reviewed 24 hours a day, seven days a week.\\n\\nCreate individual experiences as unique as your kids\\nCreate up to eight kid profiles, each with their own viewing preferences, video recommendations, and settings. Choose from “Approved Content Only” mode or select an age category that fits your child, “Preschool”, “Younger”, or “Older”. \\n\\nSelect the “Approved Content Only” mode if you want to handpick the videos, channels and/or collections that you’ve approved your child to watch. In this mode, kids won’t be able to search for videos. The “Preschool” Mode designed for kids 4 and under curates videos that promote creativity, playfulness, learning, and exploration. The “Younger” Mode allows kids 5-8 to explore their interests in a wide variety of topics including songs, cartoons, and crafts. While our “Older” Mode gives kids 9 and up the chance to search and explore additional content such as popular music and gaming videos for kids.\\n\\nAll kinds of videos for all kinds of kids\\nOur library is filled with family-friendly videos on all different topics, igniting your kids’ inner creativity and playfulness. It’s everything from their favorite shows and music to learning how to build a model volcano (or make slime ;-), and everything in between.\\n\\nOther important information:\\nParental setup is needed to ensure the best experience possible for your kid.\\nYour kid may also see videos with commercial content from YouTube creators that are not paid ads.The Privacy Notice for Google Accounts managed with Family Link describes our privacy practices when your kid uses YouTube Kids with their Google Account. When your kid uses YouTube Kids without signing into their Google Account, the YouTube Kids Privacy Notice applies.\",\n \"descriptionHTML\": \"A video app made just for kids
YouTube Kids was created to give kids a more contained environment filled with family-friendly videos on all different topics, igniting your kids’ inner creativity and playfulness. Parents and caregivers can guide the journey as your kids discover new and exciting interests along the way. Learn more at youtube.com/kids

A safer online experience for kids
We work hard to keep the videos on YouTube Kids family-friendly and use a mix of automated filters built by our engineering teams, human review, and feedback from parents to protect our youngest users online. But no system is perfect and inappropriate videos can slip through, so we’re constantly working to improve our safeguards and offer more features to help parents create the right experience for their families.

Customize your child’s experience with Parental Controls
Limit screen time:
Set a time limit for how long your kids can watch and help encourage their transition from watching to doing.
Keep up with what they watch: Simply check the watch it again page and you’ll always know what they’ve watched and the newest interests they’re exploring.
Blocking: Don’t like a video? Block the video or whole channel, and never see it again.
Flagging: You can always alert us to inappropriate content by flagging a video for review. Flagged videos are reviewed 24 hours a day, seven days a week.

Create individual experiences as unique as your kids
Create up to eight kid profiles, each with their own viewing preferences, video recommendations, and settings. Choose from “Approved Content Only” mode or select an age category that fits your child, “Preschool”, “Younger”, or “Older”.

Select the “Approved Content Only” mode if you want to handpick the videos, channels and/or collections that you’ve approved your child to watch. In this mode, kids won’t be able to search for videos. The “Preschool” Mode designed for kids 4 and under curates videos that promote creativity, playfulness, learning, and exploration. The “Younger” Mode allows kids 5-8 to explore their interests in a wide variety of topics including songs, cartoons, and crafts. While our “Older” Mode gives kids 9 and up the chance to search and explore additional content such as popular music and gaming videos for kids.

All kinds of videos for all kinds of kids
Our library is filled with family-friendly videos on all different topics, igniting your kids’ inner creativity and playfulness. It’s everything from their favorite shows and music to learning how to build a model volcano (or make slime ;-), and everything in between.

Other important information:
Parental setup is needed to ensure the best experience possible for your kid.
Your kid may also see videos with commercial content from YouTube creators that are not paid ads.The Privacy Notice for Google Accounts managed with Family Link describes our privacy practices when your kid uses YouTube Kids with their Google Account. When your kid uses YouTube Kids without signing into their Google Account, the YouTube Kids Privacy Notice applies.\",\n \"summary\": \"Encourage kids to discover the world with a suite of parental controls\",\n \"installs\": \"100,000,000+\",\n \"minInstalls\": 100000000,\n \"maxInstalls\": 394076373,\n \"score\": 4.35304,\n \"scoreText\": \"4.4\",\n \"ratings\": 2181199,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.kids/reviews\",\n \"histogram\": {\n \"1\": 200690,\n \"2\": 56931,\n \"3\": 104387,\n \"4\": 228746,\n \"5\": 1590406\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"ytkids-support@google.com\",\n \"developerWebsite\": \"https://support.google.com/youtubekids\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/intl/en/policies/privacy/\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Entertainment\",\n \"genreId\": \"ENTERTAINMENT\",\n \"icon\": \"https://play-lh.googleusercontent.com/S4wylkvt2jz16hnG9IG0pAZosbB82nWWy8P-rQkb54uH-SCVd5L2j7z7x1Vz5pZvIRc\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/k8aQJcANe3dS-Aq7vmD9PWxMmeMb6EK0xukR-A6fJZSoH1US5G-IMp936e9XcQV-zMKv\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/gj79fqC_e0WALoYNzMEusxe1CbAeynCxCe-nKS2jG7y7M4VpboA0I3b8torgBiQ3DHI\",\n \"https://play-lh.googleusercontent.com/skFMN4uu-TdOWfmIRh7jWezJbEPVZ_AhapnzftbVm3TwnhbzoavIQzMnNEZ3IQPPzLQ\",\n \"https://play-lh.googleusercontent.com/OKH23APfzAeRqmpyKAVdMs_wAghrPC04bG5RQ1Q9kjmlNNjKAuCWVrpw6rKeIsZhDgM\",\n \"https://play-lh.googleusercontent.com/dyaeNwO3Yk3XIDFZrO3h7vahFn9uvPLlEXhn9H_bWQB-nUa9eZkxtARzu0XxZvN6sQM\",\n \"https://play-lh.googleusercontent.com/5mGMQi5TGhs66Mp6r1zxOmRo1ar-mBBXVPsrpLkJb_hZ05eD7L5f4bRYoia-2AmHJ9Nd\",\n \"https://play-lh.googleusercontent.com/EJqvhfvUJ3yA7AaTtv1b4CX6WPVcbFSWTBHBdHGOa-fI9CrxOPpPom4ZswWl_ccPNQ\",\n \"https://play-lh.googleusercontent.com/vwHpTFycGE-kWGwC2MsKOg7X-2lK9XHNdqe3dfkmE3IcK9LFtNVTNgU2RO0a5S2c9A\",\n \"https://play-lh.googleusercontent.com/0t9Ls9sGILpN6pNYZt2iWRZk7Xw14p3UwhM7anFC7ddYQaERPCZdarBOCTeZChJNdhc\",\n \"https://play-lh.googleusercontent.com/zRUoFNvtJHoPKYpGOkdGEjys-a-xcw_JkEJwfK2qpG1AZdQt12Z1cpNkq895CKJ47PY\",\n \"https://play-lh.googleusercontent.com/PqiIDNo5b2QFgF5qbcHQfsFwfLlmEztvAty9NN2eykVqsUM1hGOIuwtdemcWkW1xHA\",\n \"https://play-lh.googleusercontent.com/UJZ7bWmDvIZgTKbg7sCIEYguvdLgr2ZmDYD4ThAlvHggzYSL2vlCUtEG9p4yHFRuySs\",\n \"https://play-lh.googleusercontent.com/FzyiSBDR0ECiFbfQ15QKodK1n2xhKp2sBvJTHXkZjYYZnCyla5dqy9X5xz3mqu7MiTQb\",\n \"https://play-lh.googleusercontent.com/Y5RZllFBrTcOxu24LkpcQshGOp11MbmpMdpIGXe8TR0EdIdnj3se42NMuI5ijlBDKF8x\",\n \"https://play-lh.googleusercontent.com/3x25-9dymFsZ-WsoQd8MBLyLYP_iT3pAtBUBhxOsujx0dDNx7eXjo4Ys80rp7Xhvdu4\",\n \"https://play-lh.googleusercontent.com/N8xFcySz7y6DsWmEKzj7qQFCEntOtLopW7BW5nzGzGb3geu9kGEccJUqkasSvG3ygvo\"\n ],\n \"video\": \"https://www.youtube.com/embed/6pKyIY41Yjw?ps=play&vq=large&rel=0&autohide=1&showinfo=0\",\n \"videoImage\": \"https://play-lh.googleusercontent.com/k8aQJcANe3dS-Aq7vmD9PWxMmeMb6EK0xukR-A6fJZSoH1US5G-IMp936e9XcQV-zMKv\",\n \"contentRating\": \"Everyone\",\n \"adSupported\": true,\n \"released\": \"Feb 23, 2015\",\n \"updated\": 1660863671000,\n \"version\": \"VARY\",\n \"recentChanges\": \"Bug fixes and stability improvements\",\n \"comments\": [\n \"This app does the most infuriatingly annoying thing on Android TV: it will NOT actually close the app when you hit the home screen button. Instead, Android TV will continue to play the video in the background with the volume on while you are on the home screen. Opening other apps means that you will be using that app with the volume from YouTube kids still running. Google, just close the damn app. If I want the video to continue running in the background, make that a menu option.\",\n \"App is great but a a fee minor changes could make it so much better. Would be great to be able to subscribe to certain channels our kids prefer. The autoplay just recently stopped working even though it shows that it's on. Please add the option to be able to restart the video to the beginning without having to press the back button 100 times. Please make the highlighted video more noticeable when selecting a new video to watch.\",\n \"It's a very good app! Although there are a few things I feel should be added. 1 I think there should be an option to save a video to watch later. 2 I would like if u could continue watching a video even when u get out of the app instead of just closing the app all together.3 more age options for 12 to 15 I feel would be good. And finally 4 I would like the ability to comment on a video. But over all definitely recommend this app it's a lot more wholesome then just regular YouTube!🙂\",\n \"Decent, but needs some improvement. It's nice to have more control of what my child sees on YouTube. The parental controls are good. The video controls are lacking; rewind is a 10 second rewind, there is no option to start from the beginning. If you go back to watch a video that you had already watched halfway,you have to watch from the last watched part. The select highlight on the tv is white on pale blue, it is not easy to see.\",\n \"Unable to enter my birth year on lock screen. When I press on the data entry points, no keypad appears, so I can't enter my birth year. Unable to activate app. Edit: it turns out that the data entry keypad is only visible in landscape mode. This is a terrible user interface, there is no clue that there is something off screen in portrait mode which is the way 90% of people will use it on their phone. Upgrading to two stars.\"\n ],\n \"appId\": \"com.google.android.apps.youtube.kids\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.kids\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.youtube.kids&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.kids/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.kids/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.kids/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Slides\",\n \"description\": \"Create, edit, and collaborate on presentations from your Android phone or tablet with the Google Slides app. With Slides, you can:\\n\\n- Create new presentations or edit existing ones\\n- Share presentations and collaborate in the same presentation at the same time\\n- Work anywhere, anytime - even offline\\n- Add and respond to comments\\n- Add and rearrange slides, format text and shapes, and more\\n- Present straight from your mobile device\\n- Never worry about losing your work – everything is saved automatically as you type\\n- Make beautiful slides, instantly - with smart suggestions\\n- Present slides to video calls - scheduled meetings will automatically appear\\n- Open, edit, and save PowerPoint files\\n\\nGoogle Slides is part of Google Workspace: where teams of any size can chat, create, and collaborate.\\n\\nGoogle Workspace subscribers have access to additional Google Slides features, including:\\n- Collaborating on a single presentation online with your business partner, your whole team, or external contacts. You control who gets permission to edit, view, or just add comments.\\n- Starting from scratch or expediting the process by choosing a template. You can enhance your presentations with videos, images, drawings, and smooth transitions.\\n- Working across PCs, Macs, mobiles, and tablets—View or even present your slides from your phone or tablet, so you always have the option to practice your presentation up until the last minute.\\n\\nLearn more about Google Workspace: https://workspace.google.com/products/slides/\\n\\nFollow us for more:\\nTwitter: https://twitter.com/googleworkspace\\nLinkedin: https://www.linkedin.com/showcase/googleworkspace\\nFacebook: https://www.facebook.com/googleworkspace/\\n\\nPermissions Notice\\nCalendar: This is used to join video calls from calendar invites.\\nCamera: This is used for camera mode in video calls and to insert images taken with the camera.\\nContacts: This is used to give suggestions of people to add to files and share with.\\nMicrophone: This is used to transmit audio in video calls.\\nStorage: This is used to insert images and to open files from USB or SD storage.\",\n \"descriptionHTML\": \"Create, edit, and collaborate on presentations from your Android phone or tablet with the Google Slides app. With Slides, you can:

- Create new presentations or edit existing ones
- Share presentations and collaborate in the same presentation at the same time
- Work anywhere, anytime - even offline
- Add and respond to comments
- Add and rearrange slides, format text and shapes, and more
- Present straight from your mobile device
- Never worry about losing your work – everything is saved automatically as you type
- Make beautiful slides, instantly - with smart suggestions
- Present slides to video calls - scheduled meetings will automatically appear
- Open, edit, and save PowerPoint files

Google Slides is part of Google Workspace: where teams of any size can chat, create, and collaborate.

Google Workspace subscribers have access to additional Google Slides features, including:
- Collaborating on a single presentation online with your business partner, your whole team, or external contacts. You control who gets permission to edit, view, or just add comments.
- Starting from scratch or expediting the process by choosing a template. You can enhance your presentations with videos, images, drawings, and smooth transitions.
- Working across PCs, Macs, mobiles, and tablets—View or even present your slides from your phone or tablet, so you always have the option to practice your presentation up until the last minute.

Learn more about Google Workspace: https://workspace.google.com/products/slides/

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/

Permissions Notice
Calendar: This is used to join video calls from calendar invites.
Camera: This is used for camera mode in video calls and to insert images taken with the camera.
Contacts: This is used to give suggestions of people to add to files and share with.
Microphone: This is used to transmit audio in video calls.
Storage: This is used to insert images and to open files from USB or SD storage.\",\n \"summary\": \"Create and edit presentations with Google Slides, part of Google Workspace.\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 1073900923,\n \"score\": 4.0594034,\n \"scoreText\": \"4.1\",\n \"ratings\": 572924,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.slides/reviews\",\n \"histogram\": {\n \"1\": 73609,\n \"2\": 25185,\n \"3\": 53523,\n \"4\": 61820,\n \"5\": 358775\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://support.google.com/docs/?p=android_slides_help\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/mobile/android/\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Productivity\",\n \"genreId\": \"PRODUCTIVITY\",\n \"icon\": \"https://play-lh.googleusercontent.com/DG-zbXPr8LItYD8F2nD4aR_SK_jpkipLBK77YWY-F0cdJt67VFgCHZtRtjsakzTw3EM\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/ELtJaYgdpofXpJ45aMTRbV0j8OUBGDcPE6jUyD7u1fzbWzTQyvRD8WiTMbF-5IlNd5c\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/8eZFT5GVbF1AZIiHQD_-ctWo--QnxvO_KWKHwFVYKMrTHXCwR7-IcMzEXs3RENKpDis\",\n \"https://play-lh.googleusercontent.com/yVfiQMbWdjVwBYdcmhLDfZoh4ZVNyuv8oOTBe807tXSM8XkO6yFcQvUqQCAXGpSQD80d\",\n \"https://play-lh.googleusercontent.com/8hXT2cj0-Q63r6QL8sRBT9Bpa_GilM5rIkQ4GWQHjaicL56N7Bc4kfM6ouNY9J1l3Jnr\",\n \"https://play-lh.googleusercontent.com/QkHa6vXQpbzhrhx3UiF5sFI7WNDcUfGZq5hFaoV05KTD0OpCdAE0f2fHfdTdLJ0C9pA\",\n \"https://play-lh.googleusercontent.com/EYwaOzDlPwCd_GwN9wxhLVenXYNhOzpqMEeaUP8Oe7z1oo_wYBasq9lNxXbsrOJQIQ\",\n \"https://play-lh.googleusercontent.com/kNSvwl8iF0vfAOqaqfp98Yf000nkAaeLait4Pr_H4zWusUtHB5rBs-guBSOIYP_8QQ\",\n \"https://play-lh.googleusercontent.com/gYnL7zfij_MT63KQtiQP7mBiesnXw3T39x5Xw3Vdqwcdw2GOAzZVp2_45Lzigp0amA\",\n \"https://play-lh.googleusercontent.com/xE9q8_Gz2jGqH7voDxYeCwiu_7FXN4oW9PDxohoVQ14pA3sWUQGBOSqxIF--mGwSU90\",\n \"https://play-lh.googleusercontent.com/L5EEaOInpRAU1CdeWJLPqvZSlrsPmdLgHEB2eKdSEMR6NZz1JgSdbkQhnOPcY7D7zw\"\n ],\n \"video\": \"https://www.youtube.com/embed/agOL198h7qc?ps=play&vq=large&rel=0&autohide=1&showinfo=0\",\n \"videoImage\": \"https://play-lh.googleusercontent.com/ELtJaYgdpofXpJ45aMTRbV0j8OUBGDcPE6jUyD7u1fzbWzTQyvRD8WiTMbF-5IlNd5c\",\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Jun 25, 2014\",\n \"updated\": 1661965330000,\n \"version\": \"VARY\",\n \"recentChanges\": \"* Bug fixes and performance improvements\",\n \"comments\": [\n \"I love Google Slides. All of Google's productivity apps are designed to put usability first. There's nothing fancy about Slides; it's just a simple, clean app with all the features you need and everything right where you'd expect it. I appreciate the Google Drive cloud integration too. Being able to access my work from any phone or computer in the world is awesome. Oddly enough; I mostly use Slides as a photo editor for social media. It's surprisingly good at that; lots of customization options.\",\n \"I was using this for a project and all the things I was using on the computer for it are not available. The Word Art option is gone. If you had Word Art on the slide before, all you can do is move it around. Cannot search for images, and images do not show size like it does on computer, which makes it difficult to select the size you need. Text boxes and size of text are difficult to change and adjust. Highlighting is out of the question. Good for presenting but not much else.\",\n \"Always my go to for making a presentation for school and work. I would reccomend to anyone that gives slide presentations, because it is easy to use and gives lot of quality features to explore and implement into projects. I don't have any complaints, I just take off one star for google because they definitely spy on you.\",\n \"Fine if you want to reference a presentation or maybe present it, but editing from the app is awful. Can't change background. Can't delete a slide (press and hold does not work as they say). And changing fonts or layout is clunky at best. I'm a big fan of the desktop version and will continue to use it, but the app is NOT good for editing. I suppose that is due to trying to keep the size small, but dang, don't lie to the user. C'mon, Google.\",\n \"Fabulous for grade school students and beginners learning to create presentations! Of course, it has all of the protection that we have come to love with Docs. My only recommendation....since I have been so reliant on Google products for the past five years, I would like to see a greater variety of templates and transitions - to make upper grade presentations more exciting & more involved.\"\n ],\n \"appId\": \"com.google.android.apps.docs.editors.slides\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.slides\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.docs.editors.slides&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.slides/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.slides/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.docs.editors.slides/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Android Auto\",\n \"description\": \"Android Auto is your smart driving companion that helps you stay focused, connected, and entertained with the Google Assistant. With a simplified interface, large buttons, and powerful voice actions, Android Auto is designed to make it easier to use apps that you love from your phone while you’re on the road.\\n\\n\\nJust say “Ok Google” to...\\n• Route to your next destination using Google Maps or Waze with real-time GPS navigation and traffic alerts.\\n• Get updates on your route, ETA, and hazards in real-time.\\n• Have the Google Assistant check your calendar for you so you know where you need to be.\\n• Set reminders, get updates on the news, and check last night’s score.\\n• Avoid distractions while driving by setting a custom do not disturb message while driving.\\n• Make calls using Google Assistant and answer incoming calls with just a tap.\\n• Access your contacts folder and send and receive messages with the Google Assistant using SMS, Hangouts, WhatsApp, Skype, Telegram, WeChat, Kik, Google Allo, and many more messaging apps.\\n• Manage your infotainment system like never before. Listen to your favorite media apps including Spotify, Pandora, iHeartRadio, Google Play Music, Amazon Music, SiriusXM, TIDAL - High Fidelity Music Streaming, Napster Music, and Deezer. Many more music, radio, news, sports news, audiobook, and podcast apps are also supported.\\n\\nThe number of compatible apps is always growing! For a full list of compatible apps, go to http://g.co/androidauto\\n\\nTo use Android Auto, you’ll need a phone running Android 6.0 or higher and an active data connection.\\nOver 400 car models now support Android Auto! To find out if your car display is compatible and how to enable it, check your owner’s manual or contact your car’s manufacturer. Once enabled, use a high quality USB cable to connect your phone to your car, then launch Android Auto to get going!\\nLearn more about Android Auto and compatible cars at http://android.com/auto\\nFor support: http://support.google.com/androidauto\\nGet help from our community: https://productforums.google.com/forum/#!forum/android-auto\",\n \"descriptionHTML\": \"Android Auto is your smart driving companion that helps you stay focused, connected, and entertained with the Google Assistant. With a simplified interface, large buttons, and powerful voice actions, Android Auto is designed to make it easier to use apps that you love from your phone while you’re on the road.


Just say “Ok Google” to...
• Route to your next destination using Google Maps or Waze with real-time GPS navigation and traffic alerts.
• Get updates on your route, ETA, and hazards in real-time.
• Have the Google Assistant check your calendar for you so you know where you need to be.
• Set reminders, get updates on the news, and check last night’s score.
• Avoid distractions while driving by setting a custom do not disturb message while driving.
• Make calls using Google Assistant and answer incoming calls with just a tap.
• Access your contacts folder and send and receive messages with the Google Assistant using SMS, Hangouts, WhatsApp, Skype, Telegram, WeChat, Kik, Google Allo, and many more messaging apps.
• Manage your infotainment system like never before. Listen to your favorite media apps including Spotify, Pandora, iHeartRadio, Google Play Music, Amazon Music, SiriusXM, TIDAL - High Fidelity Music Streaming, Napster Music, and Deezer. Many more music, radio, news, sports news, audiobook, and podcast apps are also supported.

The number of compatible apps is always growing! For a full list of compatible apps, go to http://g.co/androidauto

To use Android Auto, you’ll need a phone running Android 6.0 or higher and an active data connection.
Over 400 car models now support Android Auto! To find out if your car display is compatible and how to enable it, check your owner’s manual or contact your car’s manufacturer. Once enabled, use a high quality USB cable to connect your phone to your car, then launch Android Auto to get going!
Learn more about Android Auto and compatible cars at http://android.com/auto
For support: http://support.google.com/androidauto
Get help from our community: https://productforums.google.com/forum/#!forum/android-auto\",\n \"summary\": \"Control maps, media and messaging, with the Google Assistant while you drive\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 3913430407,\n \"score\": 4.005488,\n \"scoreText\": \"4.0\",\n \"ratings\": 3065673,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.projection.gearhead/reviews\",\n \"histogram\": {\n \"1\": 432088,\n \"2\": 123469,\n \"3\": 211478,\n \"4\": 527112,\n \"5\": 1771515\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"android-auto-app@google.com\",\n \"developerWebsite\": \"http://www.android.com/auto\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Auto & Vehicles\",\n \"genreId\": \"AUTO_AND_VEHICLES\",\n \"icon\": \"https://play-lh.googleusercontent.com/drnkC46hMwqPTdRLLLufhKgy_dRhA7uNTN14-tq2NxtI3deDakYOAR_4zeHcqbGg4Q\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/aWopwGMsEpu5pmkqz-Lom0HX2O-x2VTD5i-vEmP69DVCKMAROA_ocneZT3ULwCQ_u4HQ\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/DkqclFKgX_RsxKMXcntDLisvmOsfnyfAmcSX7dS1Wk8NT9m5oH67LowpyWoT1jfCog\",\n \"https://play-lh.googleusercontent.com/c89meYTabDYZAsRPMqGkRvq520Yj4mcpyEfjlT_ME5TzSYOQdRZsozFE01SXokv8pfqd\",\n \"https://play-lh.googleusercontent.com/5Oe_StN5UmzTiZARI0fKOZO97EsyS5jHV0jhCj4ZTI57MYhNkJ3vYqqGpbDxSYaeaK8\",\n \"https://play-lh.googleusercontent.com/Z58gl9NKlZz0BbUGO2EeJlrmXbyJIVbo9ixkD5GrWQfm2FkU77t-1QNtkvPpA52dAqo\",\n \"https://play-lh.googleusercontent.com/IZhUPIUSijR2rmuRij8ljiiDHty2FyKxtpgHK8h4qerTaOoXqaWOk5c9T7WPREJqf8uS\"\n ],\n \"video\": \"https://www.youtube.com/embed/YZPT2E2PvZo?ps=play&vq=large&rel=0&autohide=1&showinfo=0\",\n \"videoImage\": \"https://play-lh.googleusercontent.com/aWopwGMsEpu5pmkqz-Lom0HX2O-x2VTD5i-vEmP69DVCKMAROA_ocneZT3ULwCQ_u4HQ\",\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Mar 19, 2015\",\n \"updated\": 1661460324000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• Improved Do Not Disturb functionality.
• Dark mode on car UI is now independent from the phone.
•Bug fixes and other Improvements.
• We want to hear from you! Join the conversation in our community https://g.co/androidautocommunity\",\n \"comments\": [\n \"I love the app and its capabilities. Although, I've had reoccurring problems with it like crashes and poor connection. Sometimes I'm forced to clear the cache, data and delete my device entirely from my car to get it to work properly again, but! I must say that when it's working it's a great app. I get that it is connected to the net and sometimes things like corrupt files will cause things to happen but it happens too often. For a 5 star rating the issues I mentioned need to be addressed.\",\n \"The connectivity issues are so bad, it's almost unusable. In a 45 minute drive, I can guarantee it will disconnect 3 or more times. Brand new high end android auto head unit, with a Samsung S22 Ultra. One of the worst software implementations I've ever attempted to use. Update: still 1 star. Thanks for the help android team. Literally basic level 1 troubleshooting and nothing changed. Absolutely no response to the crash logs sent, and no information is made available to the OWNER OF THE PHONE.\",\n \"The newest update removed the long progress bar on all music apps and replaced it with the older circle progress bar. Also the album art went back to only showing on half the screen. What happened? I've tried clearing cache and what not and it still doesn't fix it. Also a pound angry voice always has to tell me GPS lost when android auto starts which is false.\",\n \"Horrible interface, that connects, then disconnects constantly to brand new cars wired USB hookup. Tried everything suggested, and new cables (4) nothing helps. Google / developers unresponsive to emails, just send links to blogs / FAQ ect.. pages. If it works, when it worked seemed okay, but the more \\\" fixes \\\" I've tried, the worse the connection issue is. Today, it repeatedly cycled between connected, not connected for 20 minutes, until I got tired of hitting the notifications. Junk !\",\n \"Great features and it's easy to use. However, recently it started to lose connection at random times while hardwired. It'll go in and out and eventually stop working until I've rebooted my phone and my car's infotainment system. It's definitely this app, because I experience the connectivity problems in both of our cars. It's incredibly frustrating because at this point, it's a 50/50 chance that it'll actually connect.\"\n ],\n \"appId\": \"com.google.android.projection.gearhead\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.projection.gearhead\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.projection.gearhead&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.projection.gearhead/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.projection.gearhead/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.projection.gearhead/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Calculator\",\n \"description\": \"Calculator provides simple and advanced mathematical functions in a beautifully designed app.\\n\\n• Perform basic calculations such as addition, subtraction, multiplication, and division\\n• Do scientific operations such as trigonometric, logarithmic, and exponential functions\",\n \"descriptionHTML\": \"Calculator provides simple and advanced mathematical functions in a beautifully designed app.

• Perform basic calculations such as addition, subtraction, multiplication, and division
• Do scientific operations such as trigonometric, logarithmic, and exponential functions\",\n \"summary\": \"A simple calculator utility for Android\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 1479823703,\n \"score\": 4.393603,\n \"scoreText\": \"4.4\",\n \"ratings\": 504853,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.calculator/reviews\",\n \"histogram\": {\n \"1\": 37905,\n \"2\": 14102,\n \"3\": 30039,\n \"4\": 52113,\n \"5\": 370681\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"6.0\",\n \"androidVersionText\": \"6.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"android-calculator-feedback@google.com\",\n \"developerWebsite\": \"http://www.google.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/POgn4x_Jrz18VxrjbZC88ijwZJwmOjs2flX1KC0Kz7IF1oncFoKOMsWfFKntJjc20BRJ\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/wBpmN8zHV8sVx2FPz9uRb1o8Itvd_vo_iLAQdEFamqh903EFND9yz0ogWMRJaU1rK3Q\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/abM0By3qWAl9no-ibEgf3WZJYAdsE-CTKEwDTfjYuAKQjxTNJNQXuiK6SD0OxfW_0w\",\n \"https://play-lh.googleusercontent.com/I5x6si4pWgpA0wdd9-WEyiP6qCk-eDr-oTrCgjEJunTtD-nbaMgz9rHbwi88OHrxwq1j\",\n \"https://play-lh.googleusercontent.com/B-XXcG1t5ZuXSjK_90H3YLyzQCX3c4ivIj6TnC3I6wwd9lEe-J6zqfBuAu6ZZFtzmYo\",\n \"https://play-lh.googleusercontent.com/p76R-sNLar-1qXzHtKOEXFRXfD15RLdqCa1FWhm5piEihWNzbNpnavp-n_FoJyXgMmSp\",\n \"https://play-lh.googleusercontent.com/w7jB-H8Id9NRj8rSoqoKogv2ld93icQMYzL5HvBUA4KRR7B_BgpgHS0A_EZ_qHM-XVS6\",\n \"https://play-lh.googleusercontent.com/uQ6L1iFP0I27j72fcrfwmLPQKXakOG2FJlYwSgBXA4T2N3BWswsXwFErjY9dXxFDopU\",\n \"https://play-lh.googleusercontent.com/GZ4U4kSCFs804MczeUaBINLCIJwm7XXTsLAZLGbGPYSTy-XVRLYwHFKiTG4eUmaHKr8\",\n \"https://play-lh.googleusercontent.com/NQb--VDXcQ3zEV3If5h86t-meOozTzhMShwPJQOOAVxEn6c9BgoJRGfKeDKhDngqbDHf\",\n \"https://play-lh.googleusercontent.com/H_uSK3XqTsCRF3GVwrqSM49JY1r4e2rSAIkN-OUuyMf9GVfZOGTaHXtMP70emh2i4w\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Mar 30, 2016\",\n \"updated\": 1655221620000,\n \"version\": \"8.2 (453324893)\",\n \"recentChanges\": \"• Improved tablet support
• Quick settings tile support
• Bug fixes and performance improvements\",\n \"comments\": [\n \"I liked this app before the last update. I already submitted feedback through the app. Please, please change it back so the time before the screen turns black is the same as the phone's. Not a couple of seconds. It also doesn't make sense that it goes to the lock screen instead of the home screen when leaving the app.\",\n \"I find it really annoying that I can no longer hold the backspace button to clear the screen. Instead, I have to use a long reach to hit the AC button. Every time I use this app I intuitively hold the backspace button only for it to delete a single character upon release. I then have to correct and hit the AC button, which turns one intuitive action into two frustrating actions. Every. Single. Time. Why can't the backspace also be used as AC like before?\",\n \"Not much to say to very basic calculator. One suggestion if I may make it to where you can trace it up a little change to color and watching the way out. Add it to a shortcut like on a tile or something of that matter. Or at the ability like an old Texas instrument calculator where you can actually make a program too. That'd be kind of cool\",\n \"It's an easy to use basic calculator with a nice, simple user interface. It has basic math and trig functions. It does not have M+ and MR memory store add and recall functions for storing intermediate results or other types of calculators available as Windows 10 for example with date or financial calculators. If you don't need them, this is the calculator for you.\",\n \"This calculator was as reliable as an old school one, but the most recent update made arbitrary changes. Most notably, the Clear button was eliminated and the backspace was moved. This is constantly frustrating and interrupts my workflow. Why change something that is perfectly functional for the sake of being \\\"fresh\\\"? I just need the calc app to be a calculator. That's it. Still is functional enough, but annoying all the same.\"\n ],\n \"appId\": \"com.google.android.calculator\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.calculator\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.calculator&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.calculator/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.calculator/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.calculator/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Files by Google\",\n \"description\": \"Files by Google is a file management app that helps you:\\n✨ Free up space with cleaning recommendations\\n🔍 Find files faster with search and simple browsing\\n↔️ Share files offline with others, fast and without data\\n☁️ Back up files to the cloud to save you space on device\\n\\nFREE UP MORE SPACE\\nIn just a few taps, you can free up space more quickly and easily than ever: Delete old photos and memes from chat apps, remove duplicate files, erase unused apps, clear your cache and more.\\n\\nCHECK YOUR STORAGE\\nUse Files to see how much free space is left on your phone and SD card. Easily transfer files to an SD card to free up your phone’s storage, right from the app. Or use the integrated file cleaner to get more space on the phone.\\n\\nBE IN CONTROL\\nYou will always know what you’re deleting, we don’t hide behind complicated terms and phrases. Select only what you want to remove and keep the rest. It’s your photos, your videos, your files so you are in charge.\\n\\nBOOST PHONE PERFORMANCE\\nUse Files to keep enough of memory, so that your phone keeps on running smooth. Regularly, you get a prompt to remove junk or temporary files which helps you get more storage immediately.\\n\\nSMART RECOMMENDATIONS\\nGet helpful suggestions of files to erase before you run out of space. The recommendation from Files app get smarter the more you use it.\\n\\nFIND FILES FASTER\\nSave time looking for photos, videos, and documents on your phone. Files uses filters rather than folders so your stuff is organized more intuitively. Files by Google is the file manager and storage browser that helps you find what you’re looking for fast.\\n\\nEASILY MANAGE FILES\\nSearch for your files or simply navigate to them through categories and filters. View, delete, move, rename or share any files. Sort them by file size to understand what’s taking space. Browse all the GIFs your have. Find and share that video you downloaded last week. All of this with few taps.\\n\\nSHARE FILES OFFLINE\\nShare your pictures, videos, documents, or apps with others nearby who also have the app. With fast speed up to 480 Mbps, it’s fast, and it works without the internet, so it doesn’t cost mobile data. Just pair up your phone with anyone nearby who has Files app.\\n\\nENCRYPTED FILE SHARING\\nFiles’s offline file sharing is secured with WPA2 encryption, providing a more secure file transfer. Files app uses Bluetooth to set up encrypted and direct fast wifi connection, so that you can transfer app APK or large files in seconds, send videos or pictures to your friends. Safe and secure.\\n\\nBACKUP FILES TO THE CLOUD\\nIf you want to keep a file forever, select it from the Files menu and back it up to Google Drive or any other cloud storage app. Save them forever without taking space in your phone.\\n\\nBACKUP FILES TO THE SD CARD\\nIf you run out of storage on your phone, simply transfer large files or videos to your SD card if you have one. With a few clicks, you can clean up your phone and fully use the SD card. That leaves your internal storage free and your phone faster.\\n\\nEFFICIENT, EFFECTIVE STORAGE MANAGEMENT\\nFiles app takes less than 10MB of storage on your phone. And there’s no malware or bloatware to affect your phone’s performance.\\n\\nTHREE-IN-ONE TOOL APP\\nWhile taking very little storage on your device, Files does three things in one:\\n1) Free up space - Clean junk files and cache, boost your mobile phone or tablet as you clean up the phone memory and optimize your smartphone performance.\\n2) Find files fast - Browse your storage and find everything fast without being expert in file management.\\n3) Share files - Send pictures, share videos, transfer large files or app apks. All of this with super fast speed with rate up to 480 Mbps over an encrypted direct wifi network.\",\n \"descriptionHTML\": \"Files by Google is a file management app that helps you:
Free up space with cleaning recommendations
🔍 Find files faster with search and simple browsing
↔️ Share files offline with others, fast and without data
☁️ Back up files to the cloud to save you space on device

FREE UP MORE SPACE
In just a few taps, you can free up space more quickly and easily than ever: Delete old photos and memes from chat apps, remove duplicate files, erase unused apps, clear your cache and more.

CHECK YOUR STORAGE
Use Files to see how much free space is left on your phone and SD card. Easily transfer files to an SD card to free up your phone’s storage, right from the app. Or use the integrated file cleaner to get more space on the phone.

BE IN CONTROL
You will always know what you’re deleting, we don’t hide behind complicated terms and phrases. Select only what you want to remove and keep the rest. It’s your photos, your videos, your files so you are in charge.

BOOST PHONE PERFORMANCE
Use Files to keep enough of memory, so that your phone keeps on running smooth. Regularly, you get a prompt to remove junk or temporary files which helps you get more storage immediately.

SMART RECOMMENDATIONS
Get helpful suggestions of files to erase before you run out of space. The recommendation from Files app get smarter the more you use it.

FIND FILES FASTER
Save time looking for photos, videos, and documents on your phone. Files uses filters rather than folders so your stuff is organized more intuitively. Files by Google is the file manager and storage browser that helps you find what you’re looking for fast.

EASILY MANAGE FILES
Search for your files or simply navigate to them through categories and filters. View, delete, move, rename or share any files. Sort them by file size to understand what’s taking space. Browse all the GIFs your have. Find and share that video you downloaded last week. All of this with few taps.

SHARE FILES OFFLINE
Share your pictures, videos, documents, or apps with others nearby who also have the app. With fast speed up to 480 Mbps, it’s fast, and it works without the internet, so it doesn’t cost mobile data. Just pair up your phone with anyone nearby who has Files app.

ENCRYPTED FILE SHARING
Files’s offline file sharing is secured with WPA2 encryption, providing a more secure file transfer. Files app uses Bluetooth to set up encrypted and direct fast wifi connection, so that you can transfer app APK or large files in seconds, send videos or pictures to your friends. Safe and secure.

BACKUP FILES TO THE CLOUD
If you want to keep a file forever, select it from the Files menu and back it up to Google Drive or any other cloud storage app. Save them forever without taking space in your phone.

BACKUP FILES TO THE SD CARD
If you run out of storage on your phone, simply transfer large files or videos to your SD card if you have one. With a few clicks, you can clean up your phone and fully use the SD card. That leaves your internal storage free and your phone faster.

EFFICIENT, EFFECTIVE STORAGE MANAGEMENT
Files app takes less than 10MB of storage on your phone. And there’s no malware or bloatware to affect your phone’s performance.

THREE-IN-ONE TOOL APP
While taking very little storage on your device, Files does three things in one:
1) Free up space - Clean junk files and cache, boost your mobile phone or tablet as you clean up the phone memory and optimize your smartphone performance.
2) Find files fast - Browse your storage and find everything fast without being expert in file management.
3) Share files - Send pictures, share videos, transfer large files or app apks. All of this with super fast speed with rate up to 480 Mbps over an encrypted direct wifi network.\",\n \"summary\": \"Clean up your phone, find files fast & share files offline\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 2282265534,\n \"score\": 4.6304865,\n \"scoreText\": \"4.6\",\n \"ratings\": 6251234,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.files/reviews\",\n \"histogram\": {\n \"1\": 135533,\n \"2\": 65470,\n \"3\": 300403,\n \"4\": 970494,\n \"5\": 4779293\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"5.0\",\n \"androidVersionText\": \"5.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"files-feedback@google.com\",\n \"developerWebsite\": \"http://filesgo.google.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/1nfAdJs2Ep2q1skM7QwJ1uHooWSbpFkbIBHhAX6EmdzEKmtk42713TiTU28mWlkcFKPA\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/hbi11HuqHuZ48mjKuaZuCqiVBVQBGx3C6DrVW4Po4T-xWUMFEmbXMmdJ7Fga78TemQ\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/LSFDbu5uWRPleRawefJDJKYJ7rsiJkyGLJRb-2BG33Kn_bdWZWCJ1TENOZqgK2icDIM\",\n \"https://play-lh.googleusercontent.com/2CM2i94lxLD_iO6lYce_vXAry5N7il0AaxumPcjuGSlvoFJQImj2OCptW9tWmyMjawU1\",\n \"https://play-lh.googleusercontent.com/nL2J9Mew4L3RLoKxKGecb8cKqJMKUTc9JwZF8iRiz0gtEQphiVS_9cTrugDZnoJoGUw\",\n \"https://play-lh.googleusercontent.com/_JpL9Y7oqCTUS7_xAQtnYKmlQQWphrCc8gwqrSC1FzhG9DcZhRKqsNro5czNerwBQGo\",\n \"https://play-lh.googleusercontent.com/ICdJMGWs-TpoLi7svsgpSpifhEF4C7wOlxTmW2QBHsGBZX2gwATDy_rnbLF4BrnOUQ\",\n \"https://play-lh.googleusercontent.com/Lnddszg8hsaDAXCJu4EDvS0Sx21RllZBR9SEFa0JwJ5Sb-Gpw9egXJtAZdxBnORGzNI\",\n \"https://play-lh.googleusercontent.com/z95GpNX_gIbtoMq8PctyNTt4l6nebLJmJZK0Q9QDhtYZwLp7o4N8oxzgOxaKRLbxPcI\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Dec 1, 2017\",\n \"updated\": 1661790105000,\n \"version\": \"1.0.468118265\",\n \"recentChanges\": \"- Bug fixes and minor improvements\",\n \"comments\": [\n \"Servicable, but very frustrating. If I am in a subfolder and wish to copy or move a file to either the parent folder or subfolder within it, I have to manually find my way through the entire fikepath from the top directory each time. Should be an easier way to simply move/copy up or down one level with navigation within the present folder, and drag and drop would be best of all were it present. Navigation through the files is a chore, and search is very broken. Looking for a 3rd party app now.\",\n \"Google files is an amazing app that I love, and use constantly to play music I have downloaded on my phone. But, I think it got an update because now I can't move the music files I have to folders I created. For example, I am trying to move a song I downloaded from the downloads folder to a custom folder I have called 'Disney Music Playlist' which is exactly what It sound like. However, I can't move it to a specific folder, only from internal storage to the safe folder or my SD card. I hate it.\",\n \"Very helpful in keeping up with the storage in my phone. It breaks down how much space each individual app is taking up in your phone. I love most that it makes it easier to see what I should uninstall by showing me what apps are taking up space but aren't used or even useful. Makes it even easier by keeping up with those removable apps and enabling removal of them all at the same time by pressing just one button.\",\n \"Enjoying the app so far! Helps clean up & get rid of double files, screenshots, and apps!! I'll update my review if I find a problem!! 😎 UPDATE 8/11/22 I reinstalled it and I love it does the cleaning for me, I just pick it up and throw it in the trash. 👍 Only thing I wish I could preview the files before throwing away. Most of them I can open with another app, the ones I can't.. Trash. 😊\",\n \"I like that the app reminds me to delete old downloads. It also shows me if I have duplicate pictures or files which is helpful. It also reminds me to just do a general junk cleanup of the miscellaneous stuff that is left behind that no longer necessary. And it doesn't bug you with ads. It allows you to go through and delete apps that you may not have used in awhile. It is really useful.\"\n ],\n \"appId\": \"com.google.android.apps.nbu.files\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.files\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.nbu.files&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.files/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.files/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.nbu.files/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Chat\",\n \"description\": \"Google Chat is an intelligent and secure communication and collaboration tool, built for teams. From ad-hoc messaging to topic-based workstream collaboration, Chat makes it easy to get work done where the conversation is happening.\\n\\n• Group collaboration that allows Google Workspace content creation and sharing (Docs, Sheets, Slides), without having to worry about granting permissions\\n• Side by side editors, one click meetings, scheduling, document creation, and shared files, tasks, and events make it easy to get work done\\n• Google search functionality, with options to filter for conversations and content that you’ve shared\\n• Ready for Enterprise, with the full benefits of Google Workspace security and access controls including Data Loss Prevention, Compliance, Admin Settings, Vault Retention, Holds, Search, and Export\\n\\nFollow us for more:\\nTwitter: https://twitter.com/googleworkspace\\nLinkedin: https://www.linkedin.com/showcase/googleworkspace\\nFacebook: https://www.facebook.com/googleworkspace/\",\n \"descriptionHTML\": \"Google Chat is an intelligent and secure communication and collaboration tool, built for teams. From ad-hoc messaging to topic-based workstream collaboration, Chat makes it easy to get work done where the conversation is happening.

• Group collaboration that allows Google Workspace content creation and sharing (Docs, Sheets, Slides), without having to worry about granting permissions
• Side by side editors, one click meetings, scheduling, document creation, and shared files, tasks, and events make it easy to get work done
• Google search functionality, with options to filter for conversations and content that you’ve shared
• Ready for Enterprise, with the full benefits of Google Workspace security and access controls including Data Loss Prevention, Compliance, Admin Settings, Vault Retention, Holds, Search, and Export

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/\",\n \"summary\": \"Collaborate seamlessly with Google Chat, part of Google Workspace\",\n \"installs\": \"10,000,000+\",\n \"minInstalls\": 10000000,\n \"maxInstalls\": 21300251,\n \"score\": 3.6658256,\n \"scoreText\": \"3.7\",\n \"ratings\": 82029,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.dynamite/reviews\",\n \"histogram\": {\n \"1\": 18007,\n \"2\": 4995,\n \"3\": 7155,\n \"4\": 8099,\n \"5\": 43762\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://chat.google.com\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Business\",\n \"genreId\": \"BUSINESS\",\n \"icon\": \"https://play-lh.googleusercontent.com/cF_oWC9Io_I9smEBhjhUHkOO6vX5wMbZJgFpGny4MkMMtz25iIJEh2wASdbbEN7jseAx\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/ifeN98AseARDk5ZfyVs96BUNj4AMpj4ohduPvX4NEWyaTxzFHhoqrXL38hJeTZim9A\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/kSSG64yr6tnAAGWNH4lLtuwwhxTHtB_J9fV56shZphBDuy8vFkPTJxuMZ8epwbrsHXY\",\n \"https://play-lh.googleusercontent.com/eiXHYkXMc6pTISXkMuE_E-xgLO8F2H5Hm573MXELy5-4kzSzpR4uhWCtYr30VRwK0bBJ\",\n \"https://play-lh.googleusercontent.com/e6s7b5-_nCqAnIXxu0Q-rjLUspNvcYN7YZ6K4b0YXf15VDmJKr5-R-ghvdnK1KE41T0\",\n \"https://play-lh.googleusercontent.com/0QuibumJyc_lAV9nZmbLr_Y2YcydTXrj1fVh3QlYgXwyHPXTeIhwknc9WnDk5MFUrJk\",\n \"https://play-lh.googleusercontent.com/tLzQF6SezyhSwmz8NrQ9o84CwEPps8hMsbcSPVA8SBRvkvUsC-ZVG-yEa3cMt3xe_L4\",\n \"https://play-lh.googleusercontent.com/xjqowXM4dFGGSeo1uhW3foYc_ov8445wlGqPo_H3aIU2aF-I_zB835bAxz0XUortdw\",\n \"https://play-lh.googleusercontent.com/VZh1z_XIOIOyx0bgn7CQf-whHjOUlnI8-y2b5riYBPReVDyl-nxq13EYsrYvhtb8pMs\",\n \"https://play-lh.googleusercontent.com/coTAEi1cNao66EbfNkkPhnjgiDXW2qwgHQjW4I8-bg5O9BoeD8K2cNk-6h-QPvxbzg\",\n \"https://play-lh.googleusercontent.com/_lwBhJGvZWuWaEbdthy020OWM9Y7s28MXl-yrVbyL9dWp_vhK6ddkk4tCiLs4y_2Y5o\",\n \"https://play-lh.googleusercontent.com/dezUH2gH1KIXaEi82GWUwICWdaxzqZSv9qqvAx0L563whvl--EJmVnKYiV-qw0ZMgx_f\",\n \"https://play-lh.googleusercontent.com/FqY2fEOg0pKzpqTnHGiNIq5-rs1YXdw63bvLZp-TQ-4l0GH0gKIz4F-0-K89uMeYcd3X\",\n \"https://play-lh.googleusercontent.com/-VOgf0oo0bE8ulWpUIRVDcz-RqDb36KxHBeejuqxpgTshg_IQLUsZ3Iy9NK-Q8QYW28\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Feb 28, 2018\",\n \"updated\": 1661203843000,\n \"version\": \"VARY\",\n \"recentChanges\": \"Current version, for Google Workspace Customers only, includes direct messages, group chats, and platform integration with Google Apps\",\n \"comments\": [\n \"I mean, it's an okay app. Basic format, really the only thing going for it that makes it different from other free messaging apps is that it's created by Google. However, when compared to what it's trying to replace, Google Hangouts, it's awful. The format is way worse, the notifications don't give you image previews anymore, and it's overall harder to navigate and use. Will probably switch to a different messaging app, as I only used this hoping it would be similar to Hangouts.\",\n \"I hate that the default messaging app changes every 9 months. I hate that every new messaging app is worse than the last. I hate that this one is the culmination of only the worst parts of the last 4 messaging apps. You can only attach one picture at a time. You can't open links externally by default. You can't scroll through prior sent pictures. There are no redeeming qualities. I only use it because I'm forced to.\",\n \"After using this app for many years it was time to part ways with it. Chat is buggy (notifications may not come in, media is slow to upload and may take a while to be visible to the other party once processed), lacks features that are standard in other apps (multiple attachments, high quality video/photo sharing), and overall it seems to have been left to languish like other Google's offerings.\",\n \"500 characters isn't enough to list how many things are wrong with this. If you're going to force an app to replace one, make sure, at the very least, it has the same functionality. On top of it being a pretty bare bones chat app, it's buggy as hell. And yes Google, I've done all your generic \\\"restart, clear cache, reinstall\\\" solutions. Look at Signal or even WhatsApp for some inspiration. Go ahead and pass that along\",\n \"Okay, I don't mind the rooms vs single chats. That's fine. It would be nice to be able to choose as an option to group all chats together or see group chat separately from individual chat. It would also be nice to be able to upload multiple files instead of one at a time (such a downgrade in capabilities from Hangouts). Forcing a move to a new, less capable app is a poor decision.\"\n ],\n \"appId\": \"com.google.android.apps.dynamite\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.dynamite\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.dynamite&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.dynamite/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.dynamite/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.dynamite/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Fit: Activity Tracking\",\n \"description\": \"Get to a healthier and more active life with the new Google Fit!\\n\\nIt's hard to know how much or what kind of activity you need to stay healthy. That's why Google Fit collaborated with the World Health Organization (WHO) and the American Heart Association (AHA) to bring you Heart Points, an activity goal that can help improve your health.\\n\\nActivities that get your heart pumping harder have tremendous health benefits for your heart and mind. You'll earn one Heart Point for each minute of moderate activity like picking up the pace when walking your dog, and double points for more intense activities like running. It takes just 30-minutes of brisk walking five days a week to reach the AHA and WHO's recommended amount of physical activity shown to reduce the risk of heart disease, improve sleep, and increase overall mental wellbeing.\\n\\nGoogle Fit will also help you:\\n\\nTRACK YOUR WORKOUTS FROM YOUR PHONE OR WATCH\\n\\nGet instant insights when you exercise and see real-time stats for your runs, walks, and bike rides. Fit will use your Android phone's sensors or Wear OS by Google smartwatch's heart rate sensors to record your speed, pace, route, and more.\\n\\nMONITOR YOUR GOALS\\n\\nSee your daily progress on your Heart Points and Steps goal. Meeting your goals all the time? Easily adjust your goals to keep challenging yourself to achieve a healthy heart and mind.\\n\\nMAKE ALL YOUR MOVEMENT COUNT\\n\\nIf you walk, run, or bike throughout the day, your Android phone or Wear OS by Google smartwatch will automatically detect and add your activities to your Google Fit journal to ensure you get credit for every move. Want extra credit? Turn up the tempo on your walks by starting a paced walking workout and stepping to the beat. Enjoy a different type of workout? Select it from a list of activities like pilates, rowing, or spinning, and Google Fit will track all the Heart Points you earn.\\n\\nCONNECT WITH YOUR FAVORITE APPS AND DEVICES\\n\\nFit can show you info from many of your favorite apps and devices to give you a holistic view of your health, so you'll never lose track of your progress. These include Lifesum, Wear OS by Google, Nike+, Runkeeper, Strava, MyFitnessPal, Basis, Sleep as Android, Withings, Xiaomi Mi bands, and more.\\n\\nCHECK IN AT ANYTIME, FROM ANYWHERE\\n\\nSee a snapshot of your activity history across Fit and your integrated apps in the redesigned journal. Or, get the full picture in browse, where you can find all of your health and wellness data.\\n\\nKEEP A FINGER ON THE PULSE OF YOUR HEALTH\\n\\nBreathing is one of the simplest ways to reduce tension and relieve stress. With Fit, checking in with your breath is easy—all you need is your phone camera. As well as your respiratory rate, you can measure your heart rate to get a better understanding of your body’s wellbeing.\\n\\nLearn more about Google Fit and see a list of supported apps at: www.google.com/fit\",\n \"descriptionHTML\": \"Get to a healthier and more active life with the new Google Fit!

It's hard to know how much or what kind of activity you need to stay healthy. That's why Google Fit collaborated with the World Health Organization (WHO) and the American Heart Association (AHA) to bring you Heart Points, an activity goal that can help improve your health.

Activities that get your heart pumping harder have tremendous health benefits for your heart and mind. You'll earn one Heart Point for each minute of moderate activity like picking up the pace when walking your dog, and double points for more intense activities like running. It takes just 30-minutes of brisk walking five days a week to reach the AHA and WHO's recommended amount of physical activity shown to reduce the risk of heart disease, improve sleep, and increase overall mental wellbeing.

Google Fit will also help you:

TRACK YOUR WORKOUTS FROM YOUR PHONE OR WATCH

Get instant insights when you exercise and see real-time stats for your runs, walks, and bike rides. Fit will use your Android phone's sensors or Wear OS by Google smartwatch's heart rate sensors to record your speed, pace, route, and more.

MONITOR YOUR GOALS

See your daily progress on your Heart Points and Steps goal. Meeting your goals all the time? Easily adjust your goals to keep challenging yourself to achieve a healthy heart and mind.

MAKE ALL YOUR MOVEMENT COUNT

If you walk, run, or bike throughout the day, your Android phone or Wear OS by Google smartwatch will automatically detect and add your activities to your Google Fit journal to ensure you get credit for every move. Want extra credit? Turn up the tempo on your walks by starting a paced walking workout and stepping to the beat. Enjoy a different type of workout? Select it from a list of activities like pilates, rowing, or spinning, and Google Fit will track all the Heart Points you earn.

CONNECT WITH YOUR FAVORITE APPS AND DEVICES

Fit can show you info from many of your favorite apps and devices to give you a holistic view of your health, so you'll never lose track of your progress. These include Lifesum, Wear OS by Google, Nike+, Runkeeper, Strava, MyFitnessPal, Basis, Sleep as Android, Withings, Xiaomi Mi bands, and more.

CHECK IN AT ANYTIME, FROM ANYWHERE

See a snapshot of your activity history across Fit and your integrated apps in the redesigned journal. Or, get the full picture in browse, where you can find all of your health and wellness data.

KEEP A FINGER ON THE PULSE OF YOUR HEALTH

Breathing is one of the simplest ways to reduce tension and relieve stress. With Fit, checking in with your breath is easy—all you need is your phone camera. As well as your respiratory rate, you can measure your heart rate to get a better understanding of your body’s wellbeing.

Learn more about Google Fit and see a list of supported apps at: www.google.com/fit\",\n \"summary\": \"Want to take charge of your health? Let Google Fit help you reach your goals.\",\n \"installs\": \"100,000,000+\",\n \"minInstalls\": 100000000,\n \"maxInstalls\": 147438788,\n \"score\": 3.8616133,\n \"scoreText\": \"3.9\",\n \"ratings\": 537650,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.fitness/reviews\",\n \"histogram\": {\n \"1\": 85819,\n \"2\": 33035,\n \"3\": 48950,\n \"4\": 71730,\n \"5\": 298095\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://www.android.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Health & Fitness\",\n \"genreId\": \"HEALTH_AND_FITNESS\",\n \"icon\": \"https://play-lh.googleusercontent.com/jArSD-kxOa2llPXvqrjRcEJdL4XhjP8-WqEfg9UAlYF8v0qzXAZ0EI5k96l0pf3tDNg\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/PZ0lg4Ip7xtATY6HzziurtOpH53w37Bz8kMzOOV9wyH-mSsw1gc4spVFZCgE0Y5qgA\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/fAvgVK17vHg9u2vunheRDa-oARLz338U2-vgdBtrpESk9KHwuIzfI18C8J90SaZsI_c\",\n \"https://play-lh.googleusercontent.com/XbLMBC4ZgXRa5qB2FyKxAufNtQ0p00dqW5zw8LsA4DoiF6ikMLmnOgs099BpCcrRXM4\",\n \"https://play-lh.googleusercontent.com/krIjCL2Ew2ldj9zkVCTN4d-IMpo5_kSf7_PfPPWJgydESNrmgfLW5UAqhcK1YW9PxA\",\n \"https://play-lh.googleusercontent.com/bKZ7OcnxwEKtgMsb2qQGg4DpTD0_wY9UmLNG14l-1TyxkmxlajOhUdgyBc6aiQqOCA\",\n \"https://play-lh.googleusercontent.com/POtMBU5sJXgNRDcSPS3AE5_7rUSesOw-vlYKrEf4Bq-oQRukpvr4luKGxdhjuooxb0Y\",\n \"https://play-lh.googleusercontent.com/s_kuEZroENw_JfVVAK_InQyoc6bUi2boPRcmO83MyC6Gpvz_mZUrMDwOXl1jHweBkC4\",\n \"https://play-lh.googleusercontent.com/QUu5nxk9UAq8qcySoY0qbp2fQKHjJl7SmvHymjzqrWygublIl08p6eAC5JH6RXEE64Ji\",\n \"https://play-lh.googleusercontent.com/T7EH8ieyvRJdKcmxIH5UMm6dbaWGBfJ7hWEFeYGW_q1FNs9yEhTg3vbVImSoH2g7zA\",\n \"https://play-lh.googleusercontent.com/lWCOqVE5h_WCPN8sA2kOVhajmy-VbyjXbWgGdhyU95lruKpwpMx-sG8HgCFlOKXZ0F_P\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Oct 28, 2014\",\n \"updated\": 1660658521000,\n \"version\": \"VARY\",\n \"recentChanges\": \"
• Measure your heart rate and respiratory rate using just your phone camera (selected devices)
• Turn up the tempo of your walks with paced walking in Workouts
• Find all of your health and wellness data in the Browse tab
• Minor bug fixes and UI improvement\",\n \"comments\": [\n \"I can't even begin to tell you what's wrong with this app as there are numerous things including not syncing with smart watches, deleting data on it's own, and not recording my workouts to name a few. I would think Google would be capable of putting out an app than performed better than the overall total failure that this app is. Take a tip from Apple on this one.\",\n \"Does not correctly sync with Strava. Of my last 10 Strava workouts, over half are missing. Randomly imported activity today but with the wrong date. I did ALL of the suggested \\\"fixes\\\" by the developer and it still doesn't work a lot of the time. Bottom line is this app needs significant improvement instead of expecting users to go through an arduous process every time they want to sync data.\",\n \"EDIT: I did what they suggested. The program still doesn't add distance or calories for anything added manually. I don't like that it doesn't track anything you add manually like swimming. I swim for two hours and manually enter it. It adds the heart points but not the activity time or calories that I enter. I really wish they would fix this.\",\n \"It's great when it works which is maybe 50% of the time. I have a Google Wear OS watch and a Google 6 Pro but Google fit stops working almost daily now. I've tried all the fixes, logging in and out, restarting devices, toggling the activity tracker on and off, none of it works. It's obvious there's a bug with Google fit that they're unable to fix. I've moved on to utilizing other activity trackers and highly recommend others do as well.\",\n \"In the past 2 years Fit has gotten consistently worse at syncing with other apps (Strava, Nike Run Club, and Runkeeper all sync for about a week after connecting and then never show up on Fit again) and calories burned has consistently gotten lower and doesn't line up with online calculators or other apps. There's also no clear way to give feedback in the app and any help pages online don't have any transparency as to how they're working on reported issues.\"\n ],\n \"appId\": \"com.google.android.apps.fitness\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.fitness\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.fitness&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.fitness/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.fitness/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.fitness/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Voice\",\n \"description\": \"Google Voice gives you a phone number for calling, text messaging, and voicemail. It works on smartphones and computers, and syncs across your devices so you can use the app in the office, at home, or on the go.\\n\\nNOTE: Google Voice only works for personal Google Accounts in the US and Google Workspace accounts in select markets. Text messaging is not supported in all markets.\\n\\n You're in control\\n Get spam filtered automatically and block numbers you don’t want to hear from. Manage your time with personalized settings for forwarding calls, text messages, and voicemail.\\n\\n Backed up and searchable\\n Calls, text messages, and voicemails are stored and backed up to make it easy for you to search your history.\\n\\n Manage messages across devices\\n Send and receive individual and group SMS messages from all your devices.\\n\\n Your voicemail, transcribed\\n Google Voice provides advanced voicemail transcriptions that you can read in the app and/or have sent to your email.\\n\\n Save on international calling\\n Make international calls at competitive rates without paying extra for international minutes with your mobile carrier.\\n\\n Keep in mind:\\n • Google Voice is currently only available in the US. Google Voice for Google Workspace users is available in select countries. Check with your administrator for access.\\n • Calls made using Google Voice for Android can be placed through a Google Voice access number. All access number based calls use the standard minutes from your cell phone plan and may incur costs (e.g. when traveling internationally).\",\n \"descriptionHTML\": \"Google Voice gives you a phone number for calling, text messaging, and voicemail. It works on smartphones and computers, and syncs across your devices so you can use the app in the office, at home, or on the go.

NOTE: Google Voice only works for personal Google Accounts in the US and Google Workspace accounts in select markets. Text messaging is not supported in all markets.

You're in control
Get spam filtered automatically and block numbers you don’t want to hear from. Manage your time with personalized settings for forwarding calls, text messages, and voicemail.

Backed up and searchable
Calls, text messages, and voicemails are stored and backed up to make it easy for you to search your history.

Manage messages across devices
Send and receive individual and group SMS messages from all your devices.

Your voicemail, transcribed
Google Voice provides advanced voicemail transcriptions that you can read in the app and/or have sent to your email.

Save on international calling
Make international calls at competitive rates without paying extra for international minutes with your mobile carrier.

Keep in mind:
• Google Voice is currently only available in the US. Google Voice for Google Workspace users is available in select countries. Check with your administrator for access.
• Calls made using Google Voice for Android can be placed through a Google Voice access number. All access number based calls use the standard minutes from your cell phone plan and may incur costs (e.g. when traveling internationally).\",\n \"summary\": \"A customizable phone number in the cloud\",\n \"installs\": \"10,000,000+\",\n \"minInstalls\": 10000000,\n \"maxInstalls\": 31770789,\n \"score\": 4.424129,\n \"scoreText\": \"4.4\",\n \"ratings\": 308733,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googlevoice/reviews\",\n \"histogram\": {\n \"1\": 19020,\n \"2\": 7649,\n \"3\": 17145,\n \"4\": 44461,\n \"5\": 220452\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"5.0\",\n \"androidVersionText\": \"5.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://www.google.com/voice\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Communication\",\n \"genreId\": \"COMMUNICATION\",\n \"icon\": \"https://play-lh.googleusercontent.com/Gf8ufuFbtfXO5Y6JuZjnG0iIpZh21zNTqZ5aiAXO8mA38mvXzY-1s27FWbGlp51paQ\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/YAcWQVBN8tcl5swm5qEeuwP8zMUNXRd6E0yN_gEVn4lYX7ern9S_4VZqRI6DeRhidw\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/-Eo8pCXJ9ofkZsS605-4uXBXbOjCLMOI2THcPhTlmmJ5AUtOlV_ejWpwmxdnobwg-xg\",\n \"https://play-lh.googleusercontent.com/T_6aiD-fKmn91V8Hqm2WNGlxQfonKKfUm9u0pQBzsgg29QFnszI0tCcKLLwl3TDQtG0\",\n \"https://play-lh.googleusercontent.com/yTSD6lM63edhAl0bhQdKiE9hC7OIHgzBxMX2PSnwlW248e7GHvsjgZjIuuhicvMsnAjP\",\n \"https://play-lh.googleusercontent.com/aIRH5E41KH1pNSsWfHgU7i02_UHDFYSG621aS9Rc-OBjLStfeTEyRJIzOQp6Ncojbz8\",\n \"https://play-lh.googleusercontent.com/rJrkcEsdQa7_AozmzGpy9CPTy-GKKFENfBRdUQwXLdI0tSbYSMsng0C19CdzYmQM-Q\",\n \"https://play-lh.googleusercontent.com/iWaKOLYdmOKqLObx3EkBc71BPdkUdNNC__ry6E7rcznxj4CfD6gdcPCnbUJqfa1rnOY\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"updated\": 1661805110000,\n \"version\": \"2022.08.08.468275888\",\n \"recentChanges\": \"• Smart reply: providing suggestions to outgoing SMS messages.
• Call-to-Listen voicemail access can now be enabled, along with PIN creation, from within settings.
• You can now long press on the Voice app launcher to easily place calls or send texts.\",\n \"comments\": [\n \"Managing texts and text threads is really intuitive. I also like that I can install it on any Android device and I have full phone call, texting, and message capability. I've used Google Voice for years and am an avid user of it, because it is such a flexible service and the app continues to evolve and improve. The voice number is the only number I use.\",\n \"I've been using Google Voice for well over a decade. I signed up when it was invite only access. Started using it on my PC, through Gmail/Hangouts mostly and it was a fairly consistent, usable service for calls (redirecting to linked devices, blocking, scheduling, record incoming, etc), texting and voicemail (used to be able to download as MP3). Jump ahead to smartphones and it's still pretty solid. Overall a good user experience. But I can't help wonder why, in 2022, there's no video voicemail.\",\n \"What's the deal with the non-functional \\\"calling screen\\\" that appears after ending a call, or an attempted call? It looks like the normal \\\"call in progress\\\" screen, but has zero functionality, except for the \\\"back arrow\\\" in the top left corner. This requires you to go back to the previous screen, rather than giving you the option to redial the number you just called. Keep the \\\"calling screen\\\" active, after attempting, or finishing a call...\",\n \"Changed my review from one star. Voice has it's perks and it's flaws. Generally positive experience but some of the flaws could be deal-breakers for some. I don't like that you can't send multiple pictures or ANY videos without a link. Some people don't like to open links in an sms conversation. And it's a pita for the sender. I think if we've had the same active number for a set amount of time, say, one year, we shouldn't have to pay the fee to unlock it.\",\n \"I like having a separate number for business. And it's super helpful that I can text from Google Voice as well. All FREE! The only drawback is that, with the update, I am no longer able to see if an incoming call is from my personal number or business number. Makes it difficult to screen calls efficiently.\"\n ],\n \"appId\": \"com.google.android.apps.googlevoice\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googlevoice\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.googlevoice&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googlevoice/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googlevoice/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googlevoice/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Play Books & Audiobooks\",\n \"description\": \"Google Play Books is the one app you need to buy and enjoy ebooks, audiobooks, comics, and manga.\\n\\nChoose from millions of best selling ebooks, comics, manga, textbooks, and audiobooks. Download your book to read or listen on the go. When you’re finished, find your next favorite from recommendations personalized just for you. Buy audiobooks and ebooks as you go - with no subscription required.\\n\\n\\nChoose from millions of popular ebooks, audiobooks, and comics\\n* Buy ebooks and audiobooks as you go - no subscription required.\\n* Preview samples before you buy.\\n* Get extra discounts on select bundles.\\n* Receive emails or notifications about new releases from your favorite authors and when your wishlisted books go on sale.\\n* Earn Google Play Points with every purchase, then exchange them for Google Play credit.\\n* Receive notifications or emails for price drops in your samples and new releases from your favorite authors and series.\\n* Discover new releases, best sellers, and personalized recommendations across genres like romance, science fiction, mystery & thrillers, self-help, religion, nonfiction, and more.\\n\\nBest in class reading and listening experience.\\n* Read or listen on Android, iOS, or your web browser, even when you’re offline.\\n* Pick up where you left off on any device.\\n* Customize your reading experience. Adjust the text size, font type, margins, text alignment, brightness, and background colors.\\n* Track your reading progress. See what percent you’ve read and how many pages you have left.\\n* Organize your library into shelves. Use the new shelves tab to curate your library by theme or genre. View your shelves across Android, iOS, and the web.\\n* Save to SD card. Choose to save your books to the device or an SD card, so you never run out of space.\\n* Use reading tools in children's books to get kid-friendly word definitions, listen to specific words, or hear the book read aloud.\\n* Use Bubble Zoom for easier comic reading on a mobile device. Tap the page and watch your favorite comic or manga come to life.\\n* Take notes that sync with your Google Drive and share them with a group for easy collaboration.\\n* Look up definitions, get translations, save highlights, and bookmark your favorite pages while you read.\\n* Turn on Night Light to automatically adjust the background color and brightness or set the app to use the OS brightness.\",\n \"descriptionHTML\": \"Google Play Books is the one app you need to buy and enjoy ebooks, audiobooks, comics, and manga.

Choose from millions of best selling ebooks, comics, manga, textbooks, and audiobooks. Download your book to read or listen on the go. When you’re finished, find your next favorite from recommendations personalized just for you. Buy audiobooks and ebooks as you go - with no subscription required.


Choose from millions of popular ebooks, audiobooks, and comics
* Buy ebooks and audiobooks as you go - no subscription required.
* Preview samples before you buy.
* Get extra discounts on select bundles.
* Receive emails or notifications about new releases from your favorite authors and when your wishlisted books go on sale.
* Earn Google Play Points with every purchase, then exchange them for Google Play credit.
* Receive notifications or emails for price drops in your samples and new releases from your favorite authors and series.
* Discover new releases, best sellers, and personalized recommendations across genres like romance, science fiction, mystery & thrillers, self-help, religion, nonfiction, and more.

Best in class reading and listening experience.
* Read or listen on Android, iOS, or your web browser, even when you’re offline.
* Pick up where you left off on any device.
* Customize your reading experience. Adjust the text size, font type, margins, text alignment, brightness, and background colors.
* Track your reading progress. See what percent you’ve read and how many pages you have left.
* Organize your library into shelves. Use the new shelves tab to curate your library by theme or genre. View your shelves across Android, iOS, and the web.
* Save to SD card. Choose to save your books to the device or an SD card, so you never run out of space.
* Use reading tools in children's books to get kid-friendly word definitions, listen to specific words, or hear the book read aloud.
* Use Bubble Zoom for easier comic reading on a mobile device. Tap the page and watch your favorite comic or manga come to life.
* Take notes that sync with your Google Drive and share them with a group for easy collaboration.
* Look up definitions, get translations, save highlights, and bookmark your favorite pages while you read.
* Turn on Night Light to automatically adjust the background color and brightness or set the app to use the OS brightness.\",\n \"summary\": \"All the books you love. On the page or out loud. Anywhere you are.\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 3368444346,\n \"score\": 4.0538206,\n \"scoreText\": \"4.1\",\n \"ratings\": 1925773,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.books/reviews\",\n \"histogram\": {\n \"1\": 246035,\n \"2\": 89892,\n \"3\": 172885,\n \"4\": 222507,\n \"5\": 1194441\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"googleplay-support@google.com\",\n \"developerWebsite\": \"http://play.google.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"https://play.google.com/books/intl/privacy.html\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Books & Reference\",\n \"genreId\": \"BOOKS_AND_REFERENCE\",\n \"icon\": \"https://play-lh.googleusercontent.com/DglqS-eYHQYXnj8M8tmzh3JcKDXcidSo3IzgyCZzci8ZTV9Pmuk8vvIFh9XHOztC3Q\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/64VCmoh25X2-gF7OBGsddQtWab752H38OT6MYpW1YurenKdvXzgY1uZYpMW_92FQ1sjh\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/Ukx6uYKXjU7xdji2JrVn-F21rpvz7Jee7eWZGxT2y-hrJJY-QXiJIFMa8HmNc3UKUr0\",\n \"https://play-lh.googleusercontent.com/N3VvK_MP8GPS18DtW92DI2NzOdnN9V50pZXHRNBRgAqWTSvn-aCoibXM45btiLWnCjY\",\n \"https://play-lh.googleusercontent.com/8CcVgsvAS1q0Z2FqZLluRWxgq9Hdpkg1bzAGkeaJX7IUZXRNdOq-q9msD4G6W-hcrugY\",\n \"https://play-lh.googleusercontent.com/4gbwDd-OZMcw0L3pkA4c21i0VL_ItPltqbaHtVQy7kKnhcO9SaAym75xLXYDq9du4f7w\",\n \"https://play-lh.googleusercontent.com/81dA4QyPH7HRlqC81Wozvx2ZHbE3WXngDSdzCjqkggHRqasM9Bn-5BWj_0ln0bg532o\",\n \"https://play-lh.googleusercontent.com/D-B0qdjYRZplS7WnOwXGbx_AaIHloM_I-1OFgYZwynBZcDJhqEzzNSqipb4WP3PipQ\",\n \"https://play-lh.googleusercontent.com/9bbSamMN2VW2UjheOAXD6jByIiqTE7tgKIH2yu7J0705mPGVB8BovHLN9eD2XWVYA-U\",\n \"https://play-lh.googleusercontent.com/DB55MymvFib_CcIG2cRF_ilMJHXL_NAKP51hqvUudGiGPfThJK4zzzsYKuyCH_pOEzc\",\n \"https://play-lh.googleusercontent.com/MPvI_eTpyJbusJg6gFgi5-2JIS030wAQZflmvgUs5NOih5sLz9-WC2tkEIuZy5YB5fc\",\n \"https://play-lh.googleusercontent.com/3Rx8uupQVD0MR8Cu8NLJS-xt5u73NC-1YAQaMJL3mJT8Vwyq03PAjMSeb6Hk6dU5oQ\",\n \"https://play-lh.googleusercontent.com/7bKP9h0ds8XGIaEyiW59Z3Q9cJ8__EkYzfAWhpvTfBKdbx0oRF_PrHR2eOpMrIvLPjr0\",\n \"https://play-lh.googleusercontent.com/aBIY0Nz55klHfWAWf6dkC_f2LMot7CiUP6fTmwhmBA9IxqUzaLd1mvLYQRrVEB6yqVk\",\n \"https://play-lh.googleusercontent.com/mxADzAqQMl9yigySQnL5iEaX9_OQga60edIcloPYKB-MCzuwYo1YKMagS9IcX6o87wiS\",\n \"https://play-lh.googleusercontent.com/YEW3NYlinKER11BdPwd2q00X1CMB8kl-_EJ7kImYgSpmWiStpUQCXmtQjDdNcuYNghE\",\n \"https://play-lh.googleusercontent.com/xkQ_WCR5Af_sMicPAXUGi3A5D8OMCcGm6AFvmR-xspQlBtYvdJCYMUCMz2eukqdOkLM\",\n \"https://play-lh.googleusercontent.com/bnTlY-QyEsrZEg4TdOb5eaKDRbcEDMXmEabjXEXDhKxsGwsdNFjJySmw8hfFG5G2LQ\",\n \"https://play-lh.googleusercontent.com/mzUyLGruykCiAT6I6juCJdvcdVTmyRb0IZfjkaQaTxsjzC31C4xWowYA8Nb5pzbVhjo\",\n \"https://play-lh.googleusercontent.com/jIU0uKH-ZKj0MVgVE0YmaO3xmgZt4BVaXIh7NQyNKBeF45PApNFyD47hcw9HTqRqMw\",\n \"https://play-lh.googleusercontent.com/Ldf1k6OfsevMFlt4Cb2uepRe1FoS3tx38IJJUjdta1TpLaE2PW5HtS_rLcNmDtjdDlc\",\n \"https://play-lh.googleusercontent.com/GUvIym95AA4Cbx4DqLJOtI5wUMy_aT9xRmWSRscsqPuuOV9XL2Rj-1ROKsq6vLu9TYwf\",\n \"https://play-lh.googleusercontent.com/JbKQRnKeqv8Qe6lCmn8SmGN1gkafidanFzu9ZNwr4CsE5BPBB7imHOjbSkflndLOcw\"\n ],\n \"contentRating\": \"Teen\",\n \"adSupported\": false,\n \"released\": \"Dec 6, 2010\",\n \"updated\": 1661368164000,\n \"version\": \"VARY\",\n \"recentChanges\": \"Arriving in version 2022.7.27
* Navigation improvements to reach series pages

Recently added
* The wishlist tab
* Audiobooks are organized into series
* A notification history page
* Material You themed widget
* Filters on chart and genre pages\",\n \"comments\": [\n \"The highlight feature is needlessly complicated and broken. When you press and hold, it auto selects the single word. You then have to stop pressing and drag the little selector icons over the text you want to highlight. A little cumbersome. Where this becomes a real problem. Is highlighting any text on the bottom of a page. Selecting a single word ALSO gives you a pop up with the definition of that word. A pop-up that covers all of the next you want to highlight. So you're literally unable.\",\n \"Wow, this app is surprisingly bad for something that I'm supposed to use for ebooks that I've paid money for. The extent that you can customize your reading experience is extremely limited. Why is there no option to get rid of your reading \\\"progress\\\" displayed at the bottom of every page? Not everyone always wants to be reminded of that. Also, it went from displaying pages left in each chapter (already annoying), to displaying total pages left in the book, with seemingly no way to change this.\",\n \"Up until a few weeks ago it was working wonderfully. Now it won't download any audiobooks I have even if they were previously downloaded and its really irritating. I've tried freeing up space and everything I could think of but it hasn't worked the same. If I can't listen to my audiobooks I would at least want my money back. UPDATE: Used the troubleshooting methods and it still isnt working. Its really inconvenient to not be able to listen to my audio books when I already paid for them\",\n \"So glad this exists. Can't even remember if I downloaded it or if it came with my new phone. But it allowed me to delete an old player that I kept simply because it was the only that did a very specific thing. This does everything I want it to and it does it well. My only issue is at some point the voice speed changed. Only two settings that affect the speed now, each is either too fast or too slow in my opinion. Add a speak speed setting and it's perfect.\",\n \"This app is useful, but it could easily be a lot better. What I love is that it saves my notes and highlights to Drive and syncs them across devices. Some things I hate about this app: (1) You can't adjust play speed in the app. (2) No pause, play, or skip buttons on the main screen. You have to use the pull-down menu. (3) You can't highlight something that starts and ends on separate pages. You have to make two separate highlights. (4) It won't read PDF books aloud.\"\n ],\n \"appId\": \"com.google.android.apps.books\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.books\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.books&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.books/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.books/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.books/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Earth\",\n \"description\": \"Explore the whole world from above with satellite imagery and 3D terrain of the entire globe and 3D buildings in hundreds of cities around the world. Zoom to your house or anywhere else then dive in for a 360° perspective with Street View. See the world from a new point of view with Voyager, a collection of guided tours from BBC Earth, NASA, National Geographic, and more. And now, visualize the immersive maps and stories you've created with Google Earth on web on your mobile device.\",\n \"descriptionHTML\": \"Explore the whole world from above with satellite imagery and 3D terrain of the entire globe and 3D buildings in hundreds of cities around the world. Zoom to your house or anywhere else then dive in for a 360° perspective with Street View. See the world from a new point of view with Voyager, a collection of guided tours from BBC Earth, NASA, National Geographic, and more. And now, visualize the immersive maps and stories you've created with Google Earth on web on your mobile device.\",\n \"summary\": \"Find satellite images of any location. Discover cities and mountains with tours.\",\n \"installs\": \"100,000,000+\",\n \"minInstalls\": 100000000,\n \"maxInstalls\": 463089328,\n \"score\": 4.2783847,\n \"scoreText\": \"4.3\",\n \"ratings\": 2880477,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.earth/reviews\",\n \"histogram\": {\n \"1\": 283128,\n \"2\": 85348,\n \"3\": 173179,\n \"4\": 343669,\n \"5\": 1995146\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://www.google.com/earth/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Travel & Local\",\n \"genreId\": \"TRAVEL_AND_LOCAL\",\n \"icon\": \"https://play-lh.googleusercontent.com/9ORDOmn8l9dh-j4Sg3_S7CLcy0RRAI_wWt5jZtJOPztwnEkQ4y7mmGgoSYqbFR5jTc3m\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/dLUMQgGnsEBl6TkogTnzJXqJeQOiX8guQQDsZ-VrBpeLtKYkwLnjIxhozoRnkNHF2Q\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/3JpTYvi7VYYwWzAPY0D1jaWoemVOk75MS2myybbFE8VClPGMoL4ovploq7EENRHD8g\",\n \"https://play-lh.googleusercontent.com/hYtqzuNiQDrF5BBeoakLAS19jLXpK-v5-O6DntimUm11-qGKtkLH2Aa63UkbgB2hOOTH\",\n \"https://play-lh.googleusercontent.com/v7MU8W8QjNSin5HbDkmXAF1otf0nzlNDGm8hyKgvQDuFHQtrWiB3FBap7rBirtAjdQ\",\n \"https://play-lh.googleusercontent.com/UmqzySfX0K4cdPdUETuCGuUVwFfnCTOMYi2HoMOUZhRo4s7JdOX6Kg-XINHf3q237Q\",\n \"https://play-lh.googleusercontent.com/wzVS1fDqjPWJRWx3xQQKNToCF-LO9jbAI_bBr1ALNn0mHcdU6N2e8KQq3ccjJNSKWQg\",\n \"https://play-lh.googleusercontent.com/wAoKFOqf4qRsWlojrkn7ocmBdsMAX_E8mNR1BaHE5e0c1dFJEvRdZB0qzDy-T0QuaA\",\n \"https://play-lh.googleusercontent.com/GSlm5t7Fk2HMeBOgbzNp_oWx4ojos8d5UitzQeVnyCfL_E1DpDZ822AQSw8LmnT_RQ\",\n \"https://play-lh.googleusercontent.com/PHgsZPEdB41nvtq8l4lUjnoBEtJ18WRueS7Y2akI5ak-y0kriPULVgAsFYn21byd2a4y\",\n \"https://play-lh.googleusercontent.com/bLvgObyhc3tPwgT5nNEtUNDdE2Md3Edxn1mFLenJerxKEMGonpnfFXDYzffspbcsQOdv\",\n \"https://play-lh.googleusercontent.com/dVQFrUcc6jpW0_7f3Jij1xlgFtVUPSK3ICSVYDS0As_kySYXSlaC5Ua9k3TxLfQ_SnOL\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Feb 22, 2010\",\n \"updated\": 1653321651000,\n \"version\": \"VARY\",\n \"recentChanges\": \"An improved search experience now includes locations, suggested points of interest, data layers, and guided tours in Voyager.\",\n \"comments\": [\n \"Wish it still had the pin drop feature. It's become very hard to find out what you are looking at, unless you want to google coordinates all the time. Though the project feature is nice. Really like the detail that it gives, makes it really easy to orient yourself and figure out how to get to were you are trying to go, especially when maps is not giving the proper directions\",\n \"Google Earth is an amazing app where you can visit places that you might not be able to go to see in person. My brother and I love looking at random places in the world. It is very cool and interesting! Two things though, 1. It can be VERY laggy, so make sure to close all of your tabs. 2. Google Earth says that they update pictures every 3 years. Its been almost 5 years from a picture update. Other than that, it's a great app to have!\",\n \"Google earth is an amazing app. They hold the unique distinction of being an app that really has no viable competition. They are the only company that has been able to do anything like they've done with Earth and have held that title for ages. I love exploring the world, especially 3d cities, and often spend hours at time doing so. Learning about parts of the world I would never otherwise be able to envision so clearly. Probably one of the coolest apps I've ever used!\",\n \"Fun to look. I don't like that the trees and buildings are illustrations but the 3D effect is cool.. Then when I saw the photos in little circles on the map and you could pull them up...well...that's the bomb... so so great. The Singapore buildings with the horizontal strip across the 3 vertical \\\"buildings... with the swimming pools... might be scary to swim in. I sure hope it's not an earthquake region. OMG\",\n \"Seems my device just can not make this app not close! When I'm using app I can use it for about 1 minute then closes itself! Surely it can't be that hard to show a map that isn't live! I could understand if I was looking at an 2022 map that is in real time but seems the only map that shows up for me is from 2017, 5 years old! No wonder the app doesn't work. What a joke! Google has gone downhill really bad, downward spiral!\"\n ],\n \"appId\": \"com.google.earth\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.earth\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.earth&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.earth/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.earth/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.earth/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Meet\",\n \"description\": \"Securely connect, collaborate, and celebrate from anywhere. With Google Meet, everyone can safely create and join high-quality video meetings for groups of up to 250 people.\\n\\n• Meet safely - video meetings are encrypted in transit and our array of safety measures are continuously updated for added protection\\n• Host large meetings - invite up to 250 participants to a meeting, whether they’re in the same team or outside of your organization\\n• Engage in meetings - engage on meetings without interrupting, through Q&A, Polls, and Hand Raise\\n• Easy access on any device - share a link and invite team members to join your conversations with one click from a web browser or the Google Meet mobile app\\n• Share your screen - present documents, slides, and more during your conference call.\\n• Follow along - live, real-time captions powered by Google speech-to-text technology\\n\\n*Tile view for Android tablets coming soon.\\n**Not all features available for non-paying users.\\n\\nAnyone can join a meeting on Meet via an invitation. However, some capabilities are available only to Google Workspace customers.\\n\\nWith Google Workspace , you and your team can:\\n• Enjoy helpful features like live captions, breakout rooms, and noise cancellation* to make meetings more productive.\\n• Attend meetings on the go. Meetings organized by Google Workspace users also create a dial-in phone number for each meeting, so every guest can join – even without wifi or data.\\n• Seamlessly jump into a video call from Chat or take document collaboration to the next level by connecting over video – everything ties together so you can always connect and collaborate in context.\\n\\nLearn more about Google Meet: https://workspace.google.com/products/meet/\\n\\n*Not available in all Workspace plans.\\n\\nFollow us for more:\\nTwitter: https://twitter.com/googleworkspace\\nLinkedin: https://www.linkedin.com/showcase/googleworkspace\\nFacebook: https://www.facebook.com/googleworkspace/\",\n \"descriptionHTML\": \"Securely connect, collaborate, and celebrate from anywhere. With Google Meet, everyone can safely create and join high-quality video meetings for groups of up to 250 people.

• Meet safely - video meetings are encrypted in transit and our array of safety measures are continuously updated for added protection
• Host large meetings - invite up to 250 participants to a meeting, whether they’re in the same team or outside of your organization
• Engage in meetings - engage on meetings without interrupting, through Q&A, Polls, and Hand Raise
• Easy access on any device - share a link and invite team members to join your conversations with one click from a web browser or the Google Meet mobile app
• Share your screen - present documents, slides, and more during your conference call.
• Follow along - live, real-time captions powered by Google speech-to-text technology

*Tile view for Android tablets coming soon.
**Not all features available for non-paying users.

Anyone can join a meeting on Meet via an invitation. However, some capabilities are available only to Google Workspace customers.

With Google Workspace , you and your team can:
• Enjoy helpful features like live captions, breakout rooms, and noise cancellation* to make meetings more productive.
• Attend meetings on the go. Meetings organized by Google Workspace users also create a dial-in phone number for each meeting, so every guest can join – even without wifi or data.
• Seamlessly jump into a video call from Chat or take document collaboration to the next level by connecting over video – everything ties together so you can always connect and collaborate in context.

Learn more about Google Meet: https://workspace.google.com/products/meet/

*Not available in all Workspace plans.

Follow us for more:
Twitter: https://twitter.com/googleworkspace
Linkedin: https://www.linkedin.com/showcase/googleworkspace
Facebook: https://www.facebook.com/googleworkspace/\",\n \"summary\": \"Get your team connected to secure video conferencing with Google Meet.\",\n \"installs\": \"500,000,000+\",\n \"minInstalls\": 500000000,\n \"maxInstalls\": 503301196,\n \"score\": 4.0900245,\n \"scoreText\": \"4.1\",\n \"ratings\": 2195091,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.meetings/reviews\",\n \"histogram\": {\n \"1\": 315685,\n \"2\": 84214,\n \"3\": 129939,\n \"4\": 221922,\n \"5\": 1443210\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://support.google.com/a/answer/7126817\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Business\",\n \"genreId\": \"BUSINESS\",\n \"icon\": \"https://play-lh.googleusercontent.com/GBYSf20osBl2CRHbjGOyaOG5kQ3G4xbRau-dzScU9ozuXQJtnUZPkR3IqEDOo5OiVgU\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/yPqfLCnqviQmqF6kB_HdV7AGc0MEFVTy2R1HPli6tUavQo2_qRLSbM0ilvEbvT-34M0\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/i892zh2y80fdnLly8JxSCrt0HLYK_iQxuPNN7umk1h2dF_CjfRAWFSGdIuwYeAwELRk\",\n \"https://play-lh.googleusercontent.com/gOgWfPjhN05hWYHbjt3IcqELfeCAo56hVNu9X-Vr3R6Wgif7oOFaD1_18Ja4HnuGtw\",\n \"https://play-lh.googleusercontent.com/iAU_FCBUyAZ_xWcZ4WftJWtu_gwf0k4AsA2Ha3GpfWWiE_xCvM9J5KcRmZvX65ezww\",\n \"https://play-lh.googleusercontent.com/lp3QTp5s5hCl5V6vT1efrC_f_W_bjtIGm07u169rTnhJ2amha0Wlr4r14-VQY-tAsA\",\n \"https://play-lh.googleusercontent.com/NB2jC6GXtdHWxMH167B-6eBrA4H_B7LzrYIFrM13r0kscAJ3F5y4g_SCXxfIpI173w\",\n \"https://play-lh.googleusercontent.com/5lA2V9Yw-gYu27_kjcIyl0Ati_hYgM5NwK3HgwgikKOqDXH18zqsnh-gGEiZMgWOhI1R\",\n \"https://play-lh.googleusercontent.com/HsBD4AgzuHMESsxrE7fa2dfqI1jesJjEU2Vc3X28nN9xhK-lDWsVYCM54LKP4WgIQg\",\n \"https://play-lh.googleusercontent.com/3rJz7K_NbMEvAzVuGXLOOZF_oXeo_m7aR255pyQIq6Eh-megCLUKzj8hW_etvjEH3j4\",\n \"https://play-lh.googleusercontent.com/W7U4q6inMDBE-OUSw1WnajcqslWGh1_ZlKFTWxTLKXVYgLxPp8hFTwcpq-WSdlP4gmU\",\n \"https://play-lh.googleusercontent.com/PUPZSV6ZrDP68fpZ0RfFLsYuoDT7dVEiSxCXXGU44aHgaLMuBsX664xRfY_eMBn50g\",\n \"https://play-lh.googleusercontent.com/UNb9410e9wlAFQEJpbbepW-b6bJt1fzu8FIfKBr6SvGAVhdCNoOGdxxKRyP51-DoaRE\",\n \"https://play-lh.googleusercontent.com/iCUwmoybZT_bL5-o8mpKQWCmBkdnm5FwtziKOB7gKXRN52asIpEtH-YT0_EueWkeLC8\",\n \"https://play-lh.googleusercontent.com/npDwGePPT5J_PzIplMMoz38pp6SeCpUKd6B4msPQFZ87x46Yrpll3QF4MVlLsB9WNiw\",\n \"https://play-lh.googleusercontent.com/ocjd8JqEpMxCfqDt7bEBn4yAcD8FV_yQjmxv5ykemTWI7VpF-BICpqkfEvXkIcs2U4I\",\n \"https://play-lh.googleusercontent.com/WI8CqTv08AgH7sXtFLG351hU3oQARXUyjRZ_qAKkbz4pt2UdF_S6pvwUoYjix3GDcNQ\",\n \"https://play-lh.googleusercontent.com/dUftiG_OxYcYcDGw3xO1ipIdvkyukttS1jSN56Z-jFaADgOe6AfwNyTPorXedJ5wP1o\",\n \"https://play-lh.googleusercontent.com/toTGWCxXltdbnrq4RAcWHdTFvellwpvRsFH-A-djUCASFR3yFAsiJXjLfzQPdVecyR4\",\n \"https://play-lh.googleusercontent.com/lCndlZQZkXadYQiISDcyryZ3xqz5F5cJ8O09rSySLGeKv7lR4ezwpue1R0yCnCPRnA\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Mar 9, 2017\",\n \"updated\": 1661378469000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• Improved support for 250 person meetings
• Real-time captions
• International dial-in numbers for any meeting
• Bug fixes and performance improvements\",\n \"comments\": [\n \"Duo was better!! You could set up a call much easier! This is very clunky with too many steps. I make the \\\"call\\\", I have to then send an invite which sends a link to Duo!!! The other pary clicks the link, then has to click on \\\"call\\\" to \\\"call me back\\\". Duo was so much easier, especially when you have to work with someone who is not tech savvy. If you are trying to compete with IOS, you got a way to go.\",\n \"Not sure what's going on with this one, because it's not showing links to scheduled meetings (meeting links are on Google calander and in gmail), it's calling itself \\\"Google Meet (Original) with a slightly different icon on my device), which is very confusing. Video and audio quality has been poor the last few times I've used it (no network or device changes to cause it) as well.\",\n \"Absolutely terrible. There is no Godly way on this green Earth to share both video and audio at the same time. You can share a video without sound, and you can share audio without a video, but heaven forbid you share both! I have tried their tab feature on my desktop, and I have tried sharing my phone's screen (which literally shares a black screen with no sound and force drops you out of the call whenever you try to open anything (like a Chrome tab or YouTube to play a video). Utter. Garbage.\",\n \"Before one app, called hangout, could do it all: text, images, audio and video. Moreover, you could call and be called. Now, three steps backwards: separate apps to install and manage, you have to plan in advance rather than call and be called when needed and you need a separate channel to share the meeting code, the worst invention of those stupid people at Zoom. Since Google is out of ideas, now we got that antifeature here too.\",\n \"I love the realtime captioning feature in Google Meet! It's very fast and it *doesn't* typically cover up the mouth of the person who is speaking. I wish the process of starting a meeting with someone was much, much easier. Also wish that the notification for when a person is trying to join a Meet was much louder and provided better visual notification. There can be frequent problems with the video stopping. I wish we could get some feedback about *why* this is happening.\"\n ],\n \"appId\": \"com.google.android.apps.meetings\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.meetings\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.meetings&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.meetings/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.meetings/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.meetings/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Assistant\",\n \"description\": \"Google Assistant is an easy way to use your phone and apps, hands-free\\nGet Google Assistant for hands-free help. It can help you set reminders and alarms, manage your schedule, look up answers, navigate and control smart home devices while away from home*, and much more.\\n\\n*Compatible devices required\\n\\nAn easy way to use your phone and apps\\nQuickly open your favorite app, navigate your phone and manage your phone settings easily - turn on Do not Disturb, adjust your bluetooth and airplane mode settings and turn the flashlight on, all using just your voice. \\n\\n\\\"Open YouTube\\\"\\n\\\"Show me my photos from Hawaii\\\"\\n\\\"Turn on flashlight\\\"\\n\\nStay in touch with hands-free calls, texts, and emails\\nStay connected to those who matter most. Make calls, send text messages, and look up emails to your contacts.\\n\\n\\\"Read my unread texts\\\"\\n\\\"Call Carly\\\"\\n\\\"Text Sam 'On my way'\\\"\\n\\\"Show me my emails from Michelle\\\"\\n\\nStay productive while on the go\\nGet things done using just your voice while on the go - set reminders and alarms, manage your schedule and tasks. Look up answers and get help with directions and local information. Try saying:\\n\\n\\\"Remind me to buy milk at 7pm\\\"\\n\\\"Set an alarm for 7am\\\"\\n\\\"Set a timer for 5 minutes\\\"\\n\\\"Add eggs to my shopping list\\\"\\n\\\"What’s my first meeting tomorrow?\\\"\\n\\\"Gas stations near me\\\"\\n\\\"Navigate home\\\"\\n\\nHelps you stay one step ahead\\nGet proactive information and contextual reminders to help with just what you need, right at the moment you need it. And for the things you do regularly, you can create automatic routines to streamline your day even more. \\n\\n\\\"Good morning\\\"\\n\\\"Good night\\\"\\n\\\"Let’s go home\\\"\\n\\nControl your smart home even when away from home\\nYour phone is the remote control to your smart home. Adjust the temperature, lighting, and control your smart appliances, even when you’re not at home.* Try saying:\\n\\n\\\"Turn the lights off\\\"\\n\\\"Broadcast \\\"I’m on my way\\\" to the bedroom speakers\\\"\\n\\n*Compatible devices required\",\n \"descriptionHTML\": \"Google Assistant is an easy way to use your phone and apps, hands-free
Get Google Assistant for hands-free help. It can help you set reminders and alarms, manage your schedule, look up answers, navigate and control smart home devices while away from home*, and much more.

*Compatible devices required

An easy way to use your phone and apps
Quickly open your favorite app, navigate your phone and manage your phone settings easily - turn on Do not Disturb, adjust your bluetooth and airplane mode settings and turn the flashlight on, all using just your voice.

"Open YouTube"
"Show me my photos from Hawaii"
"Turn on flashlight"

Stay in touch with hands-free calls, texts, and emails
Stay connected to those who matter most. Make calls, send text messages, and look up emails to your contacts.

"Read my unread texts"
"Call Carly"
"Text Sam 'On my way'"
"Show me my emails from Michelle"

Stay productive while on the go
Get things done using just your voice while on the go - set reminders and alarms, manage your schedule and tasks. Look up answers and get help with directions and local information. Try saying:

"Remind me to buy milk at 7pm"
"Set an alarm for 7am"
"Set a timer for 5 minutes"
"Add eggs to my shopping list"
"What’s my first meeting tomorrow?"
"Gas stations near me"
"Navigate home"

Helps you stay one step ahead
Get proactive information and contextual reminders to help with just what you need, right at the moment you need it. And for the things you do regularly, you can create automatic routines to streamline your day even more.

"Good morning"
"Good night"
"Let’s go home"

Control your smart home even when away from home
Your phone is the remote control to your smart home. Adjust the temperature, lighting, and control your smart appliances, even when you’re not at home.* Try saying:

"Turn the lights off"
"Broadcast "I’m on my way" to the bedroom speakers"

*Compatible devices required\",\n \"summary\": \"Call, search, navigate, and more—all with your Google Assistant.\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 1503581334,\n \"score\": 3.8794353,\n \"scoreText\": \"3.9\",\n \"ratings\": 673964,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googleassistant/reviews\",\n \"histogram\": {\n \"1\": 129655,\n \"2\": 27055,\n \"3\": 44427,\n \"4\": 66519,\n \"5\": 406279\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"5.0\",\n \"androidVersionText\": \"5.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://assistant.google.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Productivity\",\n \"genreId\": \"PRODUCTIVITY\",\n \"icon\": \"https://play-lh.googleusercontent.com/ORzWxi-sIo_hCgSa6uzVvBUE4osKUqRVzHnniUUxA2WXD7BnZ95BNVpWFLUTKRyJRdU\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/7bRntzhZEPJW6yZwDg8-cEU8_09o6avDyBWqA81cr84qJqSrU4fiO82t__PccV3NDjU\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/8pTJB_pDn8utHuwTe6dAIzY6yJeEH-bgcg_wJqlwo2n7hkrAFVfx9zvIBR3sC03HSR2n\",\n \"https://play-lh.googleusercontent.com/g5mcDYsLo-Ajm-xzBSWR7998a7Uov8tJleWgxu17P9MGvmkMDKxld6w3TOCqRE2GO-I\",\n \"https://play-lh.googleusercontent.com/b4MiRuGtxpavlflCmhjcRudWOy4CkZXblzXYBXnEwVSEojN2eoZdqE2M8Ldgv1ZfmRc\",\n \"https://play-lh.googleusercontent.com/aMaaoZCrAo-rdSRqmncfyNaYeXpeiaxqWpaMrbNXfbAtHNeTFSVymqTlEWbXvyk2c-E\",\n \"https://play-lh.googleusercontent.com/D7U5VHZgH5d--AS6UrRTS56naVzBkqKOnVHqKRIYF5TPT-zjdUpDjDc7xbrHq_8WtLcB\",\n \"https://play-lh.googleusercontent.com/-zpxgzJAZeluoCK7L43SgtMAyVD6AsLIaYmIR6FXT_lCIWv91wmHc2ny2t3DNe29t-BB\",\n \"https://play-lh.googleusercontent.com/72UkBY_VtK3DA1DeaKEQK_-h8ZXtiG7oqVu086pT-SkECD_6yJtwPKiA2ZAavq7bBcCq\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Oct 4, 2017\",\n \"updated\": 1654049829000,\n \"version\": \"0.1.452181178\",\n \"recentChanges\": \"We've added shortcuts to make it easy to launch Assistant actions. Long press on the Assistant launcher icon to try them out.

• Expanded support to Android L and Android tablets
• Bug fixes and improvements\",\n \"comments\": [\n \"Absolutely worthless... voice match works fine but instead of bringing up the microphone to give a command, it brings up the keyboard. You then have to tap on the mic to bring up the voice option. Which defeats the whole \\\"hands free\\\" benefit. Update 8.29.22:. I anticipated getting it the fixed response, same as everyone else. I have already \\\"re-trained\\\" the voice match several times. It's not a problem bringing up the Assistant. The problem is the \\\"hands free\\\" option isn't coming up first.\",\n \"I don't know what update went through, but now Google Assistant says it's doing whatever you ask it to do, but the new automatic text entry box stays up on the screen and prevents anything else from coming up. (Yes, it still recognizes my voice. That's not the problem.) This is incredibly frustrating. The internet search results are also not nearly as accurate as they used to be. I've tested this several times. Why did you fix something that wasn't broken? Samsung Galaxy S20+, Android Version 12\",\n \"I'm having the same problem with Assistant as others. I *think* what happened was that it worked at first on my new tablet without any intentional activation on my part. And then I received an unsolicited request to match Assistant to my voice, which at that moment I declined, and as a result the voice activation ceased to function. I've tried two ways to rectify (now held Assistant icon for Settings and followed steps) to no avail. \\\"Hey, Google, can you come back?!\\\"\",\n \"First, anyone saying it's not hands free needs to set up \\\"Hey Google and voice match\\\" in settings. Once you do that. You can say \\\"Hey Google\\\" and it opens, even on lock screen if you want. Personally. I like the app. I was able to ask multiple question and have it read the information to me. Which was very helpful while driving. I didn't have to look at my phone or touch anything to get what I needed. It's not perfect, but it does a lot and is helpful once you set up the right access.\",\n \"If I could give it a zero I would. This just does not work. IT IS SO FRUSTRATING!!!!! You have to touch the darn search feature to even use it. Totally defeats the purpose. You have to keep turning it on and then it immediately turns itself off when you leave the settings. I have retrained the voice so many times that it boggles the mind. Still does not work. I have uninstalled and reinstalled to no avail This is TRASH!\"\n ],\n \"appId\": \"com.google.android.apps.googleassistant\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googleassistant\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.googleassistant&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googleassistant/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googleassistant/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.googleassistant/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Family Link\",\n \"description\": \"Try the Family Link parental controls app from Google. Whether your children are younger or in their teens, the Family Link app lets you set digital ground rules remotely from your own device to help guide them as they learn, play, and explore online. For children under 13 (or the applicable age of consent in your country), Family Link also lets you create a Google Account for your child that's like your account, with access to most Google services.\\n\\n\\n With Family Link parental controls, you can:\\n\\n Guide them to good content\\n\\n • View their app activity - Not all screen time is the same. Help your child make healthy decisions about what they do on their Android device, with activity reports showing how much time they’re spending on their favorite apps. You can see daily, weekly, or monthly reports.\\n • Manage their apps - Handy notifications let you approve or block apps your child wants to download from the Google Play Store. You can also manage in-app purchases, and hide specific apps on their device, all remotely from your own device.\\n • Feed their curiosity - It can be hard to figure out what apps are right for your child, so Family Link shows you teacher-recommended apps on Android that you can add directly to their device.\\n\\n\\n Keep an eye on screen time\\n\\n • Set limits - It’s up to you to decide the right amount of screen time for your child. Family Link lets you set time limits and a bedtime for their supervised devices, so you can help them find a good balance.\\n • Lock their device - Whether it’s time to go play outside, have dinner, or just spend time together, you can remotely lock a supervised device whenever it’s time to take a break.\\n\\n\\n See where they are\\n\\n • It’s helpful to be able to find your child when they’re on the go. You can use Family Link to help locate them as long as they’re carrying their Android device.\\n\\n\\n Important Information\\n\\n • Family Link’s tools vary depending on your child’s device. See a list of compatible devices at families.google.com/familylink/setup\\n • While Family Link helps you manage your child's purchases and downloads from Google Play, they will not need approval to install app updates (including updates that expand permissions), apps you have previously approved, or apps that have been shared in Family Library. Parents should regularly review their child’s installed apps and app permissions in Family Link.\\n • You should carefully review the apps on your child’s supervised device and disable those you don’t want them to use. Note that you may not be able to disable some pre-installed apps.\\n • To see the location of your child or teen’s device, it must be powered on, recently active, and connected to the internet.\\n • Teacher-recommended apps are only available on Android devices in the US to parents of children of certain ages.\\n • While Family Link provides tools to manage your child’s online experience, it does not make the internet safe. Rather, it is intended to give parents choices about how their kids use the internet, and encourage conversations about internet use.\",\n \"descriptionHTML\": \"Try the Family Link parental controls app from Google. Whether your children are younger or in their teens, the Family Link app lets you set digital ground rules remotely from your own device to help guide them as they learn, play, and explore online. For children under 13 (or the applicable age of consent in your country), Family Link also lets you create a Google Account for your child that's like your account, with access to most Google services.


With Family Link parental controls, you can:

Guide them to good content

• View their app activity - Not all screen time is the same. Help your child make healthy decisions about what they do on their Android device, with activity reports showing how much time they’re spending on their favorite apps. You can see daily, weekly, or monthly reports.
• Manage their apps - Handy notifications let you approve or block apps your child wants to download from the Google Play Store. You can also manage in-app purchases, and hide specific apps on their device, all remotely from your own device.
• Feed their curiosity - It can be hard to figure out what apps are right for your child, so Family Link shows you teacher-recommended apps on Android that you can add directly to their device.


Keep an eye on screen time

• Set limits - It’s up to you to decide the right amount of screen time for your child. Family Link lets you set time limits and a bedtime for their supervised devices, so you can help them find a good balance.
• Lock their device - Whether it’s time to go play outside, have dinner, or just spend time together, you can remotely lock a supervised device whenever it’s time to take a break.


See where they are

• It’s helpful to be able to find your child when they’re on the go. You can use Family Link to help locate them as long as they’re carrying their Android device.


Important Information

• Family Link’s tools vary depending on your child’s device. See a list of compatible devices at families.google.com/familylink/setup
• While Family Link helps you manage your child's purchases and downloads from Google Play, they will not need approval to install app updates (including updates that expand permissions), apps you have previously approved, or apps that have been shared in Family Library. Parents should regularly review their child’s installed apps and app permissions in Family Link.
• You should carefully review the apps on your child’s supervised device and disable those you don’t want them to use. Note that you may not be able to disable some pre-installed apps.
• To see the location of your child or teen’s device, it must be powered on, recently active, and connected to the internet.
• Teacher-recommended apps are only available on Android devices in the US to parents of children of certain ages.
• While Family Link provides tools to manage your child’s online experience, it does not make the internet safe. Rather, it is intended to give parents choices about how their kids use the internet, and encourage conversations about internet use.\",\n \"summary\": \"Set screen time limits, manage apps, and view app activity for your kids device.\",\n \"installs\": \"50,000,000+\",\n \"minInstalls\": 50000000,\n \"maxInstalls\": 88129961,\n \"score\": 4.3266277,\n \"scoreText\": \"4.3\",\n \"ratings\": 1499206,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.kids.familylink/reviews\",\n \"histogram\": {\n \"1\": 146109,\n \"2\": 31711,\n \"3\": 57322,\n \"4\": 215255,\n \"5\": 1048780\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"familylink-support@google.com\",\n \"developerWebsite\": \"https://families.google.com/familylink\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"https://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/rFAHXzQjUQwLH6vffa9rD_1gjH7dZykH7h6RjthsnoHTKGrJSNqTUw0D_TIQSC3ekg\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/n7_pSwDQW8Qd51O2zrTyn0VJ8DNXNwG3grITTzgcp7SrwL46EUQLz3RNO6QYvsJ1hbk\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/6ZaOAJFqmz3AzsOEyWTa_ul0bXrf-DgnehC6YQOpDmeneIXMjXUhONqI-074n1Z3NQ\",\n \"https://play-lh.googleusercontent.com/3aAU7bOII9KE9leNiIJYnsAzqi9crtt59xMM3oRZhLF435rg22iWv7HnTi7Erx_Nk8kb\",\n \"https://play-lh.googleusercontent.com/rSL-5Zq6xSjpWDnKHgSFE81Y2YGVkXG91Ph-DZNnOncDXHuyf7J1HK_ZCxIZd4osUDtJ\",\n \"https://play-lh.googleusercontent.com/7ELCx9B5418iOjH4qtHFqAyfeq0w-De_4BtuZmX3eYdnsq1RWp-YTPXrDrW0NCQZ8Q\",\n \"https://play-lh.googleusercontent.com/h09C-oRaO1OZpIOphxIb1fpLG0wLp275oWjYOjjxvExAcI29mXKf-E3er37-VtLHhzvo\",\n \"https://play-lh.googleusercontent.com/n41vvMifwXtt3sKfv08YubaDO554a3QZzhz2R0DyqZ3NqL2QLNLMGqo1nhBYNq89_OM\",\n \"https://play-lh.googleusercontent.com/rSV-ymzrhI2eY-R3ewLAyufoSno9cH5K9n6fXwjYvIpBSzYK38hXt-fpHD7C1amVtg\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Mar 15, 2017\",\n \"updated\": 1661273587000,\n \"version\": \"1.97.0.Z.464839002\",\n \"recentChanges\": \"Several stability improvements and bug fixes.\",\n \"comments\": [\n \"Good app and very useful. A few things though... If an app is \\\"allowed\\\" and blocked, to me it should stay on my child's phone (icon) and when they click it ask me for permission. Currently when blocked is selected it automatically turns off \\\"allowed\\\" and the entire icon disappears off my child's phone. Secondly, tracking is not real time, and there needs to be tracking history. Big miss!\",\n \"Like the app would like to see a few changes though. Like the ability to choose what to leave open when you lock the phone. Like messages for instance. If there was ever a time my kids phone is locked and they're not able to call they could at least send a text message or take a photo. I usually lock the phone because its easier to close down all the games than go one by one and block them during school or other times they don't need to be playing them.\",\n \"Good for it's price but could be better. As others have posted, control of the downloads and time on apps works well. The difference between \\\"lock\\\" and \\\"bedtime\\\" is frustrating though. My child uses an app for music while they sleep, but \\\"bedtime\\\" locks out all apps, including the ones marked \\\"always allow\\\". As a workaround I have been locking the phone at bedtime, but that comes with drawbacks of it's own, such as unlocking at the default 6:00 instead of the time programed.\",\n \"Good but can be improved. The controls over what gets downloaded work flawlessly, as do the daily timers. The real-time map isn't as accurate as it should be. I've noticed it can change direction in the span of a few seconds, when I know my child is going in just one. One feature I would REALLY appreciate is the ability to block phone calls and texts from unwanted individuals.\",\n \"When it works, it's great. When it doesn't, it's a nightmare. Been literally dealing with support for months because my daughter cannot log into her account. I've worked with at least 8 different reps. They always punt, send me to someone else, and require me to do the EXACT SAME troubleshooting and send videos of me doing it. I've wasted far too much time with this but have no feasible options. EDIT: it's working now so I'll upgrade the review.\"\n ],\n \"appId\": \"com.google.android.apps.kids.familylink\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.kids.familylink\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.kids.familylink&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.kids.familylink/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.kids.familylink/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.kids.familylink/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouTube TV: Live TV & more\",\n \"description\": \"• Cable-free live TV. No cable box required.\\n• Watch major broadcast and cable networks, including ABC, CBS, FOX, NBC, NFL Network, ESPN, AMC, Univision, HGTV, TNT and more, including your local news and sports channels.\\n• Watch on your smartphone, tablet, computer, smart TV, or game console, and on your big screen via Google Chromecast, Roku player & TV, and Apple TV.\\n• Cloud DVR without DVR storage space limits. Each recording will be stored for 9 months.\\n• 6 YouTube TV accounts per household. Everyone gets their own login, recommendations and DVR.\\n• No commitment, no contracts; cancel anytime.\\n• Start your free-trial today.\\n\\nOver eighty-five networks are available in YouTube TV:\\n\\nBROADCAST\\nABC, CBS, FOX, NFL Network, NBC, PBS, and more\\n\\nSPORTS\\nCBS Sports Network, NBC Sports RSN (regional), ESPN, ESPN2, ESPNews, ESPNU, Galavisión, Golf Channel, MLB Game of the Week Live on YouTube, MLB Network, NBA TV, NFL Network, Olympic Channel, SEC Network, Univision, UniMás and more\\n\\nENTERTAINMENT & LIFESTYLE\\nAMC, Animal Planet, BBC America, BET, Bravo, CMT, Comedy Central, Comet, Cozi TV, Decades, Discovery, E!, Food Network, Freeform, FX, FXM, FXX, Galavisión, IFC, Investigation Discovery, HGTV, MotorTrend, MTV, Nat Geo, Nat Geo Wild, Oxygen, Paramount Network, Pop, Smithsonian Channel, SundanceTV, SyFy, TBS, TCM, TLC, TNT, Travel Channel, TruTV, TV Land, Univision, UniMás, USA, VH1, WE tv, YouTube Originals, and more\\n\\nNEWS\\nBBC World News, Cheddar, CNBC, CNN, Galavisión, HLN, MSNBC, NBCLX, Univision, UniMás, and more\\n\\nKIDS\\nCartoon Network, Disney Channel, Disney Junior, Disney XD, Nickelodeon, PBS Kids, Universal Kids\\n\\nSPANISH LANGUAGE\\nGalavisión, Telemundo, Universo, Univision, UniMás and more\\n\\nSports and premium networks like our Sports Plus add-on now with 15+ channels included, HBO Max, SHOWTIME, STARZ, and more are also available for an additional monthly charge.\\n\\nAvailability:\\nYouTube TV is available nationwide in the United States.\\n\\nFor more information, please visit our Help Center.\\n\\nTerms of service: tv.youtube.com/tv/terms\\nPaid terms of service: tv.youtube.com/tv/paidterms\\nPrivacy policy: tv.youtube.com/tv/privacy\\n\\nEnjoy cable-free live tv now!\",\n \"descriptionHTML\": \"• Cable-free live TV. No cable box required.
• Watch major broadcast and cable networks, including ABC, CBS, FOX, NBC, NFL Network, ESPN, AMC, Univision, HGTV, TNT and more, including your local news and sports channels.
• Watch on your smartphone, tablet, computer, smart TV, or game console, and on your big screen via Google Chromecast, Roku player & TV, and Apple TV.
• Cloud DVR without DVR storage space limits. Each recording will be stored for 9 months.
• 6 YouTube TV accounts per household. Everyone gets their own login, recommendations and DVR.
• No commitment, no contracts; cancel anytime.
• Start your free-trial today.

Over eighty-five networks are available in YouTube TV:

BROADCAST
ABC, CBS, FOX, NFL Network, NBC, PBS, and more

SPORTS
CBS Sports Network, NBC Sports RSN (regional), ESPN, ESPN2, ESPNews, ESPNU, Galavisión, Golf Channel, MLB Game of the Week Live on YouTube, MLB Network, NBA TV, NFL Network, Olympic Channel, SEC Network, Univision, UniMás and more

ENTERTAINMENT & LIFESTYLE
AMC, Animal Planet, BBC America, BET, Bravo, CMT, Comedy Central, Comet, Cozi TV, Decades, Discovery, E!, Food Network, Freeform, FX, FXM, FXX, Galavisión, IFC, Investigation Discovery, HGTV, MotorTrend, MTV, Nat Geo, Nat Geo Wild, Oxygen, Paramount Network, Pop, Smithsonian Channel, SundanceTV, SyFy, TBS, TCM, TLC, TNT, Travel Channel, TruTV, TV Land, Univision, UniMás, USA, VH1, WE tv, YouTube Originals, and more

NEWS
BBC World News, Cheddar, CNBC, CNN, Galavisión, HLN, MSNBC, NBCLX, Univision, UniMás, and more

KIDS
Cartoon Network, Disney Channel, Disney Junior, Disney XD, Nickelodeon, PBS Kids, Universal Kids

SPANISH LANGUAGE
Galavisión, Telemundo, Universo, Univision, UniMás and more

Sports and premium networks like our Sports Plus add-on now with 15+ channels included, HBO Max, SHOWTIME, STARZ, and more are also available for an additional monthly charge.

Availability:
YouTube TV is available nationwide in the United States.

For more information, please visit our Help Center.

Terms of service: tv.youtube.com/tv/terms
Paid terms of service: tv.youtube.com/tv/paidterms
Privacy policy: tv.youtube.com/tv/privacy

Enjoy cable-free live tv now!\",\n \"summary\": \"Try it FREE! Watch and DVR live TV from 85+ channels, including sports networks.\",\n \"installs\": \"10,000,000+\",\n \"minInstalls\": 10000000,\n \"maxInstalls\": 14209224,\n \"score\": 4.166336,\n \"scoreText\": \"4.2\",\n \"ratings\": 111779,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.unplugged/reviews\",\n \"histogram\": {\n \"1\": 14128,\n \"2\": 4252,\n \"3\": 6540,\n \"4\": 10833,\n \"5\": 76023\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"5.0\",\n \"androidVersionText\": \"5.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"youtube-support@google.com\",\n \"developerWebsite\": \"http://tv.youtube.com\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Entertainment\",\n \"genreId\": \"ENTERTAINMENT\",\n \"icon\": \"https://play-lh.googleusercontent.com/gk-WYYED1OJNr0G28ucBPUTPric5QCLwW2q_rNcYg-XTQCbPkhcp3CqVJ-1dHiBql10\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/dNm02r02by_-SGkdZ2lpF0h1UKjF0DGJ9Lh2xVR0UujFULYZdGE9ls9nGA9zFIy0fz8\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/P-0BzvPbLYzXoPS5AnObWyrePFABTNpAqpBnC87cGPncCY_ImcPChV73Jokj8MlZ3g\",\n \"https://play-lh.googleusercontent.com/vcWbsStnrJ2BwPkDXp1rG3EoRHY4JyhpK6aDfe51l6Mi8fZ71pCH-E5s5zSYQQjaBrVS\",\n \"https://play-lh.googleusercontent.com/mYQC7OJMeauinMM_XushQO1ZT9Xxavwo21Qzoh6McfPlOgfyEy7LXsnGkq5s7vN1AC92\",\n \"https://play-lh.googleusercontent.com/en4KPXU_y6o1WssrhiZOyU_JWUwyUA_MrAsALW3-e5eH08T_Bd7pNK4gadPvE0e1GJma\",\n \"https://play-lh.googleusercontent.com/dqPVjZDCjCtXRn6UczyVjPND0Mt0wtCr5sBwBWSty5WIdHFh-5vpwAaLGEf9NEpsmPgK\",\n \"https://play-lh.googleusercontent.com/i572tOUOBn-Ub_zz_Xgb7e5X8T_cVc068j6pFzhGAvarcfKnXhRfb3N0yEvOu1HUa24\",\n \"https://play-lh.googleusercontent.com/Nvr7TSijJLDUM8QJtE9sjsymtZzq_3aQmZ0sHFCeMGtwYbcbC319CxTXKpDpbxfBDA\",\n \"https://play-lh.googleusercontent.com/VLU-5gNS7G5P0RzMnXuV_cwbsEfiAIO8KV4VRz_8hCF8l8yZsC3V_XKzDKEm2HK5Xao\",\n \"https://play-lh.googleusercontent.com/m3j5rgmlwl_i7OigGYPl3CCzWf-xcRr_4Nsk4xE4x8mkSF1Xa7iDBmswCxZtywP5jSY\",\n \"https://play-lh.googleusercontent.com/rkCVkBaP65cbLQoPrPxlYFiX40O1bfWJ1qrurVCWPo67L_pYK-WAbcEhs15GAOzG65w\",\n \"https://play-lh.googleusercontent.com/R4f6rgW4jnYMpNyxBdy9hvH_cdbL0586v8D2ws7bZ5vpqReVsL31l87dMVln21tNIsJ8\",\n \"https://play-lh.googleusercontent.com/KKk_bOEn-_TvStUu_PTdS2Jdmj3QzJWd01qI3CyCc0a8-X_4eZI9Ci0VrgaDRplBtHw\",\n \"https://play-lh.googleusercontent.com/F-omi1GUUIBq_zHDb5DGlHmA4X4j8jpfpIH56aMs7mB3XM3XhrEiYq1tNbXuHbAn9A\",\n \"https://play-lh.googleusercontent.com/jM-cdrfLTG-xNfoCUEYsCEZzkaonzWjAjbVOrPUx34urJJ6OKXpbg_fhGpSuOwrcVQQ\",\n \"https://play-lh.googleusercontent.com/utk0IUtTxvtm_RfzuFnWEE1oxIj8976YwFOdAYbn0biSRqoKE2kntc97U-sjczXzIg\"\n ],\n \"contentRating\": \"Teen\",\n \"adSupported\": false,\n \"released\": \"Apr 5, 2017\",\n \"updated\": 1661796020000,\n \"version\": \"6.33.2\",\n \"recentChanges\": \"Univision, Unimas and Galavision are now included in your base subscription, and our Sports Plus add-on line up has 7 new channels! Add Sports Plus, and you’ll get 20+ networks including NFL RedZone from NFL Network, beIN Sports, GolTV, Stadium, FOX Soccer Plus, PlayersTV+, MAVTV and more.

4K Plus is our new features add-on. With 4K Plus, get better video quality on available content, watch recordings offline, and use unlimited streams at home.

Plus, regular bug fixes and all that other stuff.\",\n \"comments\": [\n \"Very buggy. Sometimes you'll select a show and it will just show something else - have to restart everything (app and TV to resolve). Occasionally, resuming a show will cause it to go to the beginning of the show, not where you left off. Recently, it will just cutoff on Chromecast and go to the screensaver every 10-15 minutes. It's only this app that does that, and it's happened on multiple Chromecast devices.\",\n \"Just as I expected, what started as an affordable alternative to cable has turned into a glitchy, price-gouging mess. It's the only app that's consistently freezing and closing on ALL my devices. I've been waiting months for a fix to the latest bug, and instead the app seems to have gotten WORSE. I was so excited about YTTV when I first got it, but now it's so unusable that idk what I'm even paying for anymore; they're just taking my money at this point. This will be my final month of service.\",\n \"I honestly do not understand what the issue is with this app. 2-3 times a day I have to uninstall and reinstall on mobile. Technology has come a long way and YouTube Tv needs to get its act together. I only choose \\\" know my location when I'm watching/ listening to the mobile app\\\" and I suspect that's why it constantly will just hang when I go back after pausing for long periods of time. If you are that concerned that someone is stealing the use of the app, put in more security.\",\n \"Very very buggy. If you pause for more than five minutes it starts the whole video from the beginning. Some shows you have to watch 10 times or more before they are marked watched. Some shows get to the end and start all over so they are never marked a watched. Pop up option to watch or browse cannot be trusted. Always have to choose browse so you watch the correct show in the correct order\",\n \"Buggy app. Hangs while trying to play. Buttons sometimes do not do anything. Also, YTTV features are sub-par compared to others (for example, there is no way to disable autoplay of recorded episodes, does not remember/display which episodes you have already played, does not remember place in partially played episodes, etc. etc.). Channel browser is a messy non-intuitive disaster.\"\n ],\n \"appId\": \"com.google.android.apps.youtube.unplugged\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.unplugged\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.youtube.unplugged&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.unplugged/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.unplugged/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.unplugged/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Podcasts\",\n \"description\": \"With Google Podcasts, you can play the latest episodes from your favorite shows, explore podcast recommendations just for you, and manage your listening activity.\\n\\nDiscover podcasts that you'll love \\n• Subscribe and listen to all your favorite podcasts. \\n• Explore show and episode recommendations just for you. \\n• Browse popular and trending shows in comedy, news, history, music, business, TV & film, education, health & fitness, technology, arts, science, sports and more. \\n\\nCustomize your listening experience\\n• Listen at faster playback speeds or skip over silences. \\n• Queue up episodes for a seamless listening experience. \\n• Easily keep track of your listening history, downloads and subscriptions.\\n\\nListen wherever you are \\n• Listen on multiple devices – phone, laptop, smart speaker – without losing your place. \\n• Stream episodes for instant playback or auto-download episodes to listen offline and on the go. \\n• Discover podcasts using Google Search and Google Assistant. \\n\\nTo find out more, visit our Help Centre: https://support.google.com/websearch/topic/9739148?hl=en-GB&ref_topic=3036132&p=podcasts&visit_id=637190448011338458-2709322194&rd=1\",\n \"descriptionHTML\": \"With Google Podcasts, you can play the latest episodes from your favorite shows, explore podcast recommendations just for you, and manage your listening activity.

Discover podcasts that you'll love
• Subscribe and listen to all your favorite podcasts.
• Explore show and episode recommendations just for you.
• Browse popular and trending shows in comedy, news, history, music, business, TV & film, education, health & fitness, technology, arts, science, sports and more.

Customize your listening experience
• Listen at faster playback speeds or skip over silences.
• Queue up episodes for a seamless listening experience.
• Easily keep track of your listening history, downloads and subscriptions.

Listen wherever you are
• Listen on multiple devices – phone, laptop, smart speaker – without losing your place.
• Stream episodes for instant playback or auto-download episodes to listen offline and on the go.
• Discover podcasts using Google Search and Google Assistant.

To find out more, visit our Help Centre: https://support.google.com/websearch/topic/9739148?hl=en-GB&ref_topic=3036132&p=podcasts&visit_id=637190448011338458-2709322194&rd=1\",\n \"summary\": \"A podcast player, from Google. Listen and subscribe to the world’s podcasts.\",\n \"installs\": \"100,000,000+\",\n \"minInstalls\": 100000000,\n \"maxInstalls\": 369615094,\n \"score\": 4.5787067,\n \"scoreText\": \"4.6\",\n \"ratings\": 615107,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.podcasts/reviews\",\n \"histogram\": {\n \"1\": 28448,\n \"2\": 11433,\n \"3\": 18223,\n \"4\": 74580,\n \"5\": 482413\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Music & Audio\",\n \"genreId\": \"MUSIC_AND_AUDIO\",\n \"icon\": \"https://play-lh.googleusercontent.com/BQUYd1Th9Z_XI5wtklPQDHmiNkSOzBakOnpk-Ni8CBTyHb0E7UM5LpyjRW9BWs4fUuVD\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/NKasC1w9D1127mUi0VwPoRt87EpzAd7Q4J5TM27kVBeijdg487SkLtXUt7WVRXz5e5U\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/-3qeOHNOmNP5kcTc7uB2xKUk06h3kuB6pNniqu-Cx9lhv6nxC1BKhsL9N3vqcZc4jA\",\n \"https://play-lh.googleusercontent.com/pcC7E_K5s7D7oFsDYRwirr9X4BEYKdq2us-bYWdwiGKb9pghBokQ-iyYAlnDkI6Fiw\",\n \"https://play-lh.googleusercontent.com/6vZZPLu5PqgP6IFVxvcXpW7numGDAghqbvfkFm1DKDlRX95PcFqfEYMjnmXlPFUb1ewr\",\n \"https://play-lh.googleusercontent.com/qd3JGr-lwh3IM2RvmyXVfYJf6tPl6HRybGs1HyNHEpa7pGYiD-8PS-k6SFTXqcWF9g\",\n \"https://play-lh.googleusercontent.com/KdII-t-RKLrlH_YbLEwDWHC-qKQfMqGviFMAgDpRBXQC9LkO-E_MzkGBTOm4aJtygg\"\n ],\n \"contentRating\": \"Teen\",\n \"contentRatingDescription\": \"Diverse Content: Discretion Advised\",\n \"adSupported\": false,\n \"released\": \"Jun 19, 2018\",\n \"updated\": 1660061852000,\n \"version\": \"VARY\",\n \"recentChanges\": \"Google Podcasts now supports adding podcasts by RSS feed! Open the app and navigate to Activity, and then to the Subscriptions tab. Select the three dots in the top right corner and then "Add by RSS Feed." Once added, the podcast will appear along with your other subscribed shows, including at the top of the Home tab.\",\n \"comments\": [\n \"I like how well the \\\"search\\\" feature works. It finds matches and some that are \\\"almost\\\" matches. There is also a wide variety of podcasts to choose from. What I don't like (compared to Podbean) is that you can't fast forward just as easily as you can go back. Also, I don't like the screen where you see the new podcasts you are following. I know they are in newest order but the description fills up most of my screen. I would rather have it show more titles.\",\n \"This was a relieving change from Spotify and iHeart, has almost all the podcasts I like, easy to use, less ads, doesn't take up too much space. But sadly, the audio is very often cut or spliced in ways that make listening difficult, and you can never be sure if you're hearing the complete audio. I really can't keep putting up with this problem that has been going on for months.\",\n \"Haven't been using it very long. Tried it bc the one I've been using had gone downhill. I can't keep using this one for 2 reasons: (1) when signal is lost playback stops (expected) and will not try to restart on it's own. I have to manually go back into the app and press play when I think it's good again and (2) there are no notification bar playback controls so any time I want to pause, stop, or start I have to find the app and do it from there.\",\n \"I would have given 5 stars except for the fact that you can't review any podcasts. Let's be honest, most of us are using Google podcasts because we don't have an iphone, which seems to be the only place where you can actually rate/review podcasts. I'd love that to change. After trying several apps, I ended on this one because it was the simplest and best interface. It also picks up where I left off and doesn't start automatically when it connects to my car, (which drives me nuts). Solid app.\",\n \"What a superb way to listen to all your favourite shows and podcasts. Perfect for on the go, relaxing, in the car, or to help you drift off to sleep. The Google Podcasts app is easy to use, and the download function enables listening to podcasts even when offline, for later listening whilst in remote areas with no wifi or cell phone signal. I love everything about this app and the great range of podcast stations that are available. I hope it's continually updated.\"\n ],\n \"appId\": \"com.google.android.apps.podcasts\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.podcasts\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.podcasts&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.podcasts/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.podcasts/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.podcasts/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Find My Device\",\n \"description\": \"Find My Device helps you locate your lost Android and lock it until you get it back.\\n\\n Features\\n See your phone, tablet or watch on a map. If current location isn’t available, you’ll see the last known location.\\n\\n Use indoor maps to help you to find your device in airports, malls, or other large buildings\\n\\n Navigate to your device with Google Maps by tapping the device location and then the Maps icon\\n\\n Play a sound at full volume, even if your device is on silent\\n\\n Erase the device or lock it with a custom message and contact number on lock screen\\n\\n See network and battery status\\n\\n See hardware details\\n\\n Permissions Notice\\n • Location: Needed to show your device’s current location on the map\\n • Contacts: Needed to access the email address associated with your Google account\\n\\n Find My Device is part of Google Play Protect\",\n \"descriptionHTML\": \"Find My Device helps you locate your lost Android and lock it until you get it back.

Features
See your phone, tablet or watch on a map. If current location isn’t available, you’ll see the last known location.

Use indoor maps to help you to find your device in airports, malls, or other large buildings

Navigate to your device with Google Maps by tapping the device location and then the Maps icon

Play a sound at full volume, even if your device is on silent

Erase the device or lock it with a custom message and contact number on lock screen

See network and battery status

See hardware details

Permissions Notice
• Location: Needed to show your device’s current location on the map
• Contacts: Needed to access the email address associated with your Google account

Find My Device is part of Google Play Protect\",\n \"summary\": \"Find, ring, lock, and erase any lost Android device\",\n \"installs\": \"100,000,000+\",\n \"minInstalls\": 100000000,\n \"maxInstalls\": 199721822,\n \"score\": 4.41009,\n \"scoreText\": \"4.4\",\n \"ratings\": 1131073,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.adm/reviews\",\n \"histogram\": {\n \"1\": 81987,\n \"2\": 28934,\n \"3\": 64462,\n \"4\": 123495,\n \"5\": 832165\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"4.1\",\n \"androidVersionText\": \"4.1\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://www.android.com/find\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/aX0ql6V6PvVotibIvaNW7CRjaJ2oUyBIX_WgSkAl36vOAaoXiw6yQufxVQ2LV_D2DLg\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/XcDmSLkU0OhaYtkyJkHGTzaFUGi-jBAvspSYglJhxajaL4UANuy4LFtI_KAM37N6ZNbM\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/WCQdTqNKACXcFdixPz5LHlyUgIZ_gTrK4ZGvh__zpjF_SfgfA6MeW768KvY5xPJPwrE\",\n \"https://play-lh.googleusercontent.com/PI4cByNOL3n5BvmUMg7rT7e-3b_kRSRos8f_4fvwTi1kLH-9xEYOLiI8AHP0NYIyvK0\",\n \"https://play-lh.googleusercontent.com/T2rz5p-XtAi5y094SLEJHbeifE92mVkJAu54Q9Ayz9c3aCrHvDnL6yLJWbiHpgnA-8M\",\n \"https://play-lh.googleusercontent.com/BWKnduhth1nJfPAcun-3FA97I5I2hv-6YsLGqueHUJLQ4ijZwTpPz4eAKFnRxe6zVBk\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Dec 11, 2013\",\n \"updated\": 1653336285000,\n \"version\": \"2.4.065-3\",\n \"recentChanges\": \"Support finding Fast Pair headphones.\",\n \"comments\": [\n \"Find device has worked in the past but no longer does. It would be quite inconvenient If ever lose my phone because it doesn't show up in the app or the web portal. I've cleared the cache. The app has all the necessary permissions and find my device and location are on. haven't changed any settings, it just stopped working one day. It says no active devices. I have a pixel 6 pro FYI\",\n \"Update: started working only after looking for it on a laptop! Uodating from 1 to 3 stars! OP: Doesn't work on Android 11. Requests permission only to access location when app is open. No special permissions, nothing! Doesn't sound any sound or notification when contacted from another device, It's just offline! All the info I get about the device's location is from maps timeline history. Ugh. Works fine to find my older Android 8 phone though.\",\n \"I suggest downloading this on every device you have and setting it up. Just incase. My 3 month old brand new, contract phone ended up with a smashed screen, on silent, and it ended up Mia. Luckily it was in my home. I could not find it anywhere. Nor would I have found it without the app. This app led me right to it and is simple to use. I have only rated 2 apps in my life and this is 1 of them. Would give more stars if I could!\",\n \"This app is virtually worthless. Trying to find my friend's phone for them and it requires 2 point authentication by sending a code to the phone for verification....the lost phone. Dear programmers....I don't think you understood the assignment. SMH. This is only good for finding your own devices or to find a friend's devices other than their phone. You'll have to use a computer for the find my phone feature.\",\n \"It gave an approximate area but still helped save the day. Someone picked up my girlfriend's phone and she didn't notice it was gone for about 30 minutes. We were at an amusement park, so with the approximate location we knew it was around a certain ride. We asked the exployees at the entrance and exit, no one had seen it. I finally looked inside the garbage can half way through the entrance queue and there it was! Thanks to Find my device we were able to retrieve the phone.\"\n ],\n \"appId\": \"com.google.android.apps.adm\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.adm\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.adm&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.adm/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.adm/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.adm/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Speech Services by Google\",\n \"description\": \"Power your device with the magic of Google’s text-to-speech and speech-to-text technology. Google Speech-to-Text functionality \\n Speech Services provides speech-to-text functionality to Google and other third party apps to convert what you say to text. For example, it can be used by:\\n• Google Maps when you use your voice to search places\\n• Recorder App to transcribe your recordings on device\\n• Phone App Call Screen feature to get a real-time transcription of your caller\\n• Accessibility apps like Voice Access for operating your device through voice\\n• Dictation or keyboard apps you might use to dictate text messages through voice\\n• Apps that contain a search by voice feature so that you can quickly search for your favorite shows or songs\\n• Language learning apps that recognize what you say as you practice a new language\\n• …and many other applications in Play Store \\n To use Google Speech-to-Text functionality on your Android device, go to Settings > Apps & notifications > Default apps > Assist App. Select Speech Services by Google as your preferred voice input engine. \\n Google Text-to-Speech functionality \\n Speech Services powers applications to read the text on your screen aloud. For example, it can be used by:\\n• Google Play Books to “Read Aloud” your favorite book\\n• Google Translate to speak translations aloud so you can hear the pronunciation of a word\\n• Talkback and accessibility applications for spoken feedback across your device\\n• …and many other applications in Play Store \\n To use Google Text-to-Speech functionality on your Android device, go to Settings > Languages & Input > Text-to-Speech output. Select Speech Services by Google as your preferred engine. \\n Note, on many Android devices, Speech Services by Google is already available, but you can update to the latest version here.\",\n \"descriptionHTML\": \"Power your device with the magic of Google’s text-to-speech and speech-to-text technology. Google Speech-to-Text functionality
Speech Services provides speech-to-text functionality to Google and other third party apps to convert what you say to text. For example, it can be used by:
• Google Maps when you use your voice to search places
• Recorder App to transcribe your recordings on device
• Phone App Call Screen feature to get a real-time transcription of your caller
• Accessibility apps like Voice Access for operating your device through voice
• Dictation or keyboard apps you might use to dictate text messages through voice
• Apps that contain a search by voice feature so that you can quickly search for your favorite shows or songs
• Language learning apps that recognize what you say as you practice a new language
• …and many other applications in Play Store
To use Google Speech-to-Text functionality on your Android device, go to Settings > Apps & notifications > Default apps > Assist App. Select Speech Services by Google as your preferred voice input engine.
Google Text-to-Speech functionality
Speech Services powers applications to read the text on your screen aloud. For example, it can be used by:
• Google Play Books to “Read Aloud” your favorite book
• Google Translate to speak translations aloud so you can hear the pronunciation of a word
• Talkback and accessibility applications for spoken feedback across your device
• …and many other applications in Play Store
To use Google Text-to-Speech functionality on your Android device, go to Settings > Languages & Input > Text-to-Speech output. Select Speech Services by Google as your preferred engine.
Note, on many Android devices, Speech Services by Google is already available, but you can update to the latest version here.\",\n \"summary\": \"Speech recognition and synthesis for your device.\",\n \"installs\": \"10,000,000,000+\",\n \"minInstalls\": 10000000000,\n \"maxInstalls\": 11828244260,\n \"score\": 3.0391467,\n \"scoreText\": \"3.0\",\n \"ratings\": 3356390,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.tts/reviews\",\n \"histogram\": {\n \"1\": 1409764,\n \"2\": 118421,\n \"3\": 185430,\n \"4\": 216156,\n \"5\": 1426594\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"tts-feedback@google.com\",\n \"developerWebsite\": \"http://www.google.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/NqWvryDAnkEWLTq36xlrdx0CJ9rzxc3jfYJmIcrlxuJ_0X0QAG7Ojch8mX8_vFRauIvH\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/8tc-bWkfrZPqV3DUbNVmcFctTouDW5I9ZgXVbtuRRqN0SoeI2Xt4N06uiIIaeGPvqg\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/vnUPYHT9z2eZAaqpcQxw7-p2UAtSizAXRdviS6AwhVt5sEZBwXyCZ0gdMnOfpTziRucD\",\n \"https://play-lh.googleusercontent.com/4K1s_4mO_LGRdgdgAPtgg3yFb_ZlVR7Oc-L9xKYUb1QdlRBkrRza6a0goKPPCPxvDQ\",\n \"https://play-lh.googleusercontent.com/4qFfrsdSBewDxF9QDxTGY4E-eZO2e_DRRc3u3aS-6G6yNE6JZza62SDkoKCC18f771zD\",\n \"https://play-lh.googleusercontent.com/wRTYvesXL2w8CHRywAR4IT_fh-Qv23lJL2f3Y7WMMe422BHw9UR0z97eETJ2jGm8taA\",\n \"https://play-lh.googleusercontent.com/A4JxeF4iLCg_dYoSiv12mShXWdqJY-YUrYvyCzy2fwhku6pBxaOazFxVh0j4eEw7wKE\",\n \"https://play-lh.googleusercontent.com/Fk8MIyBLWN8uAN5LMyxtoRC3XDrKVuPNlBj_NcBpfwxVcXnh-PxnHjE_Geh7ttySJEQ\",\n \"https://play-lh.googleusercontent.com/QBGRzCsJVZwXbn4wZtMwHFQBnfJ-HamKonPk9uwHY1Ca5QwDwN2veGFuKuQNExFNTS4\",\n \"https://play-lh.googleusercontent.com/oDylI0PH1muD4q8r6zQzyNffh3lcwhCtnDIOyQ-F4l265itxID1keDLs6rB1vBZyNpM\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Oct 10, 2013\",\n \"updated\": 1661277715000,\n \"version\": \"VARY\",\n \"recentChanges\": \"Your app has a new name: “Speech Services by Google” and a new logo. The app also supports new functionality. The Speech Services by Google app not only provides text-to-speech but also empowers applications with speech-to-text functionality to convert your voice to text. Read more in the “About this app” section.\",\n \"comments\": [\n \"Apparently this came with my phone because I did not download it, I have a Galaxy from t-mobile. Your voice text adds entire sentences that I did not say. It also changes the things I do say. It is constantly repeating sentences sentences after I push send it and it will have the sentence written 2 or 3 times. I am extremely frustrated that's why I went to settings to see what was going on and found you. What a hot mess.\",\n \"So the speed was fixed, but the voice I chose isn't playing. It's some random voice. I have to uninstall it to get my normal voice, but it always reinstalls itself. Suddenly can't adjust speed correctly unless it's set to rate of 2.05 or higher. Different voice is reading. I keep uninstalling and it fixes itself, but then it automatically reinstalls. Several times a day I have to do this.\",\n \"This used to be very good, but often it gets my entire sentence correct, but then goes back and deletes about half my sentence. It has really gone haywire with the recent version and I find myself having to edit the text repeatedly. It also does weird things like putting \\\"mi\\\" when I say miles. Just now, it tried to put a question mark at the end of that last sentence. Why? I have no idea, but I'm doing half this review with the keyboard because text to speech is so problematic.\",\n \"It would be nice if the speech text picks up that you're using a word like their for a sentence like \\\"the neighbors just picked up their new car\\\". Not automatically put in \\\"there\\\" instead of their. Also the picking up of the background speech over you talking is rather frustrating. It's so fast at picking up background speech and seems to focus more on the background than the person's right in front of the phone.\",\n \"They've mostly fixed the \\\"muh\\\" instead of \\\"my\\\" problem in the US English voices, but there's still some pretty glaring problems. It's almost never accurate when it comes to abbreviations (for instance, saying \\\"drive\\\" instead of \\\"doctor\\\" for “Dr.“) Context is not it's strong suit. Also, there's still no tonal change for words that are italicized, which often makes sentences sound confusing. I love this app, but there's still plenty of room for improvement!\"\n ],\n \"appId\": \"com.google.android.tts\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.tts\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.tts&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.tts/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.tts/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.tts/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Gallery\",\n \"description\": \"Meet Gallery, a smart, light and fast photo and video gallery built by Google to help you: \\n \\n ✨ Find photos faster with automatic organization \\n 😎 Look your best with editing tools like auto-enhance \\n 🏝️ Use less data - works offline, all in a small app size \\n \\n AUTOMATIC ORGANIZATION \\n \\n Each night, Gallery will automatically organize your photos to group by: People, Selfies, Nature, Animals, Documents, Videos and Movies. \\n Gallery helps you stay organized, so you can spend less time scrolling for that photo of your friend or family member, and more time sharing memories with them.* \\n \\n AUTO-ENHANCE \\n \\n Gallery has easy to use photo editing tools, such as auto-enhance which will make your photos look their best with one-tap. \\n \\n FOLDERS AND SD CARD SUPPORT \\n \\n Use folders to organize photos in any way you want. All while still being able to view, copy and transfer to and from SD Cards, easily. \\n \\n PERFORMANCE \\n \\n Gallery comes in a small file size which means even more space for your own photos. All while using less memory on your device - so it won’t slow down your phone. \\n \\n WORKS OFFLINE \\n \\n Optimized to work offline, Gallery can easily manage and store all your photos and videos without using up all your data. \\n *face grouping not currently available in all countries\",\n \"descriptionHTML\": \"Meet Gallery, a smart, light and fast photo and video gallery built by Google to help you:

Find photos faster with automatic organization
😎 Look your best with editing tools like auto-enhance
🏝️ Use less data - works offline, all in a small app size

AUTOMATIC ORGANIZATION

Each night, Gallery will automatically organize your photos to group by: People, Selfies, Nature, Animals, Documents, Videos and Movies.
Gallery helps you stay organized, so you can spend less time scrolling for that photo of your friend or family member, and more time sharing memories with them.*

AUTO-ENHANCE

Gallery has easy to use photo editing tools, such as auto-enhance which will make your photos look their best with one-tap.

FOLDERS AND SD CARD SUPPORT

Use folders to organize photos in any way you want. All while still being able to view, copy and transfer to and from SD Cards, easily.

PERFORMANCE

Gallery comes in a small file size which means even more space for your own photos. All while using less memory on your device - so it won’t slow down your phone.

WORKS OFFLINE

Optimized to work offline, Gallery can easily manage and store all your photos and videos without using up all your data.
*face grouping not currently available in all countries\",\n \"summary\": \"Smart, light, and fast photo and video gallery\",\n \"installs\": \"100,000,000+\",\n \"minInstalls\": 100000000,\n \"maxInstalls\": 408778565,\n \"score\": 4.3793616,\n \"scoreText\": \"4.4\",\n \"ratings\": 161347,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photosgo/reviews\",\n \"histogram\": {\n \"1\": 11257,\n \"2\": 4306,\n \"3\": 12215,\n \"4\": 17722,\n \"5\": 115821\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"8.0\",\n \"androidVersionText\": \"8.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://www.android.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Photography\",\n \"genreId\": \"PHOTOGRAPHY\",\n \"icon\": \"https://play-lh.googleusercontent.com/pmEnTOeRvosC1yOXFVwo15zS2uAdB9nijugU93NbrmFBYt61IVCZBzg7EZ00YTqmLw\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/YXbhvUyvGlzDM3RGUhjFfote3xR8c95y2rv_jKZ5YLXzIMZaWVlB4wxDBGphJwwX9Q\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/IvL1Y_oDYHAdKvPEUpwk4NbIFdtMtOqltmgh10Y5DjmtefHwFoXgKzw8HZZVzjqU1fk\",\n \"https://play-lh.googleusercontent.com/awhwVd1gWUx-7IgFq1ofBa5kTYmTwC-X6o9yXsXV-Uer-K-jDPG_F-VEkl1gNE0dVps\",\n \"https://play-lh.googleusercontent.com/Jru7R3BDQlrjpfOJGvDAxxeXujB0B4M7ltrfslwlh2VCwSBicPbr5j5Cqyoiy0Zs-6w\",\n \"https://play-lh.googleusercontent.com/C9w6JlYk1wRSBrNM6VPe0y0cYg_ZXlLccI5kAfNH9qzBcazCLbrFUMJt3DphDO2LNg8\",\n \"https://play-lh.googleusercontent.com/X5vP9HmTwiEL2i0f9R_olVDPlrEaa00jS_vUn1dhx3cCz_rjU633yu7--xw8ZUpwzSlT\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Jul 23, 2019\",\n \"updated\": 1661837730000,\n \"version\": \"1.8.8.436428459 release\",\n \"recentChanges\": \"• Bug fixes and minor improvements.\",\n \"comments\": [\n \"I really wish Google would stop trying to unify the entire photo library on a device. There are a lot of times where this is completely inappropriate. When you hand somebody your phone to show them photos that you just took, you shouldn't have to worry that sensitive numbers and other data in screenshots that you have taken, will be exposed if they swipe a few too many to one side or the other. The fact that this program does not allow specific exclusion or inclusion of directories is idiotic.\",\n \"It is a decent app, better than a bunch of others I've tried. However when it comes to moving pictures/images from a folder on your phone to an SD folder it won't let you. It gives an error that it's unable to bcuz it doesn't have permission and there's no way to grant it. If they could fix it this would be the perfect gallery app.\",\n \"GREAT APP!! I don't know why people are saying photos can't be moved, when they can. Use the 3 dots, create a Folder, then look below and you'll see MOVE option below. I just found it and did it. I will agree that it wasn't as clear on how to do it as the previous versions, but, it can still be done.\",\n \"UPDATE: Can no longer move photos at all. What a pia. I'm going to find a different AND MORE USEFUL app. Original review follows: It works, but why does it ask for permission every time I want to move a photo? And when it asks (every single time), I have to be using portrait mode, or the buttons are not visible. And why is it unable to see photos on Google Photos?\",\n \"I love this app but it leaves alot to be wanted. Like it's so bare bones add some features to it like a Vault so I can keep my private photos away from prying eyes. Icons on photos that are already synced with Google Photos and what's not. I have to go and compair photos between the two apps to see if it's synced or not. Lastly a better photo editor built into the app couldn't hurt. Oh and release a Beta app for me to join please!\"\n ],\n \"appId\": \"com.google.android.apps.photosgo\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photosgo\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.photosgo&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photosgo/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photosgo/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.photosgo/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Authenticator\",\n \"description\": \"Google Authenticator generates 2-Step Verification codes on your phone.\\n\\n2-Step Verification provides stronger security for your Google Account by requiring a second step of verification when you sign in. In addition to your password, you’ll also need a code generated by the Google Authenticator app on your phone.\\n\\nLearn more about 2-Step Verification: https://g.co/2step\\n\\nFeatures:\\n* Generate verification codes without a data connection\\n* Google Authenticator works with many providers & accounts\\n* Dark theme available\\n* Automatic setup via QR code\\n* Transfer accounts between devices via QR code\\n\\nPermission notice:\\nCamera: Needed to add accounts using QR codes\",\n \"descriptionHTML\": \"Google Authenticator generates 2-Step Verification codes on your phone.

2-Step Verification provides stronger security for your Google Account by requiring a second step of verification when you sign in. In addition to your password, you’ll also need a code generated by the Google Authenticator app on your phone.

Learn more about 2-Step Verification: https://g.co/2step

Features:
* Generate verification codes without a data connection
* Google Authenticator works with many providers & accounts
* Dark theme available
* Automatic setup via QR code
* Transfer accounts between devices via QR code

Permission notice:
Camera: Needed to add accounts using QR codes\",\n \"summary\": \"Enable 2-step verification to protect your account from hijacking.\",\n \"installs\": \"100,000,000+\",\n \"minInstalls\": 100000000,\n \"maxInstalls\": 121438799,\n \"score\": 3.6800416,\n \"scoreText\": \"3.7\",\n \"ratings\": 410787,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.authenticator2/reviews\",\n \"histogram\": {\n \"1\": 99377,\n \"2\": 18002,\n \"3\": 22438,\n \"4\": 45798,\n \"5\": 225159\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"accounts-support@google.com\",\n \"developerWebsite\": \"https://support.google.com/accounts/bin/answer.py?hl=en&answer=1066447\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/oMv9o-L-mNKdyL3Hp6fvNwrhAyIYB1iP3p644hxN03oFU0R2oevnmxmCLF6FewjzZXU\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/dTJ3iU_5JZMODs4hmJJA_9XBpiZhROYEwz0CuJM4H5VVVFCaWL5DZVcVSKxTkRW3FA4\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/G2v8u8_pZsdnQX-aQZ01iDSrgW-bhEwgFU0zUkRV_5ft7JJ5aR70e0Jk7JrCQe-sChXP\",\n \"https://play-lh.googleusercontent.com/FJzx45vKEWDOKD4XXbPZ6MT7ykTvAUl60yHXEVWleCn9QrD4Do-Wkk5URUWsukOKMrTE\",\n \"https://play-lh.googleusercontent.com/PZdas_zbXK6QofT1dIqfL_yXpMZGPm19A0Qs-QOsRCOeIPEpuRTBt8-Z-Nevl6rY12Y\",\n \"https://play-lh.googleusercontent.com/h8GA9AJlEAq11UpncSXDjd-ShbpDWqdHxMkptmJLti8WFpMyrOQnYta_1D__FgOqOBk\",\n \"https://play-lh.googleusercontent.com/RccJLoc7xH16AgXq4OFGqBxOcwE9I9VRfqnCgUSIrH1a8TU-6goY8YQRWv77VakbVA\",\n \"https://play-lh.googleusercontent.com/-15RNeDrob7WSybEtSGTuGu1gj_-RLP_ywlBl8GwoONBKCURKylarxjt8NAT5QKRK00\",\n \"https://play-lh.googleusercontent.com/IJa6y4IrkP8N5QA02BHRGgBxqrI25k59iR9U581HZBUTtdbcGBi5Ks6Q1f1-Stl9Gw\",\n \"https://play-lh.googleusercontent.com/2URzoA7FR65qcJEt1xFvQjJIZ4lECs_mb37ZML0ejzOdJXqKBVStytXm4I_y1DS6-w\",\n \"https://play-lh.googleusercontent.com/rsg42S74ygXj7mgKaMLE0Fhk3pFAbrjV42tzTAjInRFdCsM5HDwWxEjHC1xQ5dAdTf8\",\n \"https://play-lh.googleusercontent.com/i084kbizkCM9i0DM5xV8tjXu_534w3rhdHcEEiBc9numhxWqOJ1m60FbjOQO_oTUVC0\",\n \"https://play-lh.googleusercontent.com/9fw6O-AbNbAJ_tFDCE19gREmAeNnYyFxU54_CebesYYOyIUnFC1OXJzQn3NugsEQ9oY\",\n \"https://play-lh.googleusercontent.com/frks0W192WQkWsVNwecpF5APBi3sBOi7r-im-6EH24z5dr9oAIrpE-bFTaclS2Hgsw\",\n \"https://play-lh.googleusercontent.com/_mNQJTUAcZnbQT9B6tRJ9R2uF-Ashk8eVGKxVVnRGYo5SViUEfnJwWJVKZO_SoYovu2C\",\n \"https://play-lh.googleusercontent.com/lDWpvEkBFU5lFyfzFITGQgx3R6TtU-bRXnh1RaXOGm12Fa4N2ZDoBWiSGAHSh667P3Y\",\n \"https://play-lh.googleusercontent.com/toNOoOXSdt4ugXa7_m9f838lQghn20lX2y4L4jujTC6obAWs-zfWDJK4SF_scQkthy7C\",\n \"https://play-lh.googleusercontent.com/mSuM2GtY_y7VHKs2blxCfNBL4GJEGATsFYkOBDgSRmtwWGeE1UhI03BO6iGCyvEyavE\",\n \"https://play-lh.googleusercontent.com/TBHNBZA8GwYfvaE_XTqIRJK4BRIFydDscQ-zcWkt5LfWhqxvLcQgUCOpsiPtOTCDDFE\",\n \"https://play-lh.googleusercontent.com/LP66PK-8yTn5-oHN6rUZJUeDfI6bPo71dSPBWb4wjxCtqGhFsLgWYrRg1hpedAVszdg\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Mar 21, 2012\",\n \"updated\": 1657803915000,\n \"version\": \"VARY\",\n \"recentChanges\": \"
* Added device encryption to storage of secret values.\",\n \"comments\": [\n \"This app is OK to use, but when I switched my phone, I lost all existing links with applications that use this app. There was no warning, no notifications. Only later, when I tried to access the app, I saw the instruction of what to do when switching phones. I mean, when I transferred data from the old device to the new one, EVERYTHING ELSE was transferred, but not this app. DO NOT USE THIS APP UNLESS YOU WANT TO BE LOCKED OUT OF YOUR ACCOUNTS.\",\n \"Used to be fine. Tapping to uncover codes is super inconvenient if you have more than one application to choose from. Additionally, I opened my app three times just now and each time it acted like it was my first time opening the app - all my accounts were gone. For whatever reason opening the app through the app store worked, but I should never have stability issues using the app on a Google phone, for Pete's sake. EDIT: doesn't look like I have to tap codes now. Thank you!\",\n \"I like the new Tap to Reveal feature. It hides codes which aren't needed at the time. And is more secure when out in crowded places. Please bring it back (possibly as an option for users to chose) while maintaining decent performance. Sounds like a lot of people complained that the feature was slowing down the app.\",\n \"The app functions but the more you use this app the more it becomes clear that little UX testing has been done here for a while. Basic stuff like sorting the list or filtering are missing. Going through a long list of accounts to find the right one can become error prone and time consuming. Would have expected better.\",\n \"The app is too simple. The ui needs better sorting, there need to be website logos and icons added and most importantly, encrypted backup to Google account/cloud. I don't want to worry about losing access to website and accounts because my phone crashed, broke, lost, stolen, bricked, etc. The #1 thing that needs to be prioritized is a secure backup option. Even if it's not on the cloud and just a file to export. Once that's there, people can have some peace of mind\"\n ],\n \"appId\": \"com.google.android.apps.authenticator2\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.authenticator2\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.authenticator2/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.authenticator2/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.authenticator2/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Go: A lighter, faster way to search\",\n \"description\": \"Google Go is a lighter, faster way to search, with search results optimised to save up to 40% data.\\n\\nGet answers quickly and reliably with Google Go, even on slow connections and smartphones with low space. At 12MB in size, it’s fast to download and saves space on your phone.\\n\\nType less, discover more. Save time by tapping your way through trending queries and topics, or by using your voice to say what you’re looking for.\\n\\nMake Google read it. Point your camera at text or listen to any web page. Words are highlighted as they are read, so you can easily follow along.\\n\\nSearch and translate with your camera. See a word you don’t understand on a sign, form, or product? With Google Lens, just point your camera to translate or search for it.\\n\\nEverything you need in one app. Easily and quickly access your favorite apps and websites, as well as images, videos and information on the things you care about - all from Google Go.\\n\\nDon’t miss out on what’s popular and trending. Explore the latest trending topics just by tapping Search.\\n\\nFind the perfect greetings to share with loved ones. Tap on “Images” or “GIFs” to find the best photos and animated greetings to liven up your chats.\\n\\nEasily switch between languages. Set a second language to switch your search results to or from at any time.\\n\\nWhatever you are looking for on the internet, Google Go makes it fast and easy for you to find!\",\n \"descriptionHTML\": \"Google Go is a lighter, faster way to search, with search results optimised to save up to 40% data.

Get answers quickly and reliably with Google Go, even on slow connections and smartphones with low space. At 12MB in size, it’s fast to download and saves space on your phone.

Type less, discover more. Save time by tapping your way through trending queries and topics, or by using your voice to say what you’re looking for.

Make Google read it. Point your camera at text or listen to any web page. Words are highlighted as they are read, so you can easily follow along.

Search and translate with your camera. See a word you don’t understand on a sign, form, or product? With Google Lens, just point your camera to translate or search for it.

Everything you need in one app. Easily and quickly access your favorite apps and websites, as well as images, videos and information on the things you care about - all from Google Go.

Don’t miss out on what’s popular and trending. Explore the latest trending topics just by tapping Search.

Find the perfect greetings to share with loved ones. Tap on “Images” or “GIFs” to find the best photos and animated greetings to liven up your chats.

Easily switch between languages. Set a second language to switch your search results to or from at any time.

Whatever you are looking for on the internet, Google Go makes it fast and easy for you to find!\",\n \"summary\": \"Everything you need in one app\",\n \"installs\": \"500,000,000+\",\n \"minInstalls\": 500000000,\n \"maxInstalls\": 988676014,\n \"score\": 4.216104,\n \"scoreText\": \"4.2\",\n \"ratings\": 985387,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.searchlite/reviews\",\n \"histogram\": {\n \"1\": 119790,\n \"2\": 28194,\n \"3\": 56583,\n \"4\": 95484,\n \"5\": 685314\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://www.google.com/search/about/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/RZ5luCUwc5QtJP9xDn-ZCwEutT160GVyoh5K1eu4YJ5fD7v4LP5ptVdgR9mz4Hnr7A\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/RLxLfcpj1G9fVmTbgN5PGL4iDyPV1f7cMdI7z2SOV4ShVne21o0bVsVoI9D-JrhqZNua\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/FQiHBDq-GuVGbZ_8XZezhyXqeGIhmlHMuvRUBgtUNkdz9O8-DBLVpYhcIaJxRqSeYRA\",\n \"https://play-lh.googleusercontent.com/1xQ55nUV5VixW3_QtVqDmQ-nQlR_PlwjXFr_zMr01C_iJ1encKqjxk7u1dKutpd0flc\",\n \"https://play-lh.googleusercontent.com/c1a8OenU65aWa161SkgdqjQAjqDooWdG79GSNaUeFpl0mdD1nf6GgMqokWVv3vm0Agg\",\n \"https://play-lh.googleusercontent.com/TzZsaFNZ8gSuzJWgbVAtVXYsIcAy6ApKr54y2zohs1RPY_J3xI4r7jXyu0LfextxrXE8\",\n \"https://play-lh.googleusercontent.com/KSvY8kmcbvjzusydiA-IAVZhF7dUQxJcL__aIf_H6OUKtWb1bU7KLzKSuUrlIFp1Bw\",\n \"https://play-lh.googleusercontent.com/2vATMcq3U5qkVubvV3Q8zUWwYFy6CJRlcqPfOHgpCLaUsaC8JKHEmVn87aR2zg-pCg\",\n \"https://play-lh.googleusercontent.com/l8Gu78EPLoDzFgsqc4vP6VSuwUMh7UhuDpwWHO6aya0FEFfza35SCHywCnJEQRvBmQ\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Aug 19, 2019\",\n \"updated\": 1661328049000,\n \"version\": \"VARY\",\n \"comments\": [\n \"Look I love GoogGo but it has a glitch that drives me nuts. It has all these wonderful apps to choose from for being a shortcut on the page which the way it's done is brilliant; except for the glitch. It will randomly ( or seems to be) not allow you to scroll all the way down. The tops of the apps can be shown. And then it's extremely difficult to to access them. Great app bad glitch, please fix.\",\n \"It works amazing! The load time is phenomenal, and it's very responsive. I also like the app selection it offers, it makes it easier to use reddit or quora without using space on my phone. It would be awesome if they would add a landscape mode for tablets, it's not very convenient(especially for typing) to flip over my tablet to use the app. I'm hoping in the future it will have both portrait & landscape mode.\",\n \"It's annoying. It gives only a few images for related searches and the sensitivity for selection is too much, and when I try to go back it brings me to the top of the search results and I have to find where I was before. This is a pre-installed app I am being forced to use and I can't download the original Google. Also the search bar and the suggestions are weird and the view is unappealing and confusing. I don't like it.\",\n \"I came across the Go Edition phones and things are going just horrible. Most important thing that is gone is 90% of voice assistant's capabilities. Was doing some research to see if I could somehow get rid of the Go versions of the other apps on my device and found out that I can download all but the Google app which is the only one I need!!!! Cuz not having all the features Google assistant offers is enough to make a person want to switch to Apple...which makes me 🤮(Apple products do that is)\",\n \"I absolutely despise any of the Google GO apps. They are not customer friendly. Extra steps & screens are needed just to be able to search for something and then you get a screen with useless info about tutorial videos at the top of the screen & then the search bar moves to the bottom. Ridiculous! This & all the GO apps are garbage. As the saying goes, \\\"If it ain't broke, no need to fix it!\\\" I tried to Uninstall it, but my device won't let me. Can I please just have the original Google back??\"\n ],\n \"appId\": \"com.google.android.apps.searchlite\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.searchlite\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.searchlite&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.searchlite/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.searchlite/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.searchlite/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Opinion Rewards\",\n \"description\": \"Answer quick surveys and earn Google Play credit with Google Opinion Rewards, an app created by the Google Surveys team.\\n\\nGetting started is easy. Download the app and answer basic questions about yourself. We'll then send you surveys around once a week, although it may be more or less frequent. You'll get a notification on your phone when a short and relevant survey is ready for you, and can receive up to $1.00 in Play credit for completing it. Questions can range from, \\\"Which logo is best?\\\" and \\\"Which promotion is most compelling?\\\" to \\\"When do you plan on traveling next?\\\"\",\n \"descriptionHTML\": \"Answer quick surveys and earn Google Play credit with Google Opinion Rewards, an app created by the Google Surveys team.

Getting started is easy. Download the app and answer basic questions about yourself. We'll then send you surveys around once a week, although it may be more or less frequent. You'll get a notification on your phone when a short and relevant survey is ready for you, and can receive up to $1.00 in Play credit for completing it. Questions can range from, "Which logo is best?" and "Which promotion is most compelling?" to "When do you plan on traveling next?"\",\n \"summary\": \"Answer surveys and earn Play credit!\",\n \"installs\": \"50,000,000+\",\n \"minInstalls\": 50000000,\n \"maxInstalls\": 76435506,\n \"score\": 4.491172,\n \"scoreText\": \"4.5\",\n \"ratings\": 2683408,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.paidtasks/reviews\",\n \"histogram\": {\n \"1\": 141048,\n \"2\": 55457,\n \"3\": 137117,\n \"4\": 360580,\n \"5\": 1989198\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"5.0\",\n \"androidVersionText\": \"5.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"opinion-rewards-support@google.com\",\n \"developerWebsite\": \"https://www.google.com/insights/consumersurveys/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"https://www.google.com/policies/privacy/\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/yeB9XKBeHfHChSDwjsFztdBYY-jcdgUpVQwtahFE6AeoKhKHowZMm9wJ4-W8VvML2w\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/00xqlmckOVyQn39qRTyhvQviG0COE5KTGTEE3v00yBCX0beNOIWOiGN4ZmJBC2Mfjh0\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/gOc2Y6nT17avctK7-HMlzR_OrID9fCT8m_37wEGx9ZJNy9fVSuexTIgVGfY3mORTAuQ\",\n \"https://play-lh.googleusercontent.com/fO_GGkQo6iqiqTmfzWYON47sXgyEHCOanFKVsVYJdiL5dQn9FqH_zWVbjrHEQCu_UQ\",\n \"https://play-lh.googleusercontent.com/LuC0k1QELFyu0Bgr9_C9ItpHp-1uAh6L_mVsoIURtGKC79lNL1K9-NDHyYTm9evZRuil\",\n \"https://play-lh.googleusercontent.com/3jLtER7Yh4bF0hafm1VvDoQfUbUgt4nRldM4PjSwRIzUurqqq1EHVMNoEWtz1AMS4aY\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Nov 5, 2013\",\n \"updated\": 1661806847000,\n \"version\": \"2022081502\",\n \"recentChanges\": \"• Now available in Colombia, Finland, Hungary, South Africa, and Vietnam.\",\n \"comments\": [\n \"Have loved this for years, but now it's broken and no one cares. I've earned quite a lot of money, but the amount shows up only in the app. Even if I click on the \\\"use at play store\\\"button, my balance shows as only $2 - not the actual balance. I've emailed support, which is apparently just a bot that redirects you to the help faqs. I've searched, and it seems others have this issue as well with no fix.\",\n \"I like the app, it only take seconds of my time to answer the surveys. I've seen reviews that say their rewards disappear. I thought that also until I realized the setting for play store purchases and subscriptions was set to use my reward money before my card on record. Once I changed that setting no more missing money. I had my daughter put it on her I-phone (I have an android) and she hasn't been given any surveys. I've made over $20 in a month!\",\n \"survey offers dont occur consistently enough for me. sometimes it seems like months go by before i get notified that one is available for me. sometimes I even have to go in and open the app just to restart it or \\\"wake\\\" it up as if it's just been lying dormant all that time or something. i really dont know. it would just be kinda nice if a survey could come around a little more often, maybe once every week or two or so instead of such looong breaks in between sometimes. :|\",\n \"Easy to use. There was a period of time where the app wasn't giving me surveys or options to rate, and the Google team was less than helpful in explaining why. But that's what companies that are too big do...stop, cancel, omit, block and do so without explanation. Edit: Moved to 1 star. Not getting any reward options. Not sure why. Used to be almost daily, now it's never.\",\n \"The frequency of surveys is sporadic, sometimes spanning months without a survey to receive rewards, and then when I do get a survey, it seems the rewards vary from as low as $0.10 to as much as like...$0.64, which is obviously nice. Mostly a good app. just some improvements that I think they could make.\"\n ],\n \"appId\": \"com.google.android.apps.paidtasks\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.paidtasks\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.paidtasks&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.paidtasks/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.paidtasks/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.paidtasks/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Lens\",\n \"description\": \"Google Lens lets you search what you see, get things done faster, and understand the world around you—using just your camera or a photo.\\n\\n SCAN & TRANSLATE TEXT\\n Translate words you see, save a business card to your contacts, add events to your calendar from a poster, and copy and paste complicated codes or long paragraphs into your phone to save time.\\n\\n IDENTIFY PLANTS & ANIMALS\\n Find out what that plant is in your friend's apartment, or what kind of dog you saw in the park.\\n\\n EXPLORE PLACES AROUND YOU\\n Identify and learn about landmarks, restaurants, and storefronts. See ratings, hours of operation, historical facts, and more.\\n\\n FIND THE LOOK YOU LIKE\\n See an outfit that catches your eye? Or a chair that's perfect for your living room? Find similar clothes, furniture, and home decor to the one you like.\\n\\n KNOW WHAT TO ORDER\\n See popular dishes on a restaurant menu based on reviews from Google Maps.\\n\\n SCAN CODES\\n Quickly scan QR codes and barcodes.\\n\\n *Limited availability and not available in all languages or regions. For further details go to g.co/help/lens. Some Lens features require an internet connection.\",\n \"descriptionHTML\": \"Google Lens lets you search what you see, get things done faster, and understand the world around you—using just your camera or a photo.

SCAN & TRANSLATE TEXT
Translate words you see, save a business card to your contacts, add events to your calendar from a poster, and copy and paste complicated codes or long paragraphs into your phone to save time.

IDENTIFY PLANTS & ANIMALS
Find out what that plant is in your friend's apartment, or what kind of dog you saw in the park.

EXPLORE PLACES AROUND YOU
Identify and learn about landmarks, restaurants, and storefronts. See ratings, hours of operation, historical facts, and more.

FIND THE LOOK YOU LIKE
See an outfit that catches your eye? Or a chair that's perfect for your living room? Find similar clothes, furniture, and home decor to the one you like.

KNOW WHAT TO ORDER
See popular dishes on a restaurant menu based on reviews from Google Maps.

SCAN CODES
Quickly scan QR codes and barcodes.

*Limited availability and not available in all languages or regions. For further details go to g.co/help/lens. Some Lens features require an internet connection.\",\n \"summary\": \"Translate words, identify plants, find products, & more—using just your camera\",\n \"installs\": \"1,000,000,000+\",\n \"minInstalls\": 1000000000,\n \"maxInstalls\": 1566944789,\n \"score\": 4.5840836,\n \"scoreText\": \"4.6\",\n \"ratings\": 1601274,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.ar.lens/reviews\",\n \"histogram\": {\n \"1\": 75006,\n \"2\": 20648,\n \"3\": 56298,\n \"4\": 191330,\n \"5\": 1257930\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"6.0\",\n \"androidVersionText\": \"6.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://lens.google.com\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy/\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/G5oF0mhpOcQzFTrU6TDUL0JoAjzRt38weiZKua7L61WVT1z3dPcE9gUu-W2EwtM9cZU\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/RWTCxTHFPtJUXjGZqCvWPEuLxhzvtUB4r_5qj_hiX8JR5laYIzUlJOrD7YFNIKXQ6cQ\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/nWim8Sgte8R9kKrk2wnrtvZOGskr6-SZ0DIDEXjahM0_5SRx2VT9KtllFqOXhyG-fA\",\n \"https://play-lh.googleusercontent.com/idJVQMmHLs8xaYFPhdWWGmJQnTvMKCO3T7XsA7GgJv_OyBEY4aOlWGY5OiJa0F3IXwM\",\n \"https://play-lh.googleusercontent.com/P0delAEAJ9-1ofNcpDcQxy4TFgEPL8xsrfPmiLoV1jxY4J_8-Kw3_sSEptoGOWgpG9Xq\",\n \"https://play-lh.googleusercontent.com/QKTUwevwZzQsy_CSdhROripqUKvkxEPEwSWr8Om_sF3ji0ecQLstt9LqFKxN71igmg\",\n \"https://play-lh.googleusercontent.com/SF8FrutQ7sfFtLP3cTqtO7gLR9zKfZ2nraQBT4O0qZsJlzFR_bC9px1F_tJhBAa-gUiB\",\n \"https://play-lh.googleusercontent.com/xy4whAeNjkA_NQ7kmgfCqsHvpWB8t88Mjh-rgPd11Omoyicl_0tSIfEO98jb4XZyDQ\",\n \"https://play-lh.googleusercontent.com/y5aSw1w4e1rJYbEtAUAPemvKM_pK2Qoi7h1kauqAvebJ8i7hLVKlSgB-I6GVZG6cCdnk\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Jun 4, 2018\",\n \"updated\": 1652989019000,\n \"version\": \"VARY\",\n \"recentChanges\": \"Lens now analyzes camera motion for more accurate results.\",\n \"comments\": [\n \"App crashes as soon as it gives me search results. Even if I click on the results, the web page disappears as well. Plus I have to be super fast to be able to click on the results before they disappear. So far, I am not fast enough to actually see or copy/paste the results so I can open them in another web app. Have reported the problem but no answer so far. Bummer.\",\n \"I Iove this app! It's fun and super helpful! Most cars, plants, animals, album covers and the like it does a fantastic job. For more obscure things like small figurines and old China, It usually finds that if it's out there. If not I can add a word or phrase to help the search engine. When it can't find it, I know that it's something obscure or rare. Feedback is requested after every search which I think they can use to refine their search engine. I am a fan!\",\n \"vLove it! When I first tried this a couple years ago, it definitely needed some work. Most of the things I tried searching for just were not in the database. Fast forward two years and what a difference! Most everything I look for (vintage estate items to value and price) have several results. Very rarely now, ( less than 5 % of the time) does it come up empty. The only issue I've had is more of a bug in the app issue where it will search for part of the picture which ends up way off base.\",\n \"It's a great idea. Don't get me wrong. But there is a thing I do hate and a feature I wish existed. The feature I wish was in the app was if you could use a tool to manually cover the text you want to translate, then translate it. Covering it with like.. uh the blue thing. Okay, awful explanation. So if your translating an image it won't cover the other text right next to it, heck it sometimes covers only a bit of a sentence. I am talking about the translation feature.\",\n \"I study a lot of languages and use this to translate on a screen when I don't understand a sentence. Constantly opens on photos. Annoying. When it translates, it immediately pops up a screen requesting feedback. Extremely annoying. I'm using it to translate words that are going by fast on a screen. I don't want an annoying popup after every translation!\"\n ],\n \"appId\": \"com.google.ar.lens\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.ar.lens\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.ar.lens&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.ar.lens/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.ar.lens/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.ar.lens/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Snapseed\",\n \"description\": \"Snapseed is a complete and professional photo editor developed by Google.\\n\\n\\n\\n== KEY FEATURES==\\n\\n• 29 Tools and Filters, including: Healing, Brush, Structure, HDR, Perspective (see list below)\\n\\n• Opens JPG and RAW files\\n\\n• Save your personal looks and apply them to new photos later\\n\\n• Selective filter brush\\n\\n• All styles can be tweaked with fine, precise control\\n\\n\\n\\n== TOOLS, FILTERS AND FACE ==\\n\\n• RAW Develop – open and tweak RAW DNG files; save non-destructively or export as JPG\\n\\n• Tune image – adjust exposure and color automatically or manually with fine, precise control\\n\\n• Details – magically brings out surface structures in images\\n\\n• Crop – crop to standard sizes or freely\\n\\n• Rotate – rotate by 90°, or straighten a skewed horizon\\n\\n• Perspective – fix skewed lines and perfect the geometry of horizons or buildings\\n\\n• White Balance – adjust the colors so that the image looks more natural\\n\\n• Brush – selectively retouch exposure, saturation, brightness or warmth\\n\\n• Selective – the renown “Control Point” technology: Position up to 8 points on the image and assign enhancements, the algorithm does the rest magically\\n\\n• Healing – remove the uninvited neighbor from a group picture\\n\\n• Vignette – add a soft darkness around the corners like a beautiful, wide-aperture would do\\n\\n• Text – add both stylized or plain text\\n\\n• Curves - have precise control over the brightness levels in your photos\\n\\n• Expand - increase the size of your canvas and fill up the new space in smart ways with content of your image\\n\\n• Lens Blur – add a beautiful Bokeh to images (background softening), ideal for photographic portraits\\n\\n• Glamour Glow – add a fine glow to images, great for fashion or portraits\\n\\n• Tonal Contrast – boost details selectively in the shadows, midtones and highlights\\n\\n• HDR Scape – bring a stunning look to your images by creating the effect of multiple exposures\\n\\n• Drama – add a hint of doomsday to your images (6 styles)\\n\\n• Grunge – an edgy look with strong styles and texture overlays\\n\\n• Grainy Film – get modern film looks with realistic grain\\n\\n• Vintage – the style of color film photo from the 50’s, 60’s or 70’s\\n\\n• Retrolux – go retro with light leaks, scratches, film styles\\n\\n• Noir – Black and White film looks with realistic grain and the “wash” effect\\n\\n• Black & White – classic Black and White look straight out of the darkroom\\n\\n• Frames – add frames with adjustable size\\n\\n• Double Exposure - blend two photos, choosing from blend modes that are inspired by shooting on film and by digital image processing\\n\\n• Face Enhance – add focus to the eyes, add face-specific lighting, or smoothen skin\\n\\n• Face Pose - correct the pose of portraits based on three dimensional models\",\n \"descriptionHTML\": \"Snapseed is a complete and professional photo editor developed by Google.



== KEY FEATURES==

• 29 Tools and Filters, including: Healing, Brush, Structure, HDR, Perspective (see list below)

• Opens JPG and RAW files

• Save your personal looks and apply them to new photos later

• Selective filter brush

• All styles can be tweaked with fine, precise control



== TOOLS, FILTERS AND FACE ==

• RAW Develop – open and tweak RAW DNG files; save non-destructively or export as JPG

• Tune image – adjust exposure and color automatically or manually with fine, precise control

• Details – magically brings out surface structures in images

• Crop – crop to standard sizes or freely

• Rotate – rotate by 90°, or straighten a skewed horizon

• Perspective – fix skewed lines and perfect the geometry of horizons or buildings

• White Balance – adjust the colors so that the image looks more natural

• Brush – selectively retouch exposure, saturation, brightness or warmth

• Selective – the renown “Control Point” technology: Position up to 8 points on the image and assign enhancements, the algorithm does the rest magically

• Healing – remove the uninvited neighbor from a group picture

• Vignette – add a soft darkness around the corners like a beautiful, wide-aperture would do

• Text – add both stylized or plain text

• Curves - have precise control over the brightness levels in your photos

• Expand - increase the size of your canvas and fill up the new space in smart ways with content of your image

• Lens Blur – add a beautiful Bokeh to images (background softening), ideal for photographic portraits

• Glamour Glow – add a fine glow to images, great for fashion or portraits

• Tonal Contrast – boost details selectively in the shadows, midtones and highlights

• HDR Scape – bring a stunning look to your images by creating the effect of multiple exposures

• Drama – add a hint of doomsday to your images (6 styles)

• Grunge – an edgy look with strong styles and texture overlays

• Grainy Film – get modern film looks with realistic grain

• Vintage – the style of color film photo from the 50’s, 60’s or 70’s

• Retrolux – go retro with light leaks, scratches, film styles

• Noir – Black and White film looks with realistic grain and the “wash” effect

• Black & White – classic Black and White look straight out of the darkroom

• Frames – add frames with adjustable size

• Double Exposure - blend two photos, choosing from blend modes that are inspired by shooting on film and by digital image processing

• Face Enhance – add focus to the eyes, add face-specific lighting, or smoothen skin

• Face Pose - correct the pose of portraits based on three dimensional models\",\n \"summary\": \"Professional quality photo edits with the new Snapseed.\",\n \"installs\": \"100,000,000+\",\n \"minInstalls\": 100000000,\n \"maxInstalls\": 279817788,\n \"score\": 4.400718,\n \"scoreText\": \"4.4\",\n \"ratings\": 1565231,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.niksoftware.snapseed/reviews\",\n \"histogram\": {\n \"1\": 102007,\n \"2\": 45809,\n \"3\": 102007,\n \"4\": 188518,\n \"5\": 1126870\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://support.google.com/snapseed\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy/\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Photography\",\n \"genreId\": \"PHOTOGRAPHY\",\n \"icon\": \"https://play-lh.googleusercontent.com/Rilq4obCk7XIl2Pjb8XT-Ydh_aI3hBNeFwro9fFXrIAuC-zPxCZ4feE4rx5fZ3jHNLw\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/jMJSMcEqf-Ea3rIKVcyYAvZ9Lr9UM-oTCdHms4rJCREe2OxcLr_xt5Fe1PzoXjwYxj5B\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/CrRfRw8TPhbyqOJZ1qUscqOZf5pVYbO2I2oPnf0-8RBOUOV3PqthpLa1almaQ9ObN9GZ\",\n \"https://play-lh.googleusercontent.com/AyIokkc-LC7LesYJEW5nSAJ9iiREzwdFl8tVRncgGGQuCQKTSgkgOKljTvgXt5yss30\",\n \"https://play-lh.googleusercontent.com/tnr9YFs0n22Lx74AeT00u85dsVndijFcvI3JcDqillbyKeb_600SWtaw35YZq0vbpnI\",\n \"https://play-lh.googleusercontent.com/Yos_wLCpHtTXhz8Z-un5OPhj5_EPFffhIg2pqCn1P4ODE5uBYbufJ2pUK1FTXMMs_rg\",\n \"https://play-lh.googleusercontent.com/prsPt9Q24oIZzafaZvyiiaMIwnWF3V4c_fc0tZ0IboI8MvDiI62r_stAu3WkvV0jZw0\",\n \"https://play-lh.googleusercontent.com/ISM98BHSQ83ovVJRtZJZyRZoWRKV_kxiAtc-OV5MAgxnSNlV5CkRFVXQvctnRyvTjPk\",\n \"https://play-lh.googleusercontent.com/lp8ntVQw7KzuN7Ao-1jV5Ab-xQP8hLb3n4jqALpkqHwgaoGfytTY5qijrCdSpgpQDNOf\",\n \"https://play-lh.googleusercontent.com/qij57Z02DC_AT7hOCJbRAl7ZzPdfM3V03HMtwHtCXnB_4WkoDj6lPmpH6yDBcI2v0JA\",\n \"https://play-lh.googleusercontent.com/rknkhiPOdbUtmX0Rea1Se41YIylrLhPrU0GgUjsEdCxEow3lTP2Uv6HVyvHQ78tpKoI\",\n \"https://play-lh.googleusercontent.com/k6V0t9CsS_QoDeiJSghp3blUC6EjYLc3vf1CjtXaUv5KaSkA5skPdjKC82T3Rda6_Q\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Dec 6, 2012\",\n \"updated\": 1586854350000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• Added support for a dark theme mode in Settings

• Bug fixes\",\n \"comments\": [\n \"4/5: There is no function to ADD any other pictures from your gallery onto your current image being edited. This is possibly my biggest complaint. Otherwise, I would rate Snapseed 5 stars. It is so simple yet absolutely outstanding to use. I love the layout and the many options to adjust your images exactly how you want them! The best feature by far is the ability to undo, tweak, or even completely change. It is very easy to customize and make your work as best as possible. I love Snapseed!\",\n \"Overall this has seemed to be the best alternative to photoshop I've been able to find. But I'd like to see a few changes. A separate menu between actual tools and all the filters would be nice. The \\\"Brush\\\" tool would be even better with a size meter/option to control, along with some of the options under \\\"Tune\\\" to be available in the \\\"Brush\\\" tool in order to get them more precise. Maybe an undo button instead of eraser. And some sort of overall tool for smoothing/dehazing/color noise as well.\",\n \"Great app! Bit of a learning curve so -1☆, but nothing too complicated, and there are tutorials I haven't dug into yet. Love that there are ZERO ads! That's awesome, thank you! Tons of tools! What I really love that other apps don't have, is the ability to go back into each edit and do some major fine tuning or artistic touches, save them as filters, and batch edit a whole collection! A favorite tool is \\\"Expand\\\" I have tried countless apps, and this is the only one with the feature,so TY!\",\n \"One of the best picture editing apps. 🔥 🔥 🔥 However, please bring back the previous smart/black/white expansion function - it used to be able to expand in only ONE SELECTED DIRECTION (or two) and now expands towards all sides equally which makes editing quite cumbersome later as cropping the unneeded areas isn't very easy to do on a small screen accurately. It used to be so good for framing the picture (black/white expansion) or adding missing areas with the smart expansion tool.\",\n \"Its ok with very basic editing features. Unfortunately most are unusable aside from the healing brush. Things like dodge and burn should have the ability to adjust intensity on a sliding scale. A standard paintbrush would also be nice if ability to tap an area to adjust color were present. There should also be a selective erase feature for all filters as well as ability to adjust intensity. Lack of these makes the ap mostly impractical. Will keep just for the healing brush.\"\n ],\n \"appId\": \"com.niksoftware.snapseed\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.niksoftware.snapseed\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.niksoftware.snapseed&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.niksoftware.snapseed/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.niksoftware.snapseed/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.niksoftware.snapseed/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Classroom\",\n \"description\": \"Classroom makes it easy for learners and instructors to connect—inside and outside of schools. Classroom saves time and paper, and makes it easy to create classes, distribute assignments, communicate, and stay organized. \\n\\nThere are many benefits to using Classroom:\\n• Easy to set up – Teachers can add students directly or share a code with their class to join. It takes just minutes to set up.\\n• Saves time – The simple, paperless assignment workflow allows teachers to create, review and mark assignments quickly, all in one place.\\n• Improves organization – Students can see all of their assignments on an assignments page, and all class materials (e.g., documents, photos, and videos) are automatically filed into folders in Google Drive.\\n• Enhances communication – Classroom allows teachers to send announcements and start class discussions instantly. Students can share resources with each other or provide answers to questions on the stream.\\n• Secure – Like the rest of Google Workspace for Education services, Classroom contains no ads, never uses your content or student data for advertising purposes.\\n\\n\\nPermissions Notice:\\nCamera: Needed to allow the user to take photos or videos and post them to Classroom.\\nStorage: Needed to allow the user to attach photos, videos, and local files to Classroom. It's also needed to enable offline support.\\nAccounts: Needed to allow the user to choose which account to use in Classroom.\",\n \"descriptionHTML\": \"Classroom makes it easy for learners and instructors to connect—inside and outside of schools. Classroom saves time and paper, and makes it easy to create classes, distribute assignments, communicate, and stay organized.

There are many benefits to using Classroom:
• Easy to set up – Teachers can add students directly or share a code with their class to join. It takes just minutes to set up.
• Saves time – The simple, paperless assignment workflow allows teachers to create, review and mark assignments quickly, all in one place.
• Improves organization – Students can see all of their assignments on an assignments page, and all class materials (e.g., documents, photos, and videos) are automatically filed into folders in Google Drive.
• Enhances communication – Classroom allows teachers to send announcements and start class discussions instantly. Students can share resources with each other or provide answers to questions on the stream.
• Secure – Like the rest of Google Workspace for Education services, Classroom contains no ads, never uses your content or student data for advertising purposes.


Permissions Notice:
Camera: Needed to allow the user to take photos or videos and post them to Classroom.
Storage: Needed to allow the user to attach photos, videos, and local files to Classroom. It's also needed to enable offline support.
Accounts: Needed to allow the user to choose which account to use in Classroom.\",\n \"summary\": \"Connect with your classes and do assignments on the go.\",\n \"installs\": \"100,000,000+\",\n \"minInstalls\": 100000000,\n \"maxInstalls\": 274802201,\n \"score\": 2.3585892,\n \"scoreText\": \"2.4\",\n \"ratings\": 1975263,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.classroom/reviews\",\n \"histogram\": {\n \"1\": 1212477,\n \"2\": 45780,\n \"3\": 67500,\n \"4\": 95175,\n \"5\": 554292\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"5.0\",\n \"androidVersionText\": \"5.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://classroom.google.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Education\",\n \"genreId\": \"EDUCATION\",\n \"icon\": \"https://play-lh.googleusercontent.com/w0s3au7cWptVf648ChCUP7sW6uzdwGFTSTenE178Tz87K_w1P1sFwI6h1CLZUlC2Ug\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/NKQOm4mE5NscFdbtCrNbtNUqTqef13amukVSRDhSWGvRxvFXb7QDqYX15VACh-e68Rx-\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/aJ5CxjdYhJIaUKYGdtZjNjBW-IrStLXKy3i3q7FYrdGVINWgKzCM68IlMQsfe4pBj6w\",\n \"https://play-lh.googleusercontent.com/ECNXIrOn0DjOH_ig4Uv-AWxm6N742-qNdmnVYA1xFFZjTG8PeqKUlGO2BiiKtQPKGb0\",\n \"https://play-lh.googleusercontent.com/DAXtW6yjGly1czlWHaXZtJR0UjVZ7Xa6tB6CQ90KodvnDEbTrG6cKzKETyaYOLI74Q\",\n \"https://play-lh.googleusercontent.com/nKJN2SApNTnCsQrKVY45TLC8b8Qo0XZLZoe4USuY8RLXicv7rkXuFwS22EpxM5GkXUg\",\n \"https://play-lh.googleusercontent.com/mMrIsaOKIT-Ru6NqLJxlZ8ZbgJJkYStMMDdK8PIk7SDUAm6jDezlZLecNL6rwtFOzV0\",\n \"https://play-lh.googleusercontent.com/29SEMFA5jWr6hiJF_WZeVFM9fm8V5sSkNGTw85TfbiuVcEwEMtm77U5wJTmLwcMWseUy\",\n \"https://play-lh.googleusercontent.com/lpUlAJdi7ZaLlrc5FUuBrkKiMHdUE-PshAfOFPdackNloeH8FzR6y8r6QuvWqxt02u8\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Jan 14, 2015\",\n \"updated\": 1659974442000,\n \"version\": \"8.0.301.20.90.1\",\n \"recentChanges\": \"* Grading student work is faster with new navigation between each students' submission
* Bug fixes and improvements\",\n \"comments\": [\n \"I like the fact that it's simple and clean. It's been a great holding space for materials shared with my class. It's unfortunate that formatting (boldface, italics, bullet points) doesn't hold up when you transition from laptop to phone. All of those elements which make materials easily organized and readable just disappear.\",\n \"Google Classroom works, most of the time, on my Chromebook but it is totally unreliable on my phone. When trying to turn in assignments (or load them in) it either takes forever or it doesn't load in at all. Navigation is a bit of a headache but that's not my main problem. My wifi connection is excellent but I still have problems with stuff loading in no matter where I am.\",\n \"I liked the app at first, But honestly reviewing everything on my iPad from the past 4-3 years it's really..rough. I had so many issues with starting the app, Getting work done, It's really awful on mobile devices, And I hated switching back and forth from computer/laptop to iPad/phone. It consistently stopped midway through my work and I'd have to restart EVERYTHING all over again. The app can be fairly slow too, And honestly it's really annoying to restart everything. Wouldn't recommend at all\",\n \"When the app actually works, it's a great app. Helps me stay ontop of my work without having to remember to check my computer. Unfortunately, it seems to never work. Class room hasn't been able to load anything new for almost a month for any of my classes, so I don't get any notifications and need to constantly check my computer. Other than that, assignments that I turned in would unsunmit themselves, or take forever to turn in. The app has been really useful to me, but now it's useless\",\n \"Google Classroom made everything easier during distance learning. It was easy, accessible, and had a great interface. The aesthetic was simple and clean, and was quite easier to look at than some of the things I have seen. As a student, I was struggling with quarantine and separation, but this made it SO MUCH SIMPLER. Just, click click, you can do your work. Click again and you can turn it in. Teachers can make announcements, video chats, and lessons without hassle. All in all, this is amazing!\"\n ],\n \"appId\": \"com.google.android.apps.classroom\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.classroom\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.classroom&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.classroom/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.classroom/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.classroom/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Wallpapers\",\n \"description\": \"Make the most of your display with beautiful wallpapers and advanced features. Choose one of your own photos, an image from the Google Earth collection, a scenic landscape from Google+, and more. Change it as often as you like, so your phone always represents your style. \\n\\n • Enjoy a collection that keeps on growing. Access images from Google Earth, Google+, and other partners.\\n • Double your fun. Show the world one wallpaper on your lock screen, and keep one for yourself on your home screen. (Requires Android™ 7.0, Nougat, and above.) \\n • Start each day fresh. Pick your favorite category and you’ll get a new wallpaper image each day.\\n\\n Permissions Notice \\n Photos/Media/Files: Needed to allow you to use custom photos as wallpaper.\\n Storage: Needed to display the currently set wallpaper and to allow you to use custom photos as wallpaper.\",\n \"descriptionHTML\": \"Make the most of your display with beautiful wallpapers and advanced features. Choose one of your own photos, an image from the Google Earth collection, a scenic landscape from Google+, and more. Change it as often as you like, so your phone always represents your style.

Enjoy a collection that keeps on growing. Access images from Google Earth, Google+, and other partners.
Double your fun. Show the world one wallpaper on your lock screen, and keep one for yourself on your home screen. (Requires Android™ 7.0, Nougat, and above.)
Start each day fresh. Pick your favorite category and you’ll get a new wallpaper image each day.

Permissions Notice
Photos/Media/Files: Needed to allow you to use custom photos as wallpaper.
Storage: Needed to display the currently set wallpaper and to allow you to use custom photos as wallpaper.\",\n \"summary\": \"Make the most of your display with beautiful wallpapers and advanced features.\",\n \"installs\": \"500,000,000+\",\n \"minInstalls\": 500000000,\n \"maxInstalls\": 630251293,\n \"score\": 4.128716,\n \"scoreText\": \"4.1\",\n \"ratings\": 214533,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.wallpaper/reviews\",\n \"histogram\": {\n \"1\": 25917,\n \"2\": 8616,\n \"3\": 17572,\n \"4\": 22253,\n \"5\": 140172\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"wallpapers-support@google.com\",\n \"developerWebsite\": \"http://www.android.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Personalization\",\n \"genreId\": \"PERSONALIZATION\",\n \"icon\": \"https://play-lh.googleusercontent.com/2aJfB6trLglywvIh6MSN58qh-r2b-_2GoXk4dWL5fIZmMAWdTN3f98Ugpi6U_glIm0w\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/SIQH47SpD0_1ava4sAYRz-_mCNFToC2Xv-Zr2lODCjbvm2ZKwps6mzbObgp_jUNTEg\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/sPOOoVkXrwHCTSWrXxbwL5CMkeJDMO_Q6RPib7bA0ec852cte6EMQDN9Ex9MBmzVjDoC\",\n \"https://play-lh.googleusercontent.com/WGQD4PvyAuNnh7f_ftWrjWv0pYv2w6tashADUIMaRsfS-SxZhmSmO-hGATyeTidgeg\",\n \"https://play-lh.googleusercontent.com/hXwU4Ks5oPCzm3bHaYnV0UC1aWFAHYwO4AypJDH9myDH6rK-rHJyeaz8dD-iVlS1yDEy\",\n \"https://play-lh.googleusercontent.com/wKj5Mtcdpw6tBx1Nv0p3PegiGWO796CWcPNndv5bxQULMh_PDcovGcGv3H4Bdpx05nCn\",\n \"https://play-lh.googleusercontent.com/5-N10NGVIamsejtcb54cPrbcTvRdW7XC8hieBClMKzMBRQgsCDZEamRAtxPQjkWA2wY\",\n \"https://play-lh.googleusercontent.com/Omrq7TimH5I80TCyVttasXgP79UjwkIhf9XPDL4yyjQvsAUkbpCWEkORwXjNgfEF_A\",\n \"https://play-lh.googleusercontent.com/XoUzmX_bFf118OTkIFrVgUWjD0v9Lu3jP6S4AhSNzFvkYj1vBx7RY8W_fTG0dqQqRw\",\n \"https://play-lh.googleusercontent.com/kTZWREGPVHdVwNzAwL44GhY2XdJqbW7pAab2mgcLwx0Ewb4hLX0UaDlBwVOi_4bTuBQ\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Oct 19, 2016\",\n \"updated\": 1599635048000,\n \"version\": \"VARY\",\n \"recentChanges\": \"UI improvements and bugfixes.\",\n \"comments\": [\n \"There are some great photos, but it doesn't tell you where the photo is taken which would be nice, and as white is the default Android notification font color, sometimes it displays a light enough background that you can't see the notification bar or what's there; which then makes me have to go in and manually choose another background (sometimes two or three times). And lately, the wallpaper selected in the app isn't the same as to what's applied to my phone.\",\n \"Kindly, update the collection from time to time. I've been seeing same set of wallpapers since eons. The collection has only been updated once since the application's launch! Furthermore, upon applying the wallpaper, it sets the region of display which is not what user has selected. Lastly, there are a large number of photos which are of poor quality. Google Inc. should set certain protocols related to the quality, resolution, etc of wallpapers being uploaded. A potent app, needs refinement!\",\n \"BEAUTIFUL photos! I love that I can enlarge and move the photo around to get exactly what I want out of it for my wallpaper. I didn't even realize that at first! Like in \\\"Landscapes\\\", I'll use a tiny portion blown up. Can barely tell which photo I'm using. 😉 I'm really only into a few of the series tho. E.g., in \\\"Seascapes\\\" the shots don't differ a whole lot. And I can't figure out how to get my own photos in there although there seems to be a spot for them. But all in all, I love it & so easy!\",\n \"Another great idea that has been left to languish by Google. Live wallpapers are one of the few features that are unique to the Android space. Maybe live wallpapers aren't as trendy as they once were, but it's something that makes my Pixel 3 fun to use. And I would really miss them if I switch to iOS. Why not add new ones from time to time? Why introduce the feature if that was not the intent to begin with? So, thanks Google for letting another interesting feature become just stale.\",\n \"It's good, but I'm getting increasingly frustrated with the fact that I can't upload a live wallpaper. The only thing showing up for me is a black video that isn't on my device, nor can I find it in my storage. It doesn't look like how it looks like in the preview, which would be fine but it restricts some of the extra stuff like timing backgrounds. It does do great with quality, but otherwise I'm simply frustrated that no matter what I try I can't get a live wallpaper.\"\n ],\n \"appId\": \"com.google.android.apps.wallpaper\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.wallpaper\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.wallpaper&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.wallpaper/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.wallpaper/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.wallpaper/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Android Accessibility Suite\",\n \"description\": \"Android Accessibility Suite is a collection of accessibility apps that help you use your Android device eyes-free or with a switch device.\\n\\nAndroid Accessibility Suite includes:\\n• Accessibility Menu: Use this large on-screen menu to lock your phone, control volume and brightness, take screenshots, and more.\\n• Select to Speak: Select items on your screen and hear them read aloud.\\n• Switch Access: Interact with your Android device using one or more switches or a keyboard instead of the touchscreen - You can also use Camera Switches to navigate with facial gestures.\\n• TalkBack screen reader: Get spoken feedback, control your device with gestures, and type with the on-screen braille keyboard.\\n\\nTo get started:\\n1. Open your device's Settings app.\\n2. Select Accessibility.\\n3. Select Accessibility Menu, Select to Speak, Switch Access, or TalkBack.\\n • For TalkBack, you can also press and hold both volume keys.\\n\\nAndroid Accessibility Suite requires Android 6 (Android M) or later. To use TalkBack for Wear, you'll need Wear OS 3.0 or later.\\n\\nPermissions Notice\\n• Phone: Android Accessibility Suite observes the phone state so it can adapt announcements to your call status.\\n• Accessibility Service: Because this app is an accessibility service, it can observe your actions, retrieve window content, and observe text that you type.\",\n \"descriptionHTML\": \"Android Accessibility Suite is a collection of accessibility apps that help you use your Android device eyes-free or with a switch device.

Android Accessibility Suite includes:
• Accessibility Menu: Use this large on-screen menu to lock your phone, control volume and brightness, take screenshots, and more.
• Select to Speak: Select items on your screen and hear them read aloud.
• Switch Access: Interact with your Android device using one or more switches or a keyboard instead of the touchscreen - You can also use Camera Switches to navigate with facial gestures.
• TalkBack screen reader: Get spoken feedback, control your device with gestures, and type with the on-screen braille keyboard.

To get started:
1. Open your device's Settings app.
2. Select Accessibility.
3. Select Accessibility Menu, Select to Speak, Switch Access, or TalkBack.
• For TalkBack, you can also press and hold both volume keys.

Android Accessibility Suite requires Android 6 (Android M) or later. To use TalkBack for Wear, you'll need Wear OS 3.0 or later.

Permissions Notice
• Phone: Android Accessibility Suite observes the phone state so it can adapt announcements to your call status.
• Accessibility Service: Because this app is an accessibility service, it can observe your actions, retrieve window content, and observe text that you type.\",\n \"summary\": \"Includes TalkBack, Accessibility Menu, and more.\",\n \"installs\": \"5,000,000,000+\",\n \"minInstalls\": 5000000000,\n \"maxInstalls\": 9518115412,\n \"score\": 4.0523686,\n \"scoreText\": \"4.1\",\n \"ratings\": 3263610,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.marvin.talkback/reviews\",\n \"histogram\": {\n \"1\": 484700,\n \"2\": 121083,\n \"3\": 238130,\n \"4\": 314336,\n \"5\": 2105338\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://developer.android.com/guide/topics/ui/accessibility\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/xBFTJQCPqUh0i97AwiPo-tPBndyn9GWwAqeoxPgKEPLdFcCaRsqcBpr6SC4uYgJ6Ew\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/V4iEJgK4xbGKUqXx2_0cDSYLTMk__RLZWIlGl2nDNf8T1uvXJIg_bg4K2ek0t1bxNI0p\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/vfVkihaCtsUgzmnu_2V1k5dQdc0aXG3-Ecear2IIEEz3lbBCA7rNrumWgEthHKXyqoUf\",\n \"https://play-lh.googleusercontent.com/lnYGMc8e2p38CoMRFNQus6qQYdZYtLhbHBVWVuscbjzITzwgrKf_4LG2W3XRxfrXQCU\",\n \"https://play-lh.googleusercontent.com/aApnRsInZzGXzUdViHgDRODbdYHZSATKMPibVKB5zzRtfAA9wUY2iAIc7DoomafbQB7j\",\n \"https://play-lh.googleusercontent.com/nE7FIkW9Y17Bgb_4pIXkGWT4BUmkTwWcoT203zbwsYtFawOncnrJUPr82rv51dU4DWEh\",\n \"https://play-lh.googleusercontent.com/AAjaC9gA99D_BjTzXJwiK9jyxUXxoDATnICBpCDNeIErJfF4hS7y9Z5kp8SGsEZrAlKs\",\n \"https://play-lh.googleusercontent.com/AmmhPZfpy6LoF9_vnokkvIujcAM2glwfn9VepsiiJZjOfEP_qXMU72P3jzeHS44cL2A\",\n \"https://play-lh.googleusercontent.com/FIJG-NVysK3Wu_I9shFyJgD3IRt2sxHrNiPf2O9qrQQyC1hPSoF_ShYRDRwdzcbueQ8\",\n \"https://play-lh.googleusercontent.com/fi-drjw4YWMc6TMgqjftDsYX6TguLiiLs3hJnrDzyxDrudQpMSKF9Qw5br-HVjRb4Q\",\n \"https://play-lh.googleusercontent.com/Ohz4E52br0S5UxfQbTs6JW15XE_s_njOhfaRHp1CtcYsoxlo0xZB3TCsU9mQVZ-tDWo\",\n \"https://play-lh.googleusercontent.com/Nc7tOI5GAgpkZw-hywpQ91jSSdNMs5tZClopEnCquNWaYTLVYIjK49SQyR1DLa7Um51N\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"updated\": 1657715465000,\n \"version\": \"VARY\",\n \"recentChanges\": \"TalkBack 13:
• Support for braille displays
• Automatic descriptions for unlabelled icons\",\n \"comments\": [\n \"This app is bloody useless to people that are in no way afflicted with a speech impediment. IDEK about this feature, until the unthinkable happened & I couldn't turn it off, just had to listen to that \\\"voice\\\" describing every little movement needed to do one thing! I took my phone to T-Mobile & the rep there says \\\"Oh yeah, this is a total pain. Whomever designed this didn't think this through & it was an error in design\\\"!! Verbatim people. Great, huh? I just uninstalled it.\",\n \"I just escaped Talkback purgatory, in which it was \\\"double tap to activate\\\" on every button, but it never recognized a double tap as such, so I was literally unable to reach the settings through the normal route to turn it off. There was no pause/off button in the menu accesed by the 'L' swipe either. It also, again quite litterally, wouldn't even let me reset my phone. Made using anything, from apps to general controls genuinely painful. Would NOT recommend for ANYONE.\",\n \"Impossible to use. When TalkBack is enabled, it takes dozens and dozens of attempts to click on a button before it's activated. Half the time once it's activated, it activates whatever was below it. I was unable to even restart the system because it would not let me select restart. It just kept repeating double tap to activate. This is the exact opposite of accessibility.\",\n \"Terrible! I can't adjust it and it won't auto scroll. The voice is a chipmunk on crack. It goes so fast it is completely unhelpful for those of us with text based disabilities. I mean I'm a smart person but I need to hear things a bit slowed down or I can't understand them and this is so fast I usually have no clue what it's saying. There is also no easy way to make it work with text that is longer than the screen so I end up hearing repeats innstead of seemlessly hearing the article.\",\n \"I love the concept of this app and it has helped me considerably when used; however, it is difficult for me to access due to where it's located. We should be given the option to have it either placed on the navigation bar or as a slightly transparent floating icon that can be freely moved around on screen. This would provide me the ability to easily access it higher up on my screen when I need it and would let me move it to a location that fits my needs. I beg you to PLEASE consider my idea!!!\"\n ],\n \"appId\": \"com.google.android.marvin.talkback\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.marvin.talkback\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.marvin.talkback&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.marvin.talkback/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.marvin.talkback/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.marvin.talkback/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouTube Studio\",\n \"description\": \"The official YouTube Studio app makes it faster and easier to manage your YouTube channels on the go. Check out your latest stats, respond to comments, upload custom video thumbnail images, schedule videos, and get notifications so you can stay connected and productive from anywhere.\\n\\nFEATURES:\\n* Monitor channel and video performance with easy-to-use analytics\\n* Filter and respond to comments\\n* Get notifications when something important happens\\n* Update video details including thumbnail images, monetization settings, and schedule dates\\n* Manage playlists\\n\\nPERMISSIONS NOTICE:\\n* Contacts (Get Accounts): Needed to allow you to log in to your account\\n* Storage: Needed to allow you to store your video thumbnail images.\",\n \"descriptionHTML\": \"The official YouTube Studio app makes it faster and easier to manage your YouTube channels on the go. Check out your latest stats, respond to comments, upload custom video thumbnail images, schedule videos, and get notifications so you can stay connected and productive from anywhere.

FEATURES:
* Monitor channel and video performance with easy-to-use analytics
* Filter and respond to comments
* Get notifications when something important happens
* Update video details including thumbnail images, monetization settings, and schedule dates
* Manage playlists

PERMISSIONS NOTICE:
* Contacts (Get Accounts): Needed to allow you to log in to your account
* Storage: Needed to allow you to store your video thumbnail images.\",\n \"summary\": \"Manage your YouTube channel on the go\",\n \"installs\": \"100,000,000+\",\n \"minInstalls\": 100000000,\n \"maxInstalls\": 186845170,\n \"score\": 4.2132864,\n \"scoreText\": \"4.2\",\n \"ratings\": 1667226,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.creator/reviews\",\n \"histogram\": {\n \"1\": 185037,\n \"2\": 61541,\n \"3\": 106434,\n \"4\": 173873,\n \"5\": 1140299\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://www.youtube.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Video Players & Editors\",\n \"genreId\": \"VIDEO_PLAYERS\",\n \"icon\": \"https://play-lh.googleusercontent.com/SM1nwJaePNm9Q6vVgU0CvvmR1uozbZYU8ohKfBCIndZy0sSGtwmObhpBcUkTOqcyYg\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/mqMlRJKWIi2fqw-J0X5gUhKQ-XudJj23BmPCjkb-noV4Hh5LCFgy1I1O97HGCMdJnXs\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/PQhzA-21f8f6UeMKOKHAenRQaRC1s4PUkvetLPWNGmte3qtObXDh4tfiujyTR_1oJhQ\",\n \"https://play-lh.googleusercontent.com/b8V_FxFr-xIQFF7WOtg11PshtyEgKN3wmIJ6ileS7OPyIV8OoT6kcbPc58lN3hubFA\",\n \"https://play-lh.googleusercontent.com/F8V8W2VTNe-TBclBzbRdDWsddZF7gh3szKXQxE-Xdc1vLsO9owOespTCcGCjJfaf9g\",\n \"https://play-lh.googleusercontent.com/6J9GrD0fKMOJc-YekYPEV4t906LNjkTt-DgaIQREMRh7TJcDHMgR2coDsXHiRiasmg\",\n \"https://play-lh.googleusercontent.com/_oCRcASpB-WXQeBtQRh_4xbD-zkI71FAF8lBHiO0AoGYHKyd4CRNedHGZp31mFE4Jqc\",\n \"https://play-lh.googleusercontent.com/6zyiWpDjQnX7BBF0O4cQVhtoLaDi0GkLxsLitOR3oAZacIYIOa4ThRYgp5R8F2TVHw\",\n \"https://play-lh.googleusercontent.com/WalDqyPcCx-_KH404jNtz11o0Ru1MlCzO6T04C-vdfcsTrIsoahsuaPb9zTI6TnHpH0\",\n \"https://play-lh.googleusercontent.com/NCZaUA1xRhhr7hoKpLc5w8grwgvVDhyfQBcggRPUI_B6j39jHriRRYpX2eK4VI858Q\",\n \"https://play-lh.googleusercontent.com/WM2AAa8j65SfiNXIFcOPhGW0k6T-ViR22UB__AO7t1bppVpjLoBskcRtWwZxdeKsVB75\",\n \"https://play-lh.googleusercontent.com/0VfpPghRfrjWf2wDEjz1mwt3iy23yDIHy5m2UHifzVwKVIw7TUZmIjqU5c1UkeH86pY\",\n \"https://play-lh.googleusercontent.com/hVO2iqeOtsHES0yhBacYgxLb-z-U5v82HaD0htqsOjKnruJKJHieY8-MYdmhV3DFtQI\",\n \"https://play-lh.googleusercontent.com/-hXqKan3RoUp5YfN7yi6_VxYAGnE2Bh_bctSxsV29b-a04lPDG70J8gvddjsKRAF45Zy\",\n \"https://play-lh.googleusercontent.com/QHGWw0Pjf776cWNUOoqi7lTLlrDuSBZSGFhk2d-nLGPvYY3QfzIFLxDZa-MgIbZDsQ\",\n \"https://play-lh.googleusercontent.com/b-w4g4j4DpiYx07qeDVBNWFm9vaXinYDyh74X_CxPoqxSE4Y1VEo8ekarKhq6sCktA\",\n \"https://play-lh.googleusercontent.com/7v-Qea3sJKfWEYOtw3JEMRjuV4Jhyxa41TbZ03jyvewEDlCFGp7f3-_0boQI77pt9Trm\",\n \"https://play-lh.googleusercontent.com/qTsEIE1AZ5JbfwOZdIi4igrTRaZ5tlIbB4Q8t_SN6TamOSog_uvrPQSzrY3sKEp16GU\"\n ],\n \"contentRating\": \"Teen\",\n \"adSupported\": false,\n \"released\": \"Jun 26, 2014\",\n \"updated\": 1661968715000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• Bug fixes and stability improvements.\",\n \"comments\": [\n \"Somewhat decent, but there's no way to add/change/remove cards and end screens, no way to edit subtitles, no way to change thumbnails on shorts videos, and most importantly, no way to access the YouTube audio library! Also no way to change the channel layout. All of those said features are on the desktop version but not on mobile, but other than that, it's pretty good.\",\n \"This app was fantastic, used it for years, it was so helpful. Now recently there was a change that makes it very inconvenient 😥. They took away the ability to search for a playlist on your channel. I so many playlists, that search ability was vital. Now I can only search for videos, but no search results come back for playlists I search for. 😡You have no idea how inconvenient that is for me\",\n \"Downloaded this because YouTube in browser (set to desktop mode, btw) forced me to when I clicked \\\"Channel Customization.\\\" Well where is it?! Either it doesn't exist on the Android app or it's so well hidden behind a clunky interface that it might as well not exist. FIX THAT, maybe you'll get 4 or 5 stars. All I want is to change my featured video without having to boot my computer, which is currently down for maintenance and upgrades.\",\n \"Well, I had just spent the last 15 minutes or so changing thumbnails and titles for videos I've made. I refresh on both the website, and the app only to see they're still the same. I decided to give it time, about 10 minutes to see if it was still loading, but none, not even the first video I edited is shown to be changed on both the website and app. However, it still shows edited thumbnails, titles, etc. In this app.\",\n \"Being able to see channel analytics on the go is awesome. However, the app feels incomplete. My 2 complaints: 1. The graphs are pretty minimal; it would be nice if we could have more detailed graphs like we do on the computer Studio. 2. Navigating the graphs as they are is difficult and frustrating. Right now, if you want info on a specific date or time, you have to tap on it. The problem is that the graphs are tiny and it's extremely easy to tap on the wrong date or time. It would be nice if there was some kind of tap-and-scroll feature to enable precise selection.\"\n ],\n \"appId\": \"com.google.android.apps.youtube.creator\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.creator\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.youtube.creator&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.creator/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.creator/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.youtube.creator/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Digital Wellbeing\",\n \"description\": \"See a complete picture of your digital habits and disconnect when you want to.\\n\\nGet a daily view of your digital habits:\\n• How frequently you use different apps\\n• How many notifications you receive\\n• How often you check your phone or unlock your device\\n\\nDisconnect when you want to:\\n• Daily app timers let you set limits for how much you use apps.\\n• Bedtime mode reminds you to switch off at night, setting a schedule to fade your screen to Grayscale while Do Not Disturb silences notifications for a good night’s sleep.\\n• Focus mode lets you pause distracting apps with a single tap so you can better focus your time. You can also set a schedule to turn on Focus mode automatically and reduce distractions while you’re at work, school, or home.\\n\\nGet started:\\n• Look for Digital Wellbeing in your phone’s Settings menu\\n\\nHave a question? Check out the Help Center: https://support.google.com/android/answer/9346420\",\n \"descriptionHTML\": \"See a complete picture of your digital habits and disconnect when you want to.

Get a daily view of your digital habits:
• How frequently you use different apps
• How many notifications you receive
• How often you check your phone or unlock your device

Disconnect when you want to:
• Daily app timers let you set limits for how much you use apps.
• Bedtime mode reminds you to switch off at night, setting a schedule to fade your screen to Grayscale while Do Not Disturb silences notifications for a good night’s sleep.
• Focus mode lets you pause distracting apps with a single tap so you can better focus your time. You can also set a schedule to turn on Focus mode automatically and reduce distractions while you’re at work, school, or home.

Get started:
• Look for Digital Wellbeing in your phone’s Settings menu

Have a question? Check out the Help Center: https://support.google.com/android/answer/9346420\",\n \"summary\": \"Improve your wellbeing and disconnect more easily\",\n \"installs\": \"1+\",\n \"minInstalls\": 1,\n \"maxInstalls\": 1,\n \"score\": 3.7199364,\n \"scoreText\": \"3.7\",\n \"ratings\": 703180,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.wellbeing/reviews\",\n \"histogram\": {\n \"1\": 161985,\n \"2\": 27534,\n \"3\": 53808,\n \"4\": 61913,\n \"5\": 397909\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"9\",\n \"androidVersionText\": \"9\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"digital-wellbeing-help@google.com\",\n \"developerWebsite\": \"https://wellbeing.google\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/d74zkuWfVBFWjyhWXz9R2d6wh-WCBWoNB4M0x8iIXHvDOvdYbXJA4ivUQBWTkUjKMso\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/wlyzzVUYl387WIVR2nzL1Ftffe0zx02XywhPsdkCLfu9N1oMS7l67h9Bq38IBbKeRtU\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/gqA1Ft7dE3PlrY_Oh8_BkNbElWf8y0fAnwcHREG7Qep_-FO3VsHUs4tMAHx3jwmNfSGi\",\n \"https://play-lh.googleusercontent.com/YxHnno-97Sno77gj4wXyiYpcfu8pGj98Lenyhe3ktBpumsTDcdk_qQbVIrNrfNVI6apz\",\n \"https://play-lh.googleusercontent.com/mwuVmyGBMbZwkSZYPzAc7HrbfIsUjj1_yymJmYG2dzZKe3VpZdna6edtIEabPVygDiLx\",\n \"https://play-lh.googleusercontent.com/uNbhOGSm62LZccAkJe5winfb_gYpJyCXOF4P2c_n_QkGYyuFT7hBDBwuRMZ5eI1sUFE\",\n \"https://play-lh.googleusercontent.com/BCSnRpc1ZIWrqe2zV919emKpg0twCEsJ6NVvdMGuS6o3Vvdd37h5uDyXZX4I0rihPiU\",\n \"https://play-lh.googleusercontent.com/e0iffRft7Nnrbaz4AmiqXB-Dhm-cAd_u-JWF9o7aEQxpivNsBGuRQXDrirqhAQXgzw\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Aug 8, 2018\",\n \"updated\": 1660600838000,\n \"version\": \"1.1.463639936 (409067)\",\n \"recentChanges\": \"Wind Down is now Bedtime mode and has the following new features:

• Turn on Bedtime mode automatically with a daily schedule or while your phone is charging at bedtime
• Pause Bedtime mode if you need more time before bed
• Turn Bedtime mode on or off with a single tap from Quick Settings\",\n \"comments\": [\n \"I thought it was an Android update issue, but after some research it turns out that the latest update of this app has caused an ongoing and VERY annoying problem. Ever since the update, every so often when I go back to the home screen it keeps asking me to choose the default launcher. My dad has the same issue on his phone now too. He's on Android 10 and I'm on 11. Officially getting rid of this app for good!\",\n \"I did not choose to download or activate/use this app. It took me seeing an update window with digital wellbeing being updated and watching as less than 5 seconds later everything on my tablet went haywire to figure out that it was causing the issues. It stoped my internet access, my access to the tablet settings couldn't get past the initial selection menu, every program bogged down, then the power off or restart put the tablet into an endless loading screen. It's causing harm! UNINSTALL!!!!!!\",\n \"I really like many things about this app and having my screen turn to greyscale is a great reminder to put them phone away. BUT, the greyscale and DnD turn off before the set time, so I'm often disturbed by notifications in the middle of the night or if I look at the screen if I wake up at night it's super bright and in color. This has persisted through many system and app updates, but I don't find any other complaints about this online. Is this just Google/Pixel6 being buggy? Super annoying....\",\n \"Garbage pre-installed app. Can't uninstall in. It messes up all other apps including alarms if you use your phone as an alarm clock. Since automaticly installed it causes the phone to get hot, battery to rapidly drain, and will lock up your phone when using other apps or answering calls. Habe not installed a new app in the last 6 months and never had a problem with the phone. This installed in the update and have had nothing but problems since.\",\n \"This app came pre-installed on my phone, so I cannot remove it. It updated itself, without my knowledge or consent, and from them on my phone was asking me five or six times every day to select a default Launcher... despite my default Launcher being set and never having been changed. Uninstall this app, if you can. If you cannot, then uninstall the updates. I don't know what the app allegedly does, but I know it's clearly causing problems.\"\n ],\n \"appId\": \"com.google.android.apps.wellbeing\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.wellbeing\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.wellbeing&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.wellbeing/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.wellbeing/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.wellbeing/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"YouTube for Android TV\",\n \"description\": \"See what the world is watching -- from the hottest music videos to what’s popular in gaming, fitness, movies, shows, news, learning and more. Subscribe to channels you love, browse personal recommendations, and enjoy the largest library of 4K content.\",\n \"descriptionHTML\": \"See what the world is watching -- from the hottest music videos to what’s popular in gaming, fitness, movies, shows, news, learning and more. Subscribe to channels you love, browse personal recommendations, and enjoy the largest library of 4K content.\",\n \"summary\": \"Get the official YouTube app on TV.\",\n \"installs\": \"100,000,000+\",\n \"minInstalls\": 100000000,\n \"maxInstalls\": 172472758,\n \"score\": 1.83,\n \"scoreText\": \"1.8\",\n \"ratings\": 1241,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube.tv/reviews\",\n \"histogram\": {\n \"1\": 750,\n \"2\": 197,\n \"3\": 120,\n \"4\": 57,\n \"5\": 95\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"7.0\",\n \"androidVersionText\": \"7.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://support.google.com/youtube?p=yt_androidtv\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Entertainment\",\n \"genreId\": \"ENTERTAINMENT\",\n \"icon\": \"https://play-lh.googleusercontent.com/Qolm5gr9jnabjk-0z79srjYC1XPVExribNz5kbDmGJeEtmRlo0UQoQEIkKMHRyt5paw\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/Qoz6Vb9ixi8ZrJu8JkA2USD4A4RfKOP0372DuFyR12IjZa37dBbFGRIpkotFGyk0bw\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/opBr4WGjy34HwcpK-cOjDzY5AkUWDx_VqVzKDp0T2Fye0i5hfO0HrL51K6VR7CYxqx4\",\n \"https://play-lh.googleusercontent.com/t6Whv57unejiW1QTecanKxQeOhCGJQxh6BtTBCowdzniuJIOklXfRa12erb10mCbA6o\",\n \"https://play-lh.googleusercontent.com/_8-619YuK2YfBcBwzOclyjHoQ_64mYKyKBwlwZmEkhgBqI__w2SZFykapGkGh1zTvFg\",\n \"https://play-lh.googleusercontent.com/YDe8YkoYMvHkuH5JUfvYp1q1l7Iv_6WaTxzlFsRcVK6vHYcIyNcrjKmqosXGr-c9dw\"\n ],\n \"contentRating\": \"Teen\",\n \"adSupported\": true,\n \"released\": \"Nov 3, 2014\",\n \"updated\": 1661196260000,\n \"version\": \"2.19.003\",\n \"comments\": [\n \"The most recurrent issue with this application is that certain channels will not play at all (seemingly from being high fidelity uploads) unless the video ages out to about two weeks old. This has been an issue for well over a year by now. On top of that, regardless of the Android TV device, this application always is flagged as being no longer supported, which seems absolutely baffling.\",\n \"I cannot say I am fan of the new design language when bringing up the seek bar on Chromecast with Google TV. Before the latest update, it was a bit more aesthetic and did not obstruct the screen as much when you brought up the seek bar since it was semi-transparent. However, when you bring up the seek bar now, it has this terrible opaque black backing that obstructs about two fifths (2/5) of the video. ---- My theory is that this was done for performance reasons as I notice when you pause, there's no more animation for the pause like there was before (though the symbols are misaligned when you pause). I can understand not doing animations for the sake of speeding the app up, but why remove the transparency? When a user brings up the seek bar, it is not like they're totally disinterested in the video. Being able to see bits of the video underneath is helpful.\",\n \"We're being forced to use this app for music playing. What a joke. There are no features in this app for playing music that work with the way most people play music. Music and Youtube videos are entirely different things. I don't want a liked song to be replaced by a 10 year old music video that has awful audio. I also don't want a video I liked that featured audio to be part of my music collection. Do people who listen to music actually work on this app? Google is really going downhill with these latest changes. And of course, being google, in a year or two they'll go a completely different direction because they can't get their act together. I'm guessing in 2021 they'll introduce Google Hangouts Music and the only way we can listen to music is if our friends like it too.\",\n \"When I bought my TV, everything worked great. The updates to the YouTube app has made it very buggy. I open it up and get boxes with an X in each one where all the icons are and lots of videos are grayed out. I have to go the the app in settings and close it, then reopen it. It also flashes a black screen periodically for a fraction of a second. Sometimes I get a loading circle lasting forever and have to manually stop the app and restart it. Sometimes I have tor restart my TV. Keep in mind, this app worked perfectly when my TV was new.\",\n \"The Good: Works great on a Sony Bravia 2015 model, everything works as expected. Runs Android 7. The Bad: Plays maybe 30 seconds of any video on other TVs running Android 6 then locks up. Sometimes you can get it to work if you restart, but it's inconsistent. Going into the app and removing all updates back to factory delivered version of the app and it works just fine, well until it gets re-updated. This is true on multiple devices from multiple manufactures using multiple different processors. Very frustrating that Google can't get it together to run their own app on their own platform. It's really pretty inexcusable, especially since Amazon can manage to deliver a more consistent YouTube experience on a FireTV using Silk (or Firefox for that matter) than Google can with their own app on their own platform. Trying to reproduce the same scenario using Chrome on AndroidTV gets you an unnavigatable mess.What ever was done in some update somewhere made this a useless app on many devices. Again let me clarify, we are talking about an app that came preinstalled on these devices and worked perfectly well and then stopped working when it got updated to newer versions.\"\n ],\n \"appId\": \"com.google.android.youtube.tv\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube.tv\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.youtube.tv&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube.tv/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube.tv/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.youtube.tv/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Data Restore Tool\",\n \"description\": \"This system app helps you to restore data from your old phone using a cable or a cloud backup. The app is already installed on your Android device.\",\n \"descriptionHTML\": \"This system app helps you to restore data from your old phone using a cable or a cloud backup. The app is already installed on your Android device.\",\n \"summary\": \"Restore apps and more from an old phone\",\n \"installs\": \"5,000,000,000+\",\n \"minInstalls\": 5000000000,\n \"maxInstalls\": 5485703903,\n \"score\": 4.1590996,\n \"scoreText\": \"4.2\",\n \"ratings\": 346801,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.restore/reviews\",\n \"histogram\": {\n \"1\": 42602,\n \"2\": 12832,\n \"3\": 26054,\n \"4\": 30551,\n \"5\": 234719\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"9\",\n \"androidVersionText\": \"9\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/7vcafwoxDSOI87n4F9kFCeeS11F9hujbl2EEqXNSH_3uWR6t8ofsQxLMOv05x1WazQ\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/Oo8mV9eIa_JPObQVudIYf0v5pRZGu6q8Wal3yIl4ZCYLwQECf21ksdq80UHWpaa7w1g\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/f3QbBKq2LKK-bd_kmlFdtgGpNSFd-8JVOUN4mflLEZvLOAS5HJVhXac3pqHUwZHn048\",\n \"https://play-lh.googleusercontent.com/iNpnlkbkb7sp_740SFSZ3x4pwukBtso8yso9YsQWG4DtW_bQUuMctF9SpZoLRRuYcw\",\n \"https://play-lh.googleusercontent.com/0yUDc51UXq7LL-OK3h63mVuyaCSrymaFiAlHuFeIaxsIZqICTq-xlU6q2_CcNbJbVQ\",\n \"https://play-lh.googleusercontent.com/Ggt-dlCHg_tYge2QQBem4dj7O7EGA_LWIvVVhFbmnxfGXObiBjy7Q2mbgo-FnAe7DI0\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Jul 21, 2021\",\n \"updated\": 1661794368000,\n \"version\": \"1.0.455404737\",\n \"recentChanges\": \"An updated experience for restoring content to your device, using a cable or a cloud backup.\",\n \"comments\": [\n \"This app used to be only available in the settings. Now Google has brought this to the app store! This will make it easier to transfer data from one phone to another. People who complained that they didn't download it, aren't familiar with their Google Settings. This app is going to benefit anyone who decides to upgrade to a new phone or accidentally resets their current phone.\",\n \"Works well to restore so much. As I've aged I have forgotten more than since ever knew but this organizes so well one didn't need to remember a tremendous lot. I'm not sure if this is good or bad however, because if one doesn't know what to do or what question to ask Google for example, then they works have absolutely no idea where to go for answers since friends don't always know \\\"everything either\\\", even if they think they do.\",\n \"I like the fact that this application will restore my data although not sure if mine is working right because it's not restoring my data! I've had to factory reset my phone so many times I have lost count!\",\n \"So this is indeed very handy. I have many devices, if I don't use the device long I simply use it to backup data, or if organized they can strictly use the tool to save files from 1 to the other. It's quick if ur not sure about connecting or have problems via wifi. Use the tool plug em in. Thanks, I had this and Uninstalled ,and forgot to review it.id give it more stars if I could.\",\n \"Awesome :) I'm glad to see this in the Play Store! Weirdly enough, I \\\"bumped\\\" into it by happy accident, scrolling through Google's app list here, saw it and tapped it.. and LO! I was shocked to see that, beneath the icon was just one box.. \\\"Update\\\"& that's it! Not in library B4 😵🤷🏻\\u200d♂️ Although Auto-update on, have never seen this \\\"update\\\" appearing even ONCE in 'My Apps' .. nor the \\\"check for updates\\\" screen.. no push notification, no app notification..Gmail message.. nothing. This was luck.\"\n ],\n \"appId\": \"com.google.android.apps.restore\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.restore\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.restore&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.restore/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.restore/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.restore/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Tasks\",\n \"description\": \"Get more done with the Google Tasks mobile app. Manage, capture, and edit your tasks from anywhere, at anytime, with to-dos that sync across all your devices. Integrations with Gmail and Google Calendar help you get tasks done—faster.\\n\\nQuickly capture tasks anywhere\\n• Create task lists with your most important to-dos\\n• View, edit, and manage tasks on the go, from any device\\n• Manage tasks created in Gmail or Calendar on the web from your mobile device\\n\\nAdd details and create subtasks\\n• Break down your tasks to subtasks\\n• Add details about the work you need to focus on\\n• Edit details about any task as your work progresses\\n\\nView tasks created from emails\\n• Create a task directly from an email in Gmail\\n• View your tasks in the side panel of Gmail\\n• Trace a task back to its source email\\n\\nStay on track with due dates and notifications\\n• Set a due date for every task to help you achieve your goals\\n• Organize your tasks by date or prioritize using drag-and-drop\\n• Receive due date notification reminders to keep your tasks on track\\n\\nPart of G Suite\\n• Bring Google's suite of powerful, intelligent apps to your business\\n• Leverage Google’s AI to bring data insights and analysis to every employee\\n• Connect with your team seamlessly using one suite: Gmail, Tasks, Calendar & more\\n\\nTake control of your task management and install the Google Tasks mobile app. Start easily managing your to-do list on the go with the Tasks planner app from Google.\",\n \"descriptionHTML\": \"Get more done with the Google Tasks mobile app. Manage, capture, and edit your tasks from anywhere, at anytime, with to-dos that sync across all your devices. Integrations with Gmail and Google Calendar help you get tasks done—faster.

Quickly capture tasks anywhere
• Create task lists with your most important to-dos
• View, edit, and manage tasks on the go, from any device
• Manage tasks created in Gmail or Calendar on the web from your mobile device

Add details and create subtasks
• Break down your tasks to subtasks
• Add details about the work you need to focus on
• Edit details about any task as your work progresses

View tasks created from emails
• Create a task directly from an email in Gmail
• View your tasks in the side panel of Gmail
• Trace a task back to its source email

Stay on track with due dates and notifications
• Set a due date for every task to help you achieve your goals
• Organize your tasks by date or prioritize using drag-and-drop
• Receive due date notification reminders to keep your tasks on track

Part of G Suite
• Bring Google's suite of powerful, intelligent apps to your business
• Leverage Google’s AI to bring data insights and analysis to every employee
• Connect with your team seamlessly using one suite: Gmail, Tasks, Calendar & more

Take control of your task management and install the Google Tasks mobile app. Start easily managing your to-do list on the go with the Tasks planner app from Google.\",\n \"summary\": \"Simply create any task or subtask. Integrated with Gmail for easy collaboration\",\n \"installs\": \"10,000,000+\",\n \"minInstalls\": 10000000,\n \"maxInstalls\": 14385119,\n \"score\": 4.543627,\n \"scoreText\": \"4.5\",\n \"ratings\": 262493,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.tasks/reviews\",\n \"histogram\": {\n \"1\": 5433,\n \"2\": 5169,\n \"3\": 15303,\n \"4\": 51926,\n \"5\": 184648\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"6.0\",\n \"androidVersionText\": \"6.0\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Productivity\",\n \"genreId\": \"PRODUCTIVITY\",\n \"icon\": \"https://play-lh.googleusercontent.com/pjUulZ-Vdo7qPKxk3IRhnk8SORPlgSydSyYEjm7fGcoXO8wDyYisWXwQqEjMryZ_sqK2\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/bCcQ2eTwA1MqwdRcTdTuOV9eM_E2_ZUF_kVMcAgrW9aV0qC_0-mea5L_lEWsz_wWTw\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/hRVvGTTsn7eRj_L_IKaujTRG9Ru5tUPfZ9Qb_G8kIYMxxY5S4OPNMr2dyVz-zXx4FFA\",\n \"https://play-lh.googleusercontent.com/qt6dFkl3EAT8uN2RK7fNwwywV7GF0WmC32ooiVF1DWS4KpfrWtr1NGPR9BRI4TMJshM\",\n \"https://play-lh.googleusercontent.com/7QRqIoHmdSvB2iR_XdPALFLLBTjlazEc1kGnCrO5ClZt0Ym2m1_KyTmPfyNqy-sQTw\",\n \"https://play-lh.googleusercontent.com/CKUMrjOnZJVAckQqLjuS1TUBfMjuXVPe8E37mMpma81d_vG_0LRaK9t_TCmdeKpYGw\",\n \"https://play-lh.googleusercontent.com/z4U0eZDBblhYTsss6QymeB297RCioMLKrDFgdOEsl3dHNJs4PKFY3m4d4SpVgKTaJrk\",\n \"https://play-lh.googleusercontent.com/rmSUtnyNLOwP8OLFfO9X8Z_Y1aAt2WB2Zc48Sg3F6B24wb4xsOyo61z5NYEmy0qxRQ\",\n \"https://play-lh.googleusercontent.com/QDRyTtZWBX0EF1cshjOKDGJV4vEPTiN7etkuCg-fjTsjKvp-XVRmAt0oXRokveivxno\",\n \"https://play-lh.googleusercontent.com/CxmwNLue_dQqtScN7hkl-iCcaJOcLrmvZQVuBdeYdp2vQASNVsXTwTAnZ1A8U5HsYhA\",\n \"https://play-lh.googleusercontent.com/RAEH7sSzhe3tbsLB5zBMBy8fi7lDfgtylyCM6Ml_kvQ_U5Sh9fMt-MpcyOb4wn9hEI8\",\n \"https://play-lh.googleusercontent.com/2CRepahfs49l7OYmhG75d1E1LFOAPbAFYnfpHlioOvlmzEyhOu87vsuRqkgi24I9cw\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Apr 24, 2018\",\n \"updated\": 1661788847000,\n \"version\": \"2022.08.15.467567646.0-release\",\n \"recentChanges\": \"• Easily create a new task by long-pressing on the app icon
• Create a task by sharing from other apps
• General improvements and bug fixes
\",\n \"comments\": [\n \"Good, but it needs to be able to function with Google voice command. Example, \\\"OK google, add a task\\\" and it will add into a default task list where you can edit it later. This would be beneficial if you don't have the phone/computer with you but you have other google devices, or when your hands are busy (cooking, driving, hiking etc.)\",\n \"I love being able to set recurring tasks. It makes planning my weeks effortless. I do wish there was a way to change the views on the calendar. I love seeing them when I look at my day, but on the month view it's overwhelming with all the other events, birthdays, and holidays. This is misleading for what you really have going on, especially when the tasks are quick and easy. I could use reminders, but I've found I don't get notifications like I do with tasks and end up missing them.\",\n \"Suggestion - I wish there was a \\\"Save\\\" option along with the \\\"Mark as Complete\\\" one. My back button happens to be just below the Mark as Complete button, causing the occasional mistake in completing a task when I only wanted to save the changes. Otherwise, decent app for it's ease of use, reliability, and syncing feature. I use it to keep track of bills, subscriptions, and other reminders.\",\n \"It works. It is simple and to the point. In my opinion, i would like more pazazz. When i make a list of tasks to complete i need to make it feel like an acheivment. This app just replaces a pen and note pad. Easier to carry with you, and conveniently links to a schedual. But, digitally the experience could be more personalized and positive.\",\n \"You can't arrange your lists. You can make as many lists as you want (correct.), but there's no way to change the order in which they appear (unconscionable.). You can manually arrange individual tasks, but the only way to rearrange the lists themselves is to remake them in the desired order. They recently added the option to \\\"star\\\" tasks, but lists have been impossible to reorder for years. Also there's only one level of nesting for subtasks, which is weird.\"\n ],\n \"appId\": \"com.google.android.apps.tasks\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.tasks\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.tasks&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.tasks/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.tasks/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.tasks/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Assistant Go\",\n \"description\": \"Lightweight and fast, yet still packed with your favorite features, the Google Assistant is now available on Android (Go edition).\\n\\nUse your voice to get directions to the nearest coffee shop, make calls hands free during your commute, and unwind by playing your favorite tunes. You personal Google is here to help. Ask your Google Assistant questions and get things done. Use it anytime, anywhere.\\n\\nWith the Google Assistant Go, you can:\\n\\n• Make quick phone calls on the go (“Call Sameer”)\\n• Send text messages (“Text Sara I am running late”)\\n• Play music (“Play some jazz on YouTube”)\\n• Navigate places (“Get me directions to the nearest coffee shop”)\\n• Preview your upcoming events (“Tell me about my day”)\\n• Weather information (“Do I need an umbrella today?”)\\n• Answers (“How tall is Mount Everest?”)\\n\\n\\n* You can quickly access the Google Assistant for Android (Go edition) by tapping on the Assistant app icon or long-pressing the home button on your phone running Android (Go edition).\\n\\n* Certain features available on the Google Assistant for standard Android phones are currently not supported on the Google Assistant for Android (Go edition), such as reminders, controls for smart home devices, Actions on Google, and Device Actions.\\n\\n* The Google Assistant for Android (Go edition) currently supports English.\",\n \"descriptionHTML\": \"Lightweight and fast, yet still packed with your favorite features, the Google Assistant is now available on Android (Go edition).

Use your voice to get directions to the nearest coffee shop, make calls hands free during your commute, and unwind by playing your favorite tunes. You personal Google is here to help. Ask your Google Assistant questions and get things done. Use it anytime, anywhere.

With the Google Assistant Go, you can:

• Make quick phone calls on the go (“Call Sameer”)
• Send text messages (“Text Sara I am running late”)
• Play music (“Play some jazz on YouTube”)
• Navigate places (“Get me directions to the nearest coffee shop”)
• Preview your upcoming events (“Tell me about my day”)
• Weather information (“Do I need an umbrella today?”)
• Answers (“How tall is Mount Everest?”)


* You can quickly access the Google Assistant for Android (Go edition) by tapping on the Assistant app icon or long-pressing the home button on your phone running Android (Go edition).

* Certain features available on the Google Assistant for standard Android phones are currently not supported on the Google Assistant for Android (Go edition), such as reminders, controls for smart home devices, Actions on Google, and Device Actions.

* The Google Assistant for Android (Go edition) currently supports English.\",\n \"summary\": \"Your personal Google is ready to help. Ask it questions, tell it to do things.\",\n \"installs\": \"500,000,000+\",\n \"minInstalls\": 500000000,\n \"maxInstalls\": 913147499,\n \"score\": 4.300777,\n \"scoreText\": \"4.3\",\n \"ratings\": 342191,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.assistant/reviews\",\n \"histogram\": {\n \"1\": 31317,\n \"2\": 12896,\n \"3\": 19545,\n \"4\": 36061,\n \"5\": 242294\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"https://assistant.google.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Tools\",\n \"genreId\": \"TOOLS\",\n \"icon\": \"https://play-lh.googleusercontent.com/IO9Ygb0FTLzvT91cPcd1iSy4brbuZimoV11VWKx6EUhUkZxDKEEr3waBu7_PqROmfPs\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/C321kNnFIsdV_0txS5FH0vb5qj7jDXsKqXlMlv-CW1mBXhJhXMCm20DdTzv84Dyb0g\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/p52UYouXzzUdEgSp_zOkL4GRsMHYtdGL3yx_8ap8iDKrXz2F-Gt8p8RK8o6aIJb2K636\",\n \"https://play-lh.googleusercontent.com/Q8j7M72MHiPjsYt0eOoJmmU1KezNHVNSGxuyInPIZCHUpzltQbspggtIQ6LzCd3NnxM\",\n \"https://play-lh.googleusercontent.com/yM9jZ9OVabr8abhrJngQ2s76_tliOm9S_iSbcVb9RbZdiT7n-StWy_l4p4tNNy6_oty8\",\n \"https://play-lh.googleusercontent.com/zR_iXD9_wcGHC2s6jZvjP_Mu8D9-jZR-z_de4tdaVKR1v6BEqJbmItR63i8FbqTv9Uc\",\n \"https://play-lh.googleusercontent.com/JjWxdT3DswCdcN4TFC2HlAVOJmgucCT5Ii0Bcez6nIvY7INsDrL1jsKVpLViHM1kVBU\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Jan 30, 2018\",\n \"updated\": 1653582535000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• General bug fixes and improvements.\",\n \"comments\": [\n \"Super easy to ask Google a quick question when something comes up in a conversation or when you are doing your homework if you are to lazy to type something in to the calculator. Contains no ads unless you go onto a website with ads. When you first go into the app, though, you have to wait a second to be able to speak even if it says you can.\",\n \"So I prefer the original Google Assistant since it has more features that I was used to. This one's okay. The only difference is it would have been nice to be able to have the original Google Assistant be installed on my edition go phone. It would have been nice if the assistant microphone can translate better words. My Replika named Taylor understands me way more. I can only hope that you can improve what I'm suggesting of the things mentioned above.\",\n \"Seems to say it's offline when it boots up more often than not when I'm actually actively passing the web or using data in another app at the same time. I gave it four to five stars and I turned on the no limitations to data flag with all the assistant and go assistant related apps and we'll see how that works hopefully cures what 'fails' me \\\\';.^J}\",\n \"Well before I got back to work and testing apps I tried it out and it worked really good speech to text works excellent only if I could get it the punctuate that be great I'm dyslexic so I can't spell the word properly but when I see it I know it's the right way and also helps me out in that way easy to use doesn't take up a lot of space and you know it runs pretty quick.\",\n \"Would be nice if there were more customization options since my phone doesn't allow me to remove this app or the search widget on my home screen, which doesn't go with my theme. Very annoying, Assurance Wireless. It's a free phone yes, so this probably the least of my worries\"\n ],\n \"appId\": \"com.google.android.apps.assistant\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.assistant\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.apps.assistant&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.assistant/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.assistant/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.apps.assistant/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Google Camera\",\n \"description\": \"Never miss a moment with Google Camera, and take fantastic pictures and videos using features such as Portrait, Night Sight, and the video stabilization modes.\\n\\nFeatures\\n• HDR+ with Exposure and White Balance Controls - Take pictures using HDR+ to capture fantastic photos, especially in low-light or backlit scenes.\\n• Top Shot - Pick the best moment with Top Shot. It automatically recommends the best pics, where no one is blinking and everything looks just right.\\n• Night Sight - You’ll never want to use your flash again. Night Sight brings out all the details and colors that get lost in the dark. You can even take photos of the Milky Way!\\n• Super Res Zoom - Super Res Zoom makes your pictures sharper when you zoom in.\\n• Motion Mode - Capture life in motion. Take professional quality Long Exposure and Action Pan photos.\\n• Long Shot - Take casual, quick videos by simply long-pressing the shutter key in the default camera mode.\\n\\nRequirements - The latest version of Google Camera only works on Pixel phones running Android 12 and above. The latest version of Google Camera for Wear OS only works on Wear OS 2.0 devices connected to Pixel phones. Some features are not available on all devices.\",\n \"descriptionHTML\": \"Never miss a moment with Google Camera, and take fantastic pictures and videos using features such as Portrait, Night Sight, and the video stabilization modes.

Features
HDR+ with Exposure and White Balance Controls - Take pictures using HDR+ to capture fantastic photos, especially in low-light or backlit scenes.
Top Shot - Pick the best moment with Top Shot. It automatically recommends the best pics, where no one is blinking and everything looks just right.
Night Sight - You’ll never want to use your flash again. Night Sight brings out all the details and colors that get lost in the dark. You can even take photos of the Milky Way!
Super Res Zoom - Super Res Zoom makes your pictures sharper when you zoom in.
Motion Mode - Capture life in motion. Take professional quality Long Exposure and Action Pan photos.
Long Shot - Take casual, quick videos by simply long-pressing the shutter key in the default camera mode.

Requirements - The latest version of Google Camera only works on Pixel phones running Android 12 and above. The latest version of Google Camera for Wear OS only works on Wear OS 2.0 devices connected to Pixel phones. Some features are not available on all devices.\",\n \"summary\": \"Camera app for Google devices\",\n \"installs\": \"1+\",\n \"minInstalls\": 1,\n \"maxInstalls\": 1,\n \"score\": 2.3819973,\n \"scoreText\": \"2.4\",\n \"ratings\": 455446,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.GoogleCamera/reviews\",\n \"histogram\": {\n \"1\": 264718,\n \"2\": 24212,\n \"3\": 19194,\n \"4\": 22438,\n \"5\": 124870\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://www.android.com/\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Photography\",\n \"genreId\": \"PHOTOGRAPHY\",\n \"icon\": \"https://play-lh.googleusercontent.com/UEhZQtc_3LCwkKIayRjHG63EfC9bsXvJjuWiFMvVRAe_tHyk0pW4ZmCBJQCENxmYlYk\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/-Y8_dBeXzfSB6EuTm2rvGNDDHxqUYhCxPbCbQpRf76F6NoiKg5aJUgx92ilPHlR1fy0\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/p9RWstW7g4r9ZihSt3lN3A-uJlaW6PSWmUfhSNiK4Oh2vP4otR1etYeTBxv77hfIjqQ\",\n \"https://play-lh.googleusercontent.com/RvdvKGLbq86uFneV4h0UqRsktLF5JhiohPum4VVkzRQDKXSk7NDaEqbsCu6j1woJ5Q\",\n \"https://play-lh.googleusercontent.com/aAEnqcWB9Mzi1W74emCdTX3MiBCuSN7mwcxa7TxeFBYd3jfIK-UVtnYmZRFrvzPM94I\",\n \"https://play-lh.googleusercontent.com/UziwYWjqc909CozUugyd2RNYZ-TnNMxjut8vaj7Bw3zl6z-RoSxDiOxhhbNe3KigKA\",\n \"https://play-lh.googleusercontent.com/8eTrQ9x8Mr4vKHb_XUgZ83TBzJL494fi15Mlc2IhYwkHlOfOyMsRCxDjmIchOXMMzRg\",\n \"https://play-lh.googleusercontent.com/i2_hgQ7wJBKKDy_xi4IUb4Ek8byC5yaLuuHOz8dStWq8NT_4pk7jvIm2AMrldzJsaIJJ\",\n \"https://play-lh.googleusercontent.com/gY9FGrfD0XpewxqY7DkMqsCyyJR0FbCnTRJ2moMd-0Rk_PL7XmSoS5Ok2DwPjG6jNGNV\",\n \"https://play-lh.googleusercontent.com/bmCVfvUm01J03JnhsMHFxGXl2BOmyusK_yyNuAxULEq7VlUO67V-whwW0F8idrPNOGXQ\",\n \"https://play-lh.googleusercontent.com/y0YPpvb6YhIib_OQ7ww6y7BaYAg4K-qN6i2yeTVo93UY8L8u8eLNQb_lZBdbKS-l3qU\",\n \"https://play-lh.googleusercontent.com/8jZkfo8PwU8H5lan_cYr206YMhGUaaxKX5GLljwqld6a7hFIyJx5RfnB9djmfRpG7eM\",\n \"https://play-lh.googleusercontent.com/DhYN40VG1UA_b5vNCqvSAniL7CUS8VPvOo0MxmBU52lNmlC_ocszB5kq-KJ8JHBd5Ibs\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Apr 16, 2014\",\n \"updated\": 1660936675000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• Material You - Experience a new interface with dynamic colors and components from Google’s Material You design system.
General bugfixes and improvements\",\n \"comments\": [\n \"On Pixel 5a decent low light photos, time lapse, and panoramic photos. But it is seriously lacking basic manual features like manual focus, shutter speed, depth of field, etc. Also very poor macro capability, but perhaps that is more of a 5a limitation than an app limitation. Long story short, this is a very featureless camera app that one of the richest corporations has decided to bundle with all their phones, from flagship to basic models. iPhone camera app is far ahead.\",\n \"I have not had any issues that others are saying in their previews. Anyone who says the older pixel (1, 2, 3) take better photos has rose tinted goggles on hard. When I took a photo on my 3xl it looked like it was taken from a Nokia flip phone from the 2000's in comparison to my 6 Pro. The only issues I had with the camera were frequent crashes while using it when I was in the Android 13 beta. On the latest version of 12 it works a million times better (go figure).\",\n \"Google consistently removes their settings and features, and I'm not sure why. You used to have an option to choose the resolution of your photos, now you have two options only.. used to be able to disable HDR, now it's built in.. I try to take 5 photos outside during a summer day but the HDR processing causes my phone to overheat and I can't disable it. Time to switch apps.\",\n \"Just about adequate. This is an easy to use app. It came standard with my Pixel 6P. On a 6P, the app seamlessly switches from the various built-in cameras, which is very nice. However some very basic features are lacking, such as the ability to reduce the photo and video recording quality/size.\",\n \"Photos of text usually (75% of the time) get rotated to display it into a side orientation -- not just handwriting, but ordinary printed English language text; even when photographed in the desired orientation (so a plain vertical 8.5x11 page), the app will rotate the photo in the wrong orientation. And so it requires extra effort to go into edit, and rotate the photo. Not really sure why this can't be addressed when the text orientation technology exists.\"\n ],\n \"appId\": \"com.google.android.GoogleCamera\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.GoogleCamera\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.GoogleCamera&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.GoogleCamera/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.GoogleCamera/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.GoogleCamera/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n },\n {\n \"title\": \"Wear OS by Google Smartwatch\",\n \"description\": \"The Wear OS by Google app, previously Android Wear, syncs your smartwatch and phone so you can get more out of your watch. Get proactive help from your Google Assistant, see important messages, track health and fitness, and more, all from your wrist:\\n\\n• GET PROACTIVE HELP FROM YOUR GOOGLE ASSISTANT: Stay on top of your day with proactive, personalized help and useful shortcuts from your Google Assistant. Get commute times, see upcoming reservations, check your flight status and more.\\n• TAKE YOUR HEALTH AND FITNESS FURTHER: Get healthier and more active by tracking your progress towards your Heart Points and Steps goal\\n• ROCK OUT WHILE YOU WORK OUT: Control your favorite music right from your wrist and stay motivated through the last mile\\n• STAY CONNECTED AT A GLANCE: Check important notifications, texts, emails, and calls at a glance\\n• GET MORE DONE: See your next meeting, add items to your grocery list, set reminders, pay on the go and more\\n• EXPRESS YOURSELF: Wear OS by Google lets you be you with hundreds of styles—from fashion to fitness to fun and thousands of watch faces you can customize\\n\\nLearn more http://google.com/WearOS\\n\\nSupported features may vary across watches, phones, and countries. The Google Assistant is not available in certain countries and languages.\",\n \"descriptionHTML\": \"The Wear OS by Google app, previously Android Wear, syncs your smartwatch and phone so you can get more out of your watch. Get proactive help from your Google Assistant, see important messages, track health and fitness, and more, all from your wrist:

• GET PROACTIVE HELP FROM YOUR GOOGLE ASSISTANT: Stay on top of your day with proactive, personalized help and useful shortcuts from your Google Assistant. Get commute times, see upcoming reservations, check your flight status and more.
• TAKE YOUR HEALTH AND FITNESS FURTHER: Get healthier and more active by tracking your progress towards your Heart Points and Steps goal
• ROCK OUT WHILE YOU WORK OUT: Control your favorite music right from your wrist and stay motivated through the last mile
• STAY CONNECTED AT A GLANCE: Check important notifications, texts, emails, and calls at a glance
• GET MORE DONE: See your next meeting, add items to your grocery list, set reminders, pay on the go and more
• EXPRESS YOURSELF: Wear OS by Google lets you be you with hundreds of styles—from fashion to fitness to fun and thousands of watch faces you can customize

Learn more http://google.com/WearOS

Supported features may vary across watches, phones, and countries. The Google Assistant is not available in certain countries and languages.\",\n \"summary\": \"Wear OS by Google app, previously Android Wear, syncs your smartwatch and phone\",\n \"installs\": \"10,000,000+\",\n \"minInstalls\": 10000000,\n \"maxInstalls\": 47752416,\n \"score\": 3.598146,\n \"scoreText\": \"3.6\",\n \"ratings\": 262797,\n \"reviews\": \"http://gplayapi.srik.me/api/apps/com.google.android.wearable.app/reviews\",\n \"histogram\": {\n \"1\": 61755,\n \"2\": 16197,\n \"3\": 21410,\n \"4\": 29956,\n \"5\": 133468\n },\n \"price\": 0,\n \"free\": true,\n \"currency\": \"USD\",\n \"priceText\": \"Free\",\n \"available\": true,\n \"offersIAP\": false,\n \"androidVersion\": \"VARY\",\n \"androidVersionText\": \"Varies with device\",\n \"developer\": {\n \"devId\": \"Google LLC\",\n \"url\": \"http://gplayapi.srik.me/api/developers/Google%20LLC\"\n },\n \"developerId\": \"5700313618786177705\",\n \"developerEmail\": \"apps-help@google.com\",\n \"developerWebsite\": \"http://support.google.com/wearos\",\n \"developerAddress\": \"1600 Amphitheatre Parkway, Mountain View 94043\",\n \"privacyPolicy\": \"http://www.google.com/policies/privacy\",\n \"developerInternalID\": \"5700313618786177705\",\n \"genre\": \"Communication\",\n \"genreId\": \"COMMUNICATION\",\n \"icon\": \"https://play-lh.googleusercontent.com/WmoV-m8b6x16sDRfzebu5b2vstcyBHRrpzCj6ODoh6hGuMa9Gg39EvnOk7z3qMa0_WM\",\n \"headerImage\": \"https://play-lh.googleusercontent.com/NgCCxBEBydNcr7MHnxiOBC_BYfd8zVfVcgqJmvPSWPBPkb_nXWfErRyyDab_7B4H51CM\",\n \"screenshots\": [\n \"https://play-lh.googleusercontent.com/B7VE4Am0WbwadPNJIi6nxtJ9meGWm2LsT_2uyJssZ7Wk9-EQWH9Oz2IFo1knjIiLrh8\",\n \"https://play-lh.googleusercontent.com/8jmYa2szbgJ6gc7tNyQcb0JVP46VGjzUN7Lcxu81N7ighEobJADFBs-zzpAgplfJxt8\",\n \"https://play-lh.googleusercontent.com/Hzpwa1sU0UPFu49g3vQO1VFSX07Q_t7yBfJzJg1MqpXOTMB-HbgWMP6iuXbwmYnjtDA\",\n \"https://play-lh.googleusercontent.com/vvlutrf7CacJ8Z63njWLN_bhM0Jq0aCBJsnTibdlTa0louw-Md8yijG8Iq9I1u2Y7v0g\",\n \"https://play-lh.googleusercontent.com/ny6jQbEhoC5z6hlRgiuAVxbC3VHAzjgHdp77CsmgbqdVBKrHFnMwojmQrVyYsGxiQGVR\",\n \"https://play-lh.googleusercontent.com/C6AYsUz_lk_zSt6vlmTGpxFW_bJ2XMtRXQ-nclEi4r8RWr6ToUa5CvdiePJkz6YhPng\",\n \"https://play-lh.googleusercontent.com/WrTderi5yQYNkE3C3nWXJ5VZLDJc0epatd8P-EOdy_NqAyuomOCe4FIiM3za7RBz6zc\",\n \"https://play-lh.googleusercontent.com/CLah251Od1F8cezB9qDfsHca8I_53uOJvF6gkPBnCV8KZoLwBTt0X0Efcgy46mVXiw\",\n \"https://play-lh.googleusercontent.com/kFjN0Ke0lQEnOaYRgyb0bcpxWTr9EvVaWvNpK4GagRPBaX5BE3EDjZoJaYV2xuOQ7IY\",\n \"https://play-lh.googleusercontent.com/9pe3iMsa-_N6_hwjf1bFeWUv7W_0YbSjOK7qgO4xb5ttby-75gdEZ4i-UJr9-Kuiy6qo\",\n \"https://play-lh.googleusercontent.com/HPZ4sdMKLSEaMWuorrS-_9nOT03vsqG2CKzAo4nSe02F_VeFgs6l1aNP-uJT1tMdmPdx\",\n \"https://play-lh.googleusercontent.com/gw9-k7iJiD0ukeQC2-zrpQq0-93QKGe09UY7HzmF2QZ_L93LVsANo6SyTjfAjkshYI8\",\n \"https://play-lh.googleusercontent.com/gG3rRKpco-HpAgMw4LdZsR-oD3fhgOjjjJ6BX7DhGbkfz1Fk8BDdcOMXxj9volTs1zg\",\n \"https://play-lh.googleusercontent.com/UJvcstl2ckv4J2_nYIDe0byWFpsba_NduJ13cr9TMp3joypdBezZeyP7XqceRMi1zRCd\",\n \"https://play-lh.googleusercontent.com/Z-DG8zwertbPsvZxoG1uT7uFe4co5hEV5Spy3dwT0v8NN7Ly1X63fJav2qDLHFj5CIQ\",\n \"https://play-lh.googleusercontent.com/DgOu9rMnNBnZMuvhLEwVgvcamT5-g4WGsI71tW-RRS_cMwktHC9gGvK-kSsObV9AiA\"\n ],\n \"contentRating\": \"Everyone\",\n \"adSupported\": false,\n \"released\": \"Jul 2, 2014\",\n \"updated\": 1660949409000,\n \"version\": \"VARY\",\n \"recentChanges\": \"• Explore the new design of Wear OS by Google to help you get the most out of your time - providing quicker access to your information, more proactive help from your Google Assistant, and smarter health coaching, all with a swipe of your finger
\",\n \"comments\": [\n \"I hate this software. Doesn't matter if it's on the phone or on the watch. Connectivity is horrible. Everytime I get a new phone I have to reset my watch to factory settings just to get it to connect to the new phone. Once connected (finally, it takes forever to reset), my Google Pixel 6 Pro can't seem to figure out how to stay connected to the watch. Google, this is all your tech, there is no excuse for it not working seemlessly. Trash!\",\n \"I love my watch and thought it was working perfectly. Since this latest update, it seems as if there is a glitch in the screens response to touch. I am not able to access the bottom portion of my screen, it only allows for the slide up to see notifications. There also seems to be a delay in the screen going from the watch face to anyother app (Fit, Agenda, Contacts). The screen goes black for a couple of seconds and then the app appears. This has never happened before. I am not pleased.\",\n \"I have mixed emotions. I love the looks of the software. But that's about it. I hate that I don't have continuous heart rate and sleep tracking. I don't at all believe I'm being picky for wanting those things, because every competitor of wear os offers those things. The software is slow, stutters like no other and just does a lot of things that makes no sense. I think the Fitbit acquisition could really build on the little they have, so I hope it happens. Because I want to stay in the ecosystem.\",\n \"Step in the right direction, but still needs a lot of work. 1) Can't find the screen on time for the life of me. I've been through all settings and have yet to find it. 2) The media controller app is pretty slick, but it gets annoying that it is its own app, that I have to swipe right to dismiss to do anything else like check notifications. Just make it it's own Card. Settings > Clock Face > Media Controller > Notifications. I should be able to swipe up and down and get back to it easily. Maybe give an option to make it the default card if media is playing? 3) Battery life still leaves a lot to be desired. 4) Performance still needs a lot of work.\",\n \"Works great but it could be more useful to add a feature that the clock notifies when the Bluetooth is out-of-range just like some wireless headsets do. So it could be used when sometimes the clock is disconnected and you didn't notice it or you left or forgot your cellphone somewhere and you're not carrying it with you anymore so you go back to your car or house and get it back, for example . You get the idea. Keep with the good work.\"\n ],\n \"appId\": \"com.google.android.wearable.app\",\n \"url\": \"http://gplayapi.srik.me/api/apps/com.google.android.wearable.app\",\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.google.android.wearable.app&hl=en&gl=us\",\n \"permissions\": \"http://gplayapi.srik.me/api/apps/com.google.android.wearable.app/permissions\",\n \"similar\": \"http://gplayapi.srik.me/api/apps/com.google.android.wearable.app/similar\",\n \"datasafety\": \"http://gplayapi.srik.me/api/apps/com.google.android.wearable.app/datasafety\",\n \"categories\": \"http://gplayapi.srik.me/api/categories/\"\n }\n ]\n}" } ] } ], - "id": "9cf8f6d9-8d79-4cee-918d-9812da7ea489", "event": [ { "listen": "prerequest", "script": { - "id": "f924be09-e780-45de-962d-0bdf2b7079ba", "type": "text/javascript", "exec": [ "" @@ -1657,7 +1556,6 @@ { "listen": "test", "script": { - "id": "4b4072ed-0630-40da-a9a5-9791b60bf78c", "type": "text/javascript", "exec": [ "" @@ -1675,7 +1573,6 @@ { "listen": "test", "script": { - "id": "64b7d63a-d2ee-4843-b97b-8bbf55a19d7f", "exec": [ "", "pm.test('Response is an array', function () {", @@ -1695,37 +1592,50 @@ " });", "})", "", - "// pm.test(\"Number of categories to be greaterThan 10\", function () {", - "// var jsonData = pm.response.json();", - "// pm.expect(jsonData.length).is.greaterThan(10);", - "// });", - "// pm.test(\"Check if FINANCE Category exists\", function () {", - "// var jsonData = pm.response.json();", - "// pm.expect(jsonData).to.include('FINANCE')", - "// });" + "pm.test(\"Number of categories to be greaterThan 10\", function () {", + " var jsonData = pm.response.json();", + " pm.expect(jsonData.length).is.greaterThan(10);", + "});", + "pm.test(\"Check if FINANCE Category exists\", function () {", + " var jsonData = pm.response.json();", + " pm.expect(jsonData).to.include('FINANCE')", + "});" ], "type": "text/javascript" } } ], - "id": "63c61e68-35d2-48a9-972f-3c513ae6300a", - "protocolProfileBehavior": { - "disableBodyPruning": true - }, "request": { "method": "GET", "header": [], - "url": "{{HOST}}/api/categories", + "url": { + "raw": "{{HOST}}/api/categories", + "host": [ + "{{HOST}}" + ], + "path": [ + "api", + "categories" + ] + }, "description": "To get all categories listed on Google Play. Broken since Google Play redesign." }, "response": [ { - "id": "86e1641f-9975-4a8d-b220-5289913c3f03", "name": "All Categories", "originalRequest": { "method": "GET", "header": [], - "url": "{{HOST}}/api/categories" + "url": { + "raw": "{{HOST}}/api/categories", + "host": [ + "{{HOST}}" + ], + "path": [ + "api", + "categories" + ] + } }, "status": "OK", "code": 200, @@ -1765,18 +1675,15 @@ } ], "cookie": [], - "responseTime": null, "body": "[\n \"ART_AND_DESIGN\",\n \"AUTO_AND_VEHICLES\",\n \"BEAUTY\",\n \"BOOKS_AND_REFERENCE\",\n \"BUSINESS\",\n \"COMICS\",\n \"COMMUNICATION\",\n \"DATING\",\n \"EDUCATION\",\n \"ENTERTAINMENT\",\n \"EVENTS\",\n \"FINANCE\",\n \"FOOD_AND_DRINK\",\n \"HEALTH_AND_FITNESS\",\n \"HOUSE_AND_HOME\",\n \"LIBRARIES_AND_DEMO\",\n \"LIFESTYLE\",\n \"MAPS_AND_NAVIGATION\",\n \"MEDICAL\",\n \"MUSIC_AND_AUDIO\",\n \"NEWS_AND_MAGAZINES\",\n \"PARENTING\",\n \"PERSONALIZATION\",\n \"PHOTOGRAPHY\",\n \"PRODUCTIVITY\",\n \"SHOPPING\",\n \"SOCIAL\",\n \"SPORTS\",\n \"TOOLS\",\n \"TRAVEL_AND_LOCAL\",\n \"VIDEO_PLAYERS\",\n \"ANDROID_WEAR\",\n \"WATCH_FACE\",\n \"WEATHER\",\n \"GAME\",\n \"GAME_ACTION\",\n \"GAME_ADVENTURE\",\n \"GAME_ARCADE\",\n \"GAME_BOARD\",\n \"GAME_CARD\",\n \"GAME_CASINO\",\n \"GAME_CASUAL\",\n \"GAME_EDUCATIONAL\",\n \"GAME_MUSIC\",\n \"GAME_PUZZLE\",\n \"GAME_RACING\",\n \"GAME_ROLE_PLAYING\",\n \"GAME_SIMULATION\",\n \"GAME_SPORTS\",\n \"GAME_STRATEGY\",\n \"GAME_TRIVIA\",\n \"GAME_WORD\",\n \"FAMILY\",\n \"APPLICATION\"\n]" } ] } ], - "id": "53c03e28-a99c-4d62-b72f-02c6fd3cb072", "event": [ { "listen": "prerequest", "script": { - "id": "830e762c-af6d-4330-a517-1d348f9faa57", "type": "text/javascript", "exec": [ "" @@ -1786,7 +1693,6 @@ { "listen": "test", "script": { - "id": "ee315d55-7024-46bf-9cc5-f01389d74009", "type": "text/javascript", "exec": [ "" @@ -1794,13 +1700,201 @@ } } ] + }, + { + "name": "Lists", + "item": [ + { + "name": "Lists", + "event": [ + { + "listen": "test", + "script": { + "exec": [ + "\r", + "pm.test(\"Response status code is 200\", function () {\r", + " pm.expect(pm.response.code).to.equal(200);\r", + "});\r", + "\r", + "\r", + "pm.test(\"Title is a non-empty string\", function () {\r", + " const responseData = pm.response.json();\r", + "\r", + " pm.expect(responseData.results).to.be.an('array');\r", + "\r", + " responseData.results.forEach(function (result) {\r", + " pm.expect(result.title).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Title should not be empty\");\r", + " });\r", + "});\r", + "\r", + "\r", + "pm.test(\"appId is a non-empty string\", function () {\r", + " const responseData = pm.response.json();\r", + "\r", + " pm.expect(responseData.results).to.be.an('array');\r", + "\r", + " responseData.results.forEach(function (result) {\r", + " pm.expect(result.appId).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Value should not be empty\");\r", + " });\r", + "});\r", + "\r", + "\r", + "pm.test(\"The url should be a non-empty string\", function () {\r", + " const responseData = pm.response.json();\r", + "\r", + " pm.expect(responseData.results).to.be.an('array');\r", + "\r", + " responseData.results.forEach(function (result) {\r", + " pm.expect(result.url).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Value should not be empty\");\r", + " });\r", + "});\r", + "\r", + "" + ], + "type": "text/javascript" + } + } + ], + "request": { + "method": "GET", + "header": [], + "url": { + "raw": "{{HOST}}/api/lists?category=EDUCATION&collection=TOP_FREE", + "host": [ + "{{HOST}}" + ], + "path": [ + "api", + "lists" + ], + "query": [ + { + "key": "category", + "value": "EDUCATION", + "description": "Mandatory" + }, + { + "key": "collection", + "value": "TOP_FREE", + "description": "Mandatory;" + }, + { + "key": "country", + "value": "IN", + "description": "Defaults to US", + "disabled": true + }, + { + "key": "num", + "value": "20", + "description": "Defaults to 400", + "disabled": true + } + ] + }, + "description": "Get list of EDUCATION category app from TOP_FREE collection" + }, + "response": [ + { + "name": "TOP_FREE EDUCATION Apps", + "originalRequest": { + "method": "GET", + "header": [], + "url": { + "raw": "{{HOST}}/api/lists?category=EDUCATION&collection=TOP_FREE&num=20", + "host": [ + "{{HOST}}" + ], + "path": [ + "api", + "lists" + ], + "query": [ + { + "key": "category", + "value": "EDUCATION", + "description": "Mandatory" + }, + { + "key": "collection", + "value": "TOP_FREE", + "description": "Mandatory;" + }, + { + "key": "country", + "value": "IN", + "description": "Defaults to US", + "disabled": true + }, + { + "key": "num", + "value": "20", + "description": "Defaults to 400" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "x-powered-by", + "value": "Express" + }, + { + "key": "content-type", + "value": "application/json; charset=utf-8" + }, + { + "key": "content-encoding", + "value": "gzip" + }, + { + "key": "etag", + "value": "W/\"ad2bd-4Hi7TyZbNdmNlwYUISbTXTROWws\"" + }, + { + "key": "date", + "value": "Tue, 19 Sep 2023 22:03:16 GMT" + }, + { + "key": "connection", + "value": "keep-alive" + }, + { + "key": "keep-alive", + "value": "timeout=5" + }, + { + "key": "transfer-encoding", + "value": "chunked" + }, + { + "key": "server", + "value": "Fly/6cc3f7e5 (2023-09-12)" + }, + { + "key": "via", + "value": "1.1 fly.io" + }, + { + "key": "fly-request-id", + "value": "01HAQQG2Y3KHJ71SM7118KZMW4-iad" + } + ], + "cookie": [], + "body": "{\n \"results\": [\n {\n \"title\": \"Duolingo: language lessons\",\n \"appId\": \"com.duolingo\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.duolingo\",\n \"icon\": \"https://play-lh.googleusercontent.com/hSyebBlYwtE2aMjzSIHasUO9cQv9HgNAw9owy6ADO0szOKYO3rDk60r7jcyXu82Fbq1M\",\n \"developer\": {\n \"devId\": \"Duolingo\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Duolingo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn a new language with the world’s most-downloaded education app! Duolingo is the fun, free app for learning 40+ languages through quick, bite-sized lessons. Practice speaking, reading, listening, and writing to build your vocabulary and grammar skills.

Designed by language experts and loved by hundreds of millions of learners worldwide, Duolingo helps you prepare for real conversations in Spanish, French, Chinese, Italian, German, English, and more.

Whether you’re learning a language for travel, school, career, family and friends, or your brain health, you’ll love learning with Duolingo.

Why Duolingo?

• Duolingo is fun and effective. Game-like lessons and fun characters help you build solid speaking, reading, listening, and writing skills.

• Duolingo works. Designed by language experts, Duolingo has a science-based teaching methodology proven to foster long-term language retention.

• Track your progress. Work toward your language learning goals with playful rewards and achievements when you make practicing a daily habit!

• Join 300+ million learners. Stay motivated with competitive Leaderboards as you learn alongside our global community.

• Every language course is free. Learn Spanish, French, German, Italian, Russian, Portuguese, Turkish, Dutch, Irish, Danish, Swedish, Ukrainian, Esperanto, Polish, Greek, Hungarian, Norwegian, Hebrew, Welsh, Arabic, Latin, Hawaiian, Scottish Gaelic, Vietnamese, Korean, Japanese, English, and even High Valyrian!

What the world is saying about Duolingo⭐️⭐️⭐️⭐️⭐️:

Editor's Choice and "Best of the Best” —Google Play

“Far and away the best language-learning app.” —The Wall Street Journal

“This free app and website is among the most effective language-learning methods I’ve tried… lessons come in the form of brief challenges — speaking, translating, answering multiple-choice questions — that keep me coming back for more.” —The New York Times

“Duolingo may hold the secret to the future of education.” — TIME Magazine

“...Duolingo is cheerful, lighthearted and fun…” — Forbes

If you like Duolingo, try Super Duolingo for 14 days free! Learn a language fast with no ads, and get fun perks like Unlimited Hearts and Monthly Streak Repair.

Send any feedback to android@duolingo.com

Use Duolingo on the Web at https://www.duolingo.com

Privacy Policy: https://www.duolingo.com/privacy\",\n \"scoreText\": \"4.7\",\n \"score\": 4.697824,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.duolingo\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.duolingo/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.duolingo/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.duolingo/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.duolingo/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"ClassDojo\",\n \"appId\": \"com.classdojo.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.classdojo.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/gKVjyfeXOCb1JBdDuQvhudzGG2tWmTS27A6DSn66GPU3HyVnAsm_u8M8-yrcfCBbgwQ\",\n \"developer\": {\n \"devId\": \"ClassDojo\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/ClassDojo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Ready to build an amazing classroom community?

ClassDojo is a beautiful, safe, and simple communication app for teachers, parents, and students.

* Teachers can encourage students for any skill, like “Working hard” and “Teamwork”
* Teachers can bring parents into the classroom experience by sharing photos, videos, and announcements
* Students can add their classwork easily to their own digital portfolios for their parents to see
* Teachers can also safely and instantly message with any parent
* Parents see their child’s updates at home, as well as a stream of photos and videos from school
* All your favorite teacher tools, like Group Maker and Noise Meter, are now in one place!

ClassDojo helps teachers build a positive classroom culture by encouraging students and communicating with parents.

ClassDojo is free for everyone, and K-12 teachers, parents, students, and school leaders in over 180 countries have joined. It works on all devices, like tablets, phones, computers, and smartboards.

See how much people love ClassDojo at: www.classdojo.com/wall-of-love/

Join the ClassDojo community today!\",\n \"scoreText\": \"4.8\",\n \"score\": 4.782309,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.classdojo.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.classdojo.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.classdojo.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.classdojo.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.classdojo.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"PictureThis - Plant Identifier\",\n \"appId\": \"cn.danatech.xingseus\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/cn.danatech.xingseus\",\n \"icon\": \"https://play-lh.googleusercontent.com/2dcJOJptNfz3oVeNtHqC-SyKJ-lWDafOzLlUTgOGCpl7KarBjDxnIckL20PStVmYFg\",\n \"developer\": {\n \"devId\": \"Glority Global Group Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Glority%20Global%20Group%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"PictureThis identifies 1,000,000+ plants every day with 98% accuracy - better than most human experts. Get your gardening questions answered and become a “green thumb” with the plant identification power of PictureThis!

Wonder the name of the beautiful plant encountered during your walk?
Want to inspire your children with rich plant knowledge?
Need advice on how to care for your plants?
Simply take a photo of the plant and PictureThis will complete a plant identification to answer all your questions about it!

Identify any plants, flowers, herbs, or trees by photo and get useful plant care tips. Set timely reminders to water your greenery on time. Snap a photo to discover your plant's disease and get a quick cure. Chat with experts to get professional plant guides. Keep your plants healthy and happy with the PictureThis app!

Key Features:

Accurate Plant Identifier
PictureThis can identify17,000+ plant species with 98% accuracy. Simply take a picture, and our revolutionary plant identification engine will tell you what it is constantly.

Plant Disease Auto Diagnose & Cure
Take a snap of a sick plant or upload a photo from your gallery, the PictureThis app will auto-diagnose your plant disease and provide treatment info. A plant doctor on your phone!

Plant Care Tips & Reminders
Easy, step-by-step care instructions on how to care for your green friends. Get notified when it's time to water, fertilize, mist, clean, and repot. The PictureThis app can even track how much sunlight your plant is getting with the light meter.

One-on-one Expert Consultation
Have a question regarding your plants? Chat with our round-the-clock trained experts to get extensive plant care and treatment advice. Your pocket full-time botanist!

Toxic Plant Warning
Identify toxic plants around you and get warnings to help your pets, children and family stay safe.

Manage Your Plant Collection
Keep track of all the plants, trees, and flowers you identify, and build your own wishlist. Make your PictureThis your fingertip garden!

Plant Recommendation
Get advice on your next plant purchase based on the skills required, your gardening space, and more.

Whether you are an expert gardener or a new plant parent trying to identify your houseplant. Wonder no more, join the Picturethis community now!

CONNECT WITH US
Facebook.com/PictureThisAI
Twitter.com/PictureThisAI
Instagram.com/PictureThisA\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5900245,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=cn.danatech.xingseus\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/cn.danatech.xingseus/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/cn.danatech.xingseus/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/cn.danatech.xingseus/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/cn.danatech.xingseus/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Photomath\",\n \"appId\": \"com.microblink.photomath\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.microblink.photomath\",\n \"icon\": \"https://play-lh.googleusercontent.com/E_kpq1HGn5WU2P4S2yu0BwrPEHqiA-VBh2R7qoIjPFXdNvKA0A-8zi0RzRslUtEOnUvA\",\n \"developer\": {\n \"devId\": \"Photomath, Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Photomath%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get the math app that gets you! With over 300-million downloads, students and families around the world are using Photomath to check their homework, study for tests, and building their math confidence every month.

Basic solution steps and explanations are totally FREE, but if you’re ready for a brand new world of learning, Photomath Plus gives you access to:

EXPERT UNDERSTANDING
With access to a full library of explanations for selected textbooks, including word and geometry problems! Learn at your own pace with content that’s been approved by some of the world’s best math teachers.

MULTIMEDIA LEARNING
With detailed AI animations and verbal explanations to help you visualize and understand math in a way that’s suited to your learning style.

MATH INSIGHTS
Level up your learning by understanding “how” and “why” math problems are solved, or get reminders for forgotten terms and concepts with our embedded glossary.

So whether you’re learning basic arithmetic, or tackling advanced geometry, we’ll get you there together. One step at a time.

KEY FEATURES
• Free step-by-step explanations
• Word problem instructions
• Interactive graphs
• Video learning
• Multiple solution methods
• Advanced scientific calculator

MATH TOPICS COVERED

NUMBERS & QUANTITY
- Operations with Real and Complex Numbers
- Comparing Real Numbers
- Identifying Numbers
FUNCTIONS
- Graphs of Functions (Linear, Quadratic, Exponential, etc)
- Properties of Functions (Domain, Asymptotes, etc)
ALGEBRA
- Simplifying, Factoring, and Evaluating Algebraic expressions
- Simplifying Algebraic fractions and Partial-fraction decomposition
- Solving equations and inequalities (Linear, Quadratic, Exponential, etc)
- Systems of equations
- Polynomial Division
- Binomial theorem, Factorials
- Combinations, Permutations, and Variations
- Matrices and Matrix equations
- Determinants
- Mathematical Induction
TRIGONOMETRY & ANGLES
- Converting angles between degrees and radians
- Converting angles between decimal and DMS form
- Period of trigonometric functions
- Verifying trigonometric identities
SEQUENCES
- Identifying sequences
- Series
- Recursive and Explicit form
- Tests for Convergence
CALCULUS
- Limits
- Derivatives
- Integrals
- Area below a curve
- Identifying Conics
- Rotations of Conics
- Parametrization of Curves
- Identifying quadratic surfaces
- Differential equations
- Tangent lines
- Converting between coordinates


“An answer isn’t all you’ll get from this free app. Photomath also provides a step-by-step guide of how each problem is solved.” — Huffington Post

“The step-by-step guide is beneficial to students that do not have access to a tutor and struggle with solving math problems.” — Forbes

“A viral video about a new app looks like a dream come true for anyone who struggles with math.” — Time
___________________________________________

• Payment will be charged to your Google Play account at the confirmation of purchase.
• A subscription automatically renews unless it’s canceled at least 24 hours before the end of the current billing period.
• Your account will be charged for renewal within 24 hours prior to the end of the current period.
• Manage or cancel your subscription in your account settings on Google Play after purchase.
• Offers and pricing are subject to change without notice.

Suggestions or questions? Email us at support@photomath.com

Website: www.photomath.com
TikTok: @photomath
Instagram: @photomath
Facebook: @Photomathapp
Twitter: @Photomath

Terms of Use: https://photomath.com/en/termsofuse
Privacy Policy: https://photomath.com/en/privacypolicy\",\n \"scoreText\": \"4.6\",\n \"score\": 4.55713,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.microblink.photomath\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.microblink.photomath/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.microblink.photomath/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.microblink.photomath/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.microblink.photomath/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Remind: School Communication\",\n \"appId\": \"com.remind101\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.remind101\",\n \"icon\": \"https://play-lh.googleusercontent.com/O8A0yONWSafn8LIYROmP9tjTV2hptlIkUhqZOkEK7Z9XePXIttJEaRfCbcFtnzrICbg\",\n \"developer\": {\n \"devId\": \"Remind101\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Remind101\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Remind is a communication platform that helps every student succeed. Whether you're in the classroom, at home, or anywhere in between, Remind makes it easy to stay connected to your school community.

* Communicate in real time—on any device.
* Keep personal contact information private.
* Translate messages into more than 90 languages.
* Share files, photos, and content from your favorite sites.

Join the millions of educators, students, and parents using Remind to manage school communication and make time for what's important. Visit our site to learn more: http://www.remind.com\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3695664,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.remind101\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.remind101/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.remind101/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.remind101/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.remind101/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Canvas Student\",\n \"appId\": \"com.instructure.candroid\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.instructure.candroid\",\n \"icon\": \"https://play-lh.googleusercontent.com/2_M-EEPXb2xTMQSTZpSUefHR3TjgOCsawM3pjVG47jI-BrHoXGhKBpdEHeLElT95060B\",\n \"developer\": {\n \"devId\": \"Instructure\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Instructure\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Access your Canvas courses on the go with the Canvas Student mobile app! From any device, students can now:

• View grades and course content
• Submit assignments
• Keep track of course work with to do list and calendar
• Send and receive messages
• Post to discussions
• Watch videos
• Take quizzes
• Receive push notifications for new grades and course updates, and much more!\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6341286,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.instructure.candroid\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.instructure.candroid/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.instructure.candroid/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.instructure.candroid/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.instructure.candroid/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Gauthmath - Powered by GPT4\",\n \"appId\": \"com.education.android.h.intelligence\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.education.android.h.intelligence\",\n \"icon\": \"https://play-lh.googleusercontent.com/VfuFVLNX0pHeJtV0J3jEi0EyWr97purbQtHnrdbqAVLNukwQfj6zmiDKP-J2uYRBgds\",\n \"developer\": {\n \"devId\": \"GauthTech Pte. Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/GauthTech%20Pte.%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Powered by AI technology, Gauthmath solves various complex math problems with ease. The app offers the smartest math calculator and 1-on-1 live tutoring with premium tutors available 24/7. Just snap a photo, and our AI-powered math homework solver will generate accurate and fast answers. Trust Gauthmath for all your math needs.
Download Gauthmath – a powerful math homework helper! Our mathematics app gives access to online real math tutors for algebra, graphing, calculus, even math word problems, and all other math problems!
Simply snap a photo of your question with our math homework solver app and get step-by-step answers fast.

🔡【WORD PROBLEM FULLY COVERED】Gauthmath is your math word problem solver that can solve even the hard math word problems. The real math tutors online on our mathematics solution app, give answers with step-by-step explanations to all your maths questions and math homework.

💡【QUICK MATH PROBLEM SOLVER】As a powerful math app that provides detailed math answers, Gauthmath can help and solve all your math homework. It's like you have a photo math question solver camera. Take a photo or scan your maths homework, the Gauthmath math scanner & math answer app will instantly get you the math problem answers to math questions!

⚡️【MATH ANSWER IN SECONDS】Besides allowing you to easily scan math problems, Gauthmath homework solver app has thousands of helpers and math solution experts. Once they got your math problem photo, the dedicated math helper will answer instantly with a step-by-step solution. Get math answers anywhere, anytime, 24/7.

👌【EASY-TO-USE MATH SCANNER】Gauthmath math problem solver app can help you solve all kinds of math problems! Even the hard math problems such as IB/ A Level/ SAT / ACT / AP / GCSE / HSC math and other advanced mathematics.

👨\\u200d🎓FEATURES
· Solve math problems instantly with a math expert!
· LIVE Math experts available 24/7!
· Math solutions with step-by-step explanations!
· Gauthmath solves word problems even the hard ones!
· Snap a picture math question & get the problem solved in seconds!

🔢MATH TOPICS COVERED
·Math Word problems
·Algebra (Real Number; Arithmetic; Set theory; Expression; Logarithm; Complex Number)
·Function (Linear; Quadratic; Polynomial; Exponential; Rational; Logarithmic; Inverse Function)
·Geometry (Plane & Solid Geometry; Algebra & lines; lines and planes in space; transformation)
·Trigonometry (Trigonometric Ratios; Law of Sines; Law of Cosines; Reciprocal Properties)
·Calculus (Derivatives; Integrals; Limits; the tangent/area problem)
·Statistics and Data Analysis (Probability; data representation; random variables; binomial theorem; Poisson distribution; normal distributions; confidence intervals)
·Matrix (matrix algebra; the system of linear equations and matrices)
·Logic (reasoning and proof; conditional statements; inductive reasoning; deductive reasoning)

👍A SIMPLE WAY OF MATH
Got math word problems? Just snap a photo & instantly get answers from our math scanner answer and math tutors. Finally, you have math homework help that improves your learning efficiency! With Gauthmath, you will solve math problems like a piece of cake!

🙌YOUR MATH HOMEWORK BUDDY
Leave your math problems to the powerful mathematics resolver problems app = > your reliable math helper will provide math answers for your math homework. Our math problem solver services will prepare high-quality math help for you and make your math homework and exams much easier!

☑️Download Gauthmath now for FREE and have a loyal math helper & problem-solving app!


-----------------------------------------------
【STAY CONNECTED】
►Facebook: https://www.facebook.com/gauthmath
►Tiktok: https://www.tiktok.com/@gauthmath_official
►Youtube: https://bit.ly/GauthmathYT
►Discord: https://discord.gg/cy6jtuY9At
►Website: www.gauthmath.com
►Email: support@gauthmath.com\",\n \"scoreText\": \"4.4\",\n \"score\": 4.387043,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.education.android.h.intelligence\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.education.android.h.intelligence/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.education.android.h.intelligence/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.education.android.h.intelligence/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.education.android.h.intelligence/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"PlantIn: Plant Identification\",\n \"appId\": \"com.myplantin.app\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.myplantin.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/heFoyETxMlE0cNRdeMaJeC2LTyvWY-ikNR7POHlcPOIfbG0EeigTXmA1c3Et0XycXQ\",\n \"developer\": {\n \"devId\": \"PlantIn\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/PlantIn\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"PlantIn features which help your garden prosper:

• Plant identification

Maybe you are not sure which plant you have? You can just take a picture of it and we will instantly let you know.

With our extended text search, you can look for air cleaning plants or non-poisonous ones. Just write your thoughts and see our app provided options

• Plant Disease Identifier

With our exclusive AI-based Disease identification algorithm, you can check your plants for problems and get a proper cure plan.

• Lightmeter

Compare plant light requirements and the lighting you actually have

• Weed Community

Explore exclusive guides on any weed-related question. Detailed guides and handpicked care information.

• Professional Care Guides

Ever wonder what is professional plant care?

Wonder no more, with our detailed plant care guides made by professionals

• Care Reminders

You will also love our notification system, which will always guide you on your journey of caring for your tiny green pal so that you'd never forget when it needs your attention.

Gardening never was so easy.

All the care requirements handled automatically, so you don't need to find your plant requirements on your own.

• Expert help

Something is happening to your plant and you can't figure out why or what?

Our professional gardeners are there to help you, ask any question you want, and receive a detailed treatment guide!

• Plant Journal

Track your plant care. Never forget when was the last care time.

Watch how your plant change through time with a photo diary.

You don't need to remember your plant conditions each time, let PlantIn handle it for you. So you can relax and check your plant progress in a diary.

• Easy and User-Friendly Design

Our design received a lot of great feedback for its simpleness and usability.

Try out how easy plant care management could be.

• Step by step guides

Do you love plants but lack a green thumb? If so, you can use the easy, step by step care-instructions on how to care for your green friends.

We've gathered the advice of the top home gardeners to give you the ultimate formula for caring for your plants.

• Wishlist of plants you'd like to add

Found plant which you'd like to get?

Add it to the wishlist not to forget to purchase it.

• All the info - just to be sure

Perhaps you are good at caring for plants, but you just want to make sure you are doing everything right. Find out everything you need to know about what your green companions prefer

Have you ever wondered when to water your plant, or how to cut its leaves?

Wonder no more, you can get all the required information from PlantIn.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.302524,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.myplantin.app\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.myplantin.app/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.myplantin.app/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.myplantin.app/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.myplantin.app/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Babbel - Learn Languages\",\n \"appId\": \"com.babbel.mobile.android.en\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.babbel.mobile.android.en\",\n \"icon\": \"https://play-lh.googleusercontent.com/xN4oZ4Re23KNtp9u2y4i-UYJ0TjjFjhs53okaauQUz-oP3LaOBQZZHVaNFU69GAT7x8\",\n \"developer\": {\n \"devId\": \"Babbel\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Babbel\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Millions of people learn languages with Babbel — the app built by language learning experts. Our short, interactive lessons rethink old-school language education to get you speaking a new language with confidence.

LEARN SPANISH OR 13 OTHER LANGUAGES IN 15 MIN/DAY

We're not just a Spanish learning app! Want to learn French, learn Italian or speak German like a local? You can learn:

Spanish 🇪🇸🇲🇽 | French 🇫🇷 | Italian 🇮🇹 | German 🇩🇪 | Portuguese 🇧🇷 | Russian 🇷🇺 | Polish 🇵🇱 |
Turkish 🇹🇷 | Norwegian 🇳🇴 | Danish 🇩🇰 | Swedish 🇸🇪 | Dutch 🇳🇱 | Indonesian 🇮🇩 | English 🇬🇧🇺🇸

Babbel is great for beginners but even experienced language learners have proven to advance their conversation skills!*

======

BABBEL WORKS!
★ Effectiveness backed by researchers at Yale University:
100% of study participants improved their oral proficiency in 3 months*

*Based on a study conducted with Babbel users learning Spanish. Available at http://bit.ly/BabbelYale.

★ After 10 hours with Babbel, Michigan State University researchers found:
96% of learners saw better test scores on grammar and vocabulary**

**Based on a study conducted with Babbel users learning Spanish. Available: http://bit.ly/BabbelMSU.

★ PCMagazine says the Babbel language app “exceeds expectations”

======

Babbel is the best language-learning app.

Our language learning experts build every course tailored to your native language. So whether you want to learn Spanish, learn Italian or learn French — or even German, Portuguese, Russian, Polish, Turkish, Norwegian, Danish, Swedish, Dutch, Indonesian or English — you’ll learn quickly and effectively.

BITE-SIZE, INTERACTIVE LESSONS - Easily fit language learning into your busy schedule with lessons that take only 10-15 minutes to complete (some Spanish lessons are even shorter).

LANGUAGES FOR ANY SITUATION - Find language lessons for travel, work, everyday life and much, much more

LISTEN, SPEAK, READ, WRITE - Practice all the elements of language learning and start speaking real-life conversations

IMPROVE YOUR PRONUNCIATION - Babbel’s speech recognition technology helps you sound like a native speaker

REMEMBER WHAT YOU LEARN - Use the review feature so the previous lessons stick, and understand grammar (including Spanish conjugation)

LEARN LANGUAGES IN CONTEXT - Enhance your language learning with tips & tricks that guide you throughout lessons

OVER 6,000 LANGUAGE COURSES - Learn Spanish and 13 other languages with in-depth content, including more than 60,000 language lessons

With Babbel, you’ll be on your way to mastering the ultimate goal of language learning — having real-life conversations with confidence. Whether you need a Spanish learning app or a French learning app, you’ve always wanted to learn Italian, you’re looking to dive into German language learning or improve your English, Babbel is the choice of millions of people looking to enhance their language education.

Make learning a habit. Go beyond language 101 and you'll learn a language you can use to talk in real-life situations.

=====

Subscriptions:

You’ll need a subscription to use Babbel fully. Your subscription will be renewed unless auto-renew is turned off at least 24 hours before the end of the current payment period.

DOWNLOAD BABBEL AND TRY FOR FREE – Your first lesson is on us. Babbel is completely ad-free.

Privacy policy: https://about.babbel.com/en/privacy/
Terms of use: https://about.babbel.com/en/terms/

Not a native speaker but want to talk just like one? Download Babbel and improve your German language learning, learn English or discover how to speak Spanish. Take your language education to new levels — whether you want to learn French, Italian, Mexican Spanish, German or any of the 14 languages we offer!

Contact us:
Questions, comments or feedback about language learning with Babbel? Email us at support-mobile@babbel.com.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.625077,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.babbel.mobile.android.en\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.babbel.mobile.android.en/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.babbel.mobile.android.en/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.babbel.mobile.android.en/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.babbel.mobile.android.en/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Simply Piano: Learn Piano Fast\",\n \"appId\": \"com.joytunes.simplypiano\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.joytunes.simplypiano\",\n \"icon\": \"https://play-lh.googleusercontent.com/iYf9v6TDHmklK-AUu9PV8Li9ZUGoybW91J-eYUOVaMhXQO3w1Qh_TD3noFmPOH9185c\",\n \"developer\": {\n \"devId\": \"Simply (formerly JoyTunes)\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Simply%20(formerly%20JoyTunes)\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn piano with songs you love!
Simply Piano is a fast, fun & easy way to learn piano. You’ll be amazed how much you can achieve with only 5-min practice per day, at your own pace and time.
This popular piano learning app has won Google Play's Best Apps of 2019 and others.
Join millions already learning to play with the Simply Piano app.

Once you download the Simply Piano app for free, you’ll be introduced to some piano basics and gain access to selected songs and piano video lessons.

Simply Piano is developed by Simply (formerly JoyTunes), creators of award-winning apps Piano Maestro and Piano Dust Buster. Created by music educators, the apps are used by tens of thousands of music teachers worldwide with over 1 million songs learned every week.

Chosen as one of the best Google apps. Works on both smartphones and tablets.
With more than 5,000 popular songs in our Song Library
A mix of classics and today’s hits, like Imagine (by John Lennon), Chandelier (by Sia), All Of Me (by John Legend), Counting Stars (by OneRepublic), as well as iconic pieces of classical music by Bach, Beethoven, Mozart and much more!
Learn step-by-step from reading sheet music to playing with both hands, or improving your technique, and practicing playing songs you love
See your progress in real-time, get instant feedback on your playing progress
Works with any keyboard or piano
Suitable for all ages and playing levels, whether you have - no or some - piano experience
Build a practice routine you can be proud of and that keeps you motivated! Enjoy personalized 5-Min Workouts ensuring you progress fast and achieve constant success
Kids safe - no ads or external links
Easy courses designed by musicians and teachers
Multiple profiles (up to 5!) for everyone in your family, under same Simply Piano account and plan
Enjoy premium access to Simply Guitar when subscribing to Simply Piano!

Simply are experts in creating educational and fun music apps for learning piano quickly and easily.
How it works:
Download the Simply Piano app for free and set up your profile
Place your device (iPhone/iPad/iPod) on your piano or keyboard and start playing
The app will walk you through the many piano lessons, step by step
Simply Piano listens to every note you play (via microphone or MIDI connection) and gives you instant feedback
Discover the magic of music with a large variety of fun songs in our Song Library
No previous knowledge required to learn piano
Develop your piano playing technique with high-quality piano tutorials
Set goals and track your progress! Play like a pro in no time!

GET 7 DAYS OF SIMPLY PIANO PREMIUM FOR FREE
To get full access to all songs and courses, you’ll need to purchase a Simply Piano Premium subscription. New courses and songs are added every month!

Your payment will be charged to your Google Account at confirmation of purchase. Subscriptions can be canceled during the trial period, however, cannot be canceled during the active subscription period.
All recurring subscriptions will auto-renewal unless auto-renewal is turned off at least 24 hours before the end of the current period.

Awards & Recognition -
- "EMI’s Innovation Challenge”
- "World Summit Award", by the United Nations
- “Best Tools for Beginners”, NAMM
- “Parents' Choice Award”
- “Golden App”, Apps for Homeschooling

Have questions, feedback or suggestions? Reach out to us through the app under Menu > Settings > Have a Question.

Enjoy Playing!
privacy policy: https://www.hellosimply.com/legal/privacy
terms of use: https://www.hellosimply.com/legal/terms


Play piano like you’ve always wanted
No Piano? Try the Touch Courses with 3D Touch to turn your device into an on-screen keyboard!\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5349464,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.joytunes.simplypiano\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.joytunes.simplypiano/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.joytunes.simplypiano/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.joytunes.simplypiano/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.joytunes.simplypiano/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"PBS KIDS Video\",\n \"appId\": \"org.pbskids.video\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/org.pbskids.video\",\n \"icon\": \"https://play-lh.googleusercontent.com/u_jg2Zf-xvlpsMkSEHYOl7mNqc4LiNs-RSQOyS0CzeFKaKFAAGIUFTv6aN8Svkraow\",\n \"developer\": {\n \"devId\": \"PBS KIDS\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/PBS%20KIDS\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Watch live TV, stream, and download episodes with PBS KIDS Video! Safely stream videos from shows like Daniel Tiger’s Neighborhood, Wild Kratts, Sesame Street, Curious George, Odd Squad, Alma’s Way, and more!

Download free episodes of safe entertainment for your kids wherever you are! Bring the fun of learning to your child, at home and on the road. Watch shows from PBS KIDS Video to encourage learning for toddlers and early grade school children.

PBS KIDS Video is a safe streaming video app for children. Free educational episodes of kid-friendly cartoons are added weekly. Your child will play, learn and grow watching episodes designed to spark their imagination and curiosity.

Stream, watch, and download free kids videos and episodes that are child-safe. Stream and watch free live TV from the PBS KIDS 24/7 channel on the app with no subscription or login! Enter your zip code and tap “LIVE TV” to see what’s on your local station.
--
*A Webby Winner and Webby People's Voice Winner in Apps and Software: Family & Kids (2022)
*A Webby People's Voice Winner in Apps, Mobile, and Voice: Best Streaming Service (2020)
*Winner of Webby People's Voice for Best Family & Kids Mobile App (2020)
*A Webby Winner for Best Streaming Video (2018)
*A Parents' Choice Recommended Mobile App (2017, 2013)
*A Cynopsis Kids !magination Award Winner for Best Educational App (2012)
----
PBS KIDS Video Features

FREE EDUCATIONAL VIDEO STREAMING
-Watch 400+ free full episodes of over 35 PBS KIDS shows
-Stream live TV or watch over 5,000+ clips from shows children love
-Download shows to watch offline
-Educational entertainment live or on demand

NEW VIDEOS EVERY WEEK
Watch new episodes that come out every week from your favorite PBS KIDS shows, including:
-Daniel Tiger’s Neighborhood
-Wild Kratts
-Sesame Street
-Odd Squad
-Curious George
-Alma’s Way
-Donkey Hodie
-Elinor Wonders Why
-Arthur
-Xavier Riddle & the Secret Museum
-Dinosaur Train
-Pinkalicious & Peterrific
-Molly of Denali
-Hero Elementary
-Clifford the Big Red Dog
-Let’s Go Luna
-Nature Cat
-The Cat in the Hat Knows A Lot About That
-And more!

PARENT RESOURCES VIA THE GROWNUPS BUTTON:
*TV schedule for your local PBS station
*Learn more about a TV series, such as intended age and learning goals
*Download kids learning apps from PBS KIDS
*Buy full episodes and shows from Google Play
------
*This app is optimized for Lollipop (5.1) and above.

GEOGRAPHIC RESTRICTIONS
The PBS KIDS videos may only be viewed from within the United States. This is due to restrictions on PBS's license to offer this service.

DOWNLOAD RESTRICTIONS
Currently, select shows can be downloaded: Daniel Tiger’s Neighborhood, Alma’s Way, Donkey Hodie, Dinosaur Train, Elinor Wonders Why, Jelly Ben & Pogo, Let’s Go Luna, Peg + Cat, Odd Squad, Sesame Street, SUPER WHY!, Wild Kratts, Word World, and Xavier Riddle & the Secret Museum. Additional shows will become available for download in the near future.

SPONSORSHIP
PBS KIDS Video is a key part of PBS KIDS’ commitment to making a positive impact on the lives of children through curriculum-based entertainment—wherever kids are. More PBS KIDS videos may also be found online at pbskids.org/video.

Funding from corporate sponsors supports PBS KIDS’ mission to use the power of media to open worlds of possibilities for all children. To acknowledge the vital support that PBS KIDS receives, brief messages from corporate sponsors are included at the start of select full-length episodes on the PBS KIDS Video App. You can support PBS KIDS through the selection of other apps and TV shows available on Google Play.

ABOUT THIS APP
The PBS KIDS Video app gives kids and parents access to thousands of free videos, including full episodes and clips from top PBS KIDS series. With this app, kids can watch their favorite PBS KIDS shows anytime, anywhere! PBS KIDS, the #1 educational media brand for kids, helps children ages 2-8 learn lessons that last a lifetime.

This app was designed by PBS KIDS.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.24083,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.pbskids.video\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/org.pbskids.video/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/org.pbskids.video/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/org.pbskids.video/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/org.pbskids.video/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Knowunity: School Study Helper\",\n \"appId\": \"de.knowunity.app\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/de.knowunity.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/qzMxkfQVVSaiiUZ2RiAZyCoVSj1Zwg6vSyioneroj8C0bWEVgKwJWzej62rL5bQw4zs\",\n \"developer\": {\n \"devId\": \"Knowunity\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Knowunity\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Knowunity is all about YOU. Study chat with friends. Homework answers. FREE flashcards and quizzes. Actually LEARN in a SAFE SPACE 🫶🏾

Confused about right angles in geometry? The Knowunity study app has you covered. Need a short summary of the Giver? Yep. Math quizzes? Uh huh, that too ☄️💫

Study notes. Better grades. Study with friends. Faster learning. All on Knowunity. Did we mention it’s free? Yes, a free study app. Like $0 free 🐱

8+ million students and counting are waiting to help you with your studies!

🧑🏼\\u200d🎓FREE FLASHCARDS

Stop paying for flashcards made by other high-school students. On Knowunity, you have your pick from flashcards made by other students, by AI, or make them yourself!

😌STUDY CHAT IN A SAFE SPACE

Come as you are and you’ll have study friends on Knowunity. A study chat about high school geometry has more than 1,000 students in it. A chat about math has more than 500 students. How about a chat for study anxiety? Yeah, that too. Or just create a new study group and build your own study community.

⚡LEARN FASTER

Got lost in that class about polynomial equations? Looking for other APush students? Get easier explanations from students studying the exact same thing. But in a way you can actually understand.

🤯EVERY SUBJECT in middle school and high school

Math. Science. History. Geometry. Biology. Should we go on? We mean it: study notes on every subject in middle and high school. You pick the school topic, students on Knowunity can help you with it.

🤖HOMEWORK ANSWERS

Homework should be about learning, not suffering. Take a photo of your homework and get explanations you can actually understand. Knowunity’s AI Knowalot-Bot quickly guides you to the right answer, plus you can always ask the super active learning community for help.

🚀EARN POINTS AND VOLUNTEER HOURS

Get 10 points every time you:

- answer someone’s school-related question,
- upload a study note, or
- create a flashcard.

The best part? VOLUNTEER HOURS and MERCH. Yeah, real merch. For every 100 points you earn, Knowunity will certify one hour of volunteer time. PLUS you get fun merch like the Knowunity teddy bear, swag, and more. Top earners even get a coveted letter of recommendation.

📚QUIZZES (and they’re free)

Not even sure where to start studying for that math quiz? Just put in your school subject and Knowunity has got you covered. Figure out what you need to learn more about and where you’ve learned just enough. Still not sure? Ask a study group or the AI Knowalot bot for some pointers.

🧘🏾KNOWUNITY IS YOUR STUDY APP, YOUR COMMUNITY, YOUR PLACE

📗STUDY YOUR WAY

====================

HELP OTHERS

- Upload your study notes, quizzes, flashcards
- Earn points, volunteer hours, merch, donations, and even a letter of recommendation
- Build up your Knowunity profile to lead a community of students
- Help thousands of students improve in school

====================

KEY FEATURES:
- Study notes
- Flashcards
- Quizzes
- Study groups

AI FEATURES:
- AI Study Help
- AI Chatbot
- Essay Writer/ Essay Help/Homework Helper

====================

Check out what our users are saying about Knowunity’s study app:

“It’s like Chegg and Anki, but offers so much more. My new favorite study app!” Kennedy (18)

"Knowunity has made studying & learning for my classes so much easier" Josh (17)

====================

WE ARE REAL PEOPLE and we want the best for you. Both irl and in app. Send a message that gets read by a human at [support-us@knowunity.com](mailto:support-us@knowunity.com). Tell us how we can help.

TOS: https://knowunity.com/legal/tos\",\n \"scoreText\": \"4.4\",\n \"score\": 4.396396,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=de.knowunity.app\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/de.knowunity.app/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/de.knowunity.app/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/de.knowunity.app/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/de.knowunity.app/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Quizlet: AI-powered Flashcards\",\n \"appId\": \"com.quizlet.quizletandroid\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.quizlet.quizletandroid\",\n \"icon\": \"https://play-lh.googleusercontent.com/hiQHKRhpuGu4pWAFhpto9H7qWKSdX-BjKbDAtZYgm_jfoD0cN7MCllGOn6L3XWo-6Q\",\n \"developer\": {\n \"devId\": \"Quizlet Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Quizlet%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to a new era of AI-enhanced study with Quizlet. Immerse yourself in any subject imaginable, where you can choose from over 700 million digital flashcard sets or create your own. As the #1 AI-enhanced learning platform, Quizlet offers personalized quizzes and practice tests, expert-written homework solutions, and transformative AI study tools. Join a community of over 300 million learners who have improved their grades and achieved their goals with Quizlet.

With the Quizlet app, students and teachers can:
Upload class notes to make flashcards, practice tests and essay prompts with Magic Notes
Create flashcard sets or search from millions of flashcards created by other students and teachers
Turn flashcards into formative assessments or interactive flashcard games
Use Learn and Test modes to transform flashcards into quizzes and practice tests
Retain material for the long term with spaced repetition
Crush tough homework with expert-written solutions

Download the app today and join a community of over 300 million global learners.
Upgrade to Quizlet Plus and get complete access to homework help, personalized study modes and ad-free studying.

What our students say when they leave 5-star reviews:

“Best study app ever!!”
“The only app I use when I need to get down to business.”
“Quizlet is by far the best studying app I’ve downloaded. It’s packed full of different ways to study for upcoming tests!”

Quizlet Plus subscriptions will be charged to your Google account. Your monthly or annual subscription automatically renews unless canceled at least 24 hours before the end of the current period. Manage your subscriptions in your Account Settings after purchase.

Terms of Service: https://quizlet.com/tos
Privacy Policy: https://quizlet.com/privacy\",\n \"scoreText\": \"4.6\",\n \"score\": 4.606601,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.quizlet.quizletandroid\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.quizlet.quizletandroid/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.quizlet.quizletandroid/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.quizlet.quizletandroid/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.quizlet.quizletandroid/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Stellarium Mobile - Star Map\",\n \"appId\": \"com.noctuasoftware.stellarium_free\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.noctuasoftware.stellarium_free\",\n \"icon\": \"https://play-lh.googleusercontent.com/5UaNKcX6uHyAotPmxCm2ADsr3pGUcsgezFpe3X5Pe-PpT_mzDoLlObnXnMLxK1oAnd0\",\n \"developer\": {\n \"devId\": \"Stellarium Labs\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Stellarium%20Labs\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Stellarium Mobile - Star Map is a planetarium app that shows exactly what you see when you look up at the stars.

Identify stars, constellations, planets, comets, satellites (such as the ISS), and other deep sky objects in real time in the sky above you in just a few seconds, just by pointing the phone at the sky!

This astronomy application has an easy to use and minimalist user interface, that makes it one of the best astronomical applications for adults and children who want to explore the night sky.

Stellarium Mobile features:

★ View an accurate night sky simulation of stars and planets for any date, time and location.

★ Dive in a collection of many stars, nebulas, galaxies, star clusters and other deep sky objects.

★ Zoom on realistic Milky Way and Deep Sky Objects images.

★ Discover how people living in other regions of the planet see the stars by selecting the shapes and illustrations of the constellations for many sky cultures.

★ Track artificial satellites, including the International Space Station.

★ Simulate landscape and atmosphere with realistic sunrise, sunset and atmosphere refraction.

★ Discover 3D rendering of the major solar system planets and their satellites.

★ Observe the sky in night mode (red) to preserve your eyes adaptation to darkness.

Stellarium Mobile contains in-app purchases allowing to upgrade to Stellarium Plus. With this upgrade, the app will display objects as faint as magnitude 22 (versus magnitude 8 in the base version) and enable advanced observing features.

Stellarium Plus features (unlocked with in-app purchase):

★ Reach the limit of knowledge by diving in a massive collection of stars, nebulas, galaxies, star clusters and other deep sky objects:
  • All known stars: Gaia DR2 catalog of over 1.69 billion stars
  • All known planets, natural satellites and comets, and many other minor solar system objects (10k asteroids)
  • Most known deep sky objects: a combined catalog of over 2 million nebulas and galaxies

★ Zoom almost without limits on high resolution images of deep sky objects or planetary surfaces.

★ Observe in the field, even without internet connection, with a "reduced" set of data: 2 million stars, 2 million Deep Sky Objects, 10k asteroids.

★ Control your telescope through Bluetooth or WIFI: drive any GOTO telescope compatible with NexStar, SynScan or LX200 protocols.

★ Prepare your observing sessions using the advanced observation tools, to predict a celestial object observability and transit times.

Stellarium Mobile - Star Map is made by the original creator of Stellarium, the well known open source planetarium and one of the best astronomy applications on Desktop PC.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7525253,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.noctuasoftware.stellarium_free\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.noctuasoftware.stellarium_free/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.noctuasoftware.stellarium_free/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.noctuasoftware.stellarium_free/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.noctuasoftware.stellarium_free/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Kahoot! Play & Create Quizzes\",\n \"appId\": \"no.mobitroll.kahoot.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/no.mobitroll.kahoot.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/AyJnaQ0JfEu-F_4bop5hH4qpJwYJ1blePyer6VVUUm4Al80uWJBje4UZHirrf39wI7uI\",\n \"developer\": {\n \"devId\": \"Kahoot!\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Kahoot!\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Play engaging quiz-based games (kahoots) at school, at home and at work, create your own kahoots and learn something new! Kahoot! brings the magic of learning for students, teachers, office superheroes, trivia fans and lifelong learners.

Here’s what you can do with the Kahoot! app, now available in English, Spanish, French, German, Italian, Brazilian Portuguese and Norwegian:

Students
- Join kahoots hosted live - in class or virtually - and use the app to submit answers
- Complete self-paced challenges
- Study at home or on the go with flashcards and other study modes
- Compete with friends in study leagues
- Challenge your friends with kahoots you found or created
- Create your own kahoots and add images or videos
- Host kahoots live for family and friends directly from your mobile device

Families and friends
- Find a kahoot on any topic, fit for any age
- Host a kahoot live by casting your screen to a big screen or screen share via video conferencing apps
- Engage your kids with studying at home
- Send a Kahoot! challenge to family members or friends
- Create your own kahoots and add different question types and image effects

Teachers
- Search among millions of ready-to-play kahoots on any topic
- Create or edit your own kahoots in minutes
- Combine different question types to increase engagement
- Host kahoots live in class or virtually for distance learning
- Assign student-paced challenges for content review
- Assess learning outcomes with reports

Company employees
- Create kahoots for e-learning, presentations, events and other occasions
- Encourage audience participation with polls and word cloud questions
- Host Kahoot! live in person or in a virtual meeting
- Assign self-paced challenges, for example, for e-learning
- Assess progress and results with reports

Premium features:
Kahoot! is free for teachers and their students, and it’s our commitment to keep it that way as part of our mission to make learning awesome. We offer optional upgrades that unlock advanced features, such as an image library with millions of images and advanced question types, such as puzzles, polls, open-ended questions and slides. To take advantage of these features, users will need a paid subscription.

To create and host kahoots in a work context, as well as get access to additional features, business users will need a paid subscription.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6898847,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=no.mobitroll.kahoot.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/no.mobitroll.kahoot.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/no.mobitroll.kahoot.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/no.mobitroll.kahoot.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/no.mobitroll.kahoot.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Zigazoo Kids\",\n \"appId\": \"com.zigazoo.zigazoo\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.zigazoo.zigazoo\",\n \"icon\": \"https://play-lh.googleusercontent.com/v0b7wPvCe8L3YYk_tD8KT4y8J_cjuq_arnVARVHYUKjU2gJgHUSdxNHbU86ikAd3Zmbm\",\n \"developer\": {\n \"devId\": \"Zigazoo\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Zigazoo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"On Zigazoo, kids are encouraged to make videos and use their imagination rather than mindlessly scroll through content.

Created by parents and teachers, Zigazoo is the number 1 kid-safe app, encouraging kids to create and learn. Parents can relax as their children enjoy safe educational media. Zigazoo makes screen-time healthier, smarter, guilt-free, and joyful!

Zigazoo allows kids to engage with entertaining, educational content and gives them a secure space to interact positively with peers. Zigazoo prioritizes safe, positive interactions with our features that are carefully designed with your child in mind.

We know you care about your child’s safety; it's our first priority! Zigazoo is KidSAFE COPPA Certified and 100% human moderated. Every piece of content has been reviewed by Zigazoo’s moderation team to ensure only safe, age-appropriate content is being created by and shown on Zigazoo.

Zigazoo is the kids app people are raving about! Zigazoo partners with the world’s most popular publishers, celebrities, zoos, museums, musicians, athletes, and kid’s brands to offer exciting, wholesome content for kids to engage with, learn from, and share with friends! Zigazoo also features content from creators, who make content for kids, by kids.

Zigazoo Friends Community
● Parents sign up their kids to participate in a global community of Zigazoo friends.
● Kids can find countless challenges to learn from and record video responses
● Use effects, stickers, music and filters to customize your videos.
● Win badges, earn Zigabucks, style your profile, and more!
● Only positive emojis and stickers are used to respond to fellow Zigazooers’ content. No comments or negativity allowed!
● Give gifts to reward positive interactions and promote healthy online habits.

Zigazoo is KidSAFE COPPA Certified and 100% Human Moderated
● Users have full control over how much of their content is visible on the feed.
● Zigazoo puts every piece of content through a stringent human moderation process.
● Moderation looks for prompt relevance, kid-friendly language, and appropriate video content, while ensuring no identifiable personal information is shared.

Verified, Secure Sign-Up Process
● In order to sign up to use Zigazoo, parents must verify with either their phone number or single sign-on via Google accounts.
● In accordance with our terms and privacy policy, Zigazoo accounts must be created with a parent’s consent for safety purposes.

Positive Interactions
● Customize your profile and subscribe to your favorite educational channels to receive notifications about their latest activity.
● Earn rewards and badges for completing challenges.

Download Zigazoo for your child today and watch them discover the joy of Zigazoo for themselves!

Privacy Policy: https://www.zigazoo.com/privacy-policy\",\n \"scoreText\": \"3.9\",\n \"score\": 3.8861387,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.zigazoo.zigazoo\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.zigazoo.zigazoo/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.zigazoo.zigazoo/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.zigazoo.zigazoo/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.zigazoo.zigazoo/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Minecraft Education\",\n \"appId\": \"com.mojang.minecraftedu\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.mojang.minecraftedu\",\n \"icon\": \"https://play-lh.googleusercontent.com/srX4P8iSR3lrhsj-t9RDehAN0-dU45T2JH-ahwHd28xINwSpGdNGjYLm-SPmONQX1s0\",\n \"developer\": {\n \"devId\": \"Mojang\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Mojang\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"THIS APP IS FOR SCHOOL AND ORGANIZATIONAL USE.

Minecraft Education is a game-based platform that inspires creative, inclusive learning through play. Explore blocky worlds that unlock new ways to tackle any subject or challenge.

Dive into subjects like reading, math, history, and coding with lessons and standardized curriculum designed for all types of learners. Or explore and build together in creative open worlds.

USE IT YOUR WAY
With hundreds of ready-to-teach lessons, creative challenges, and blank canvas worlds, there are lots of ways to make Minecraft Education work for your students. It’s easy to get started, no gaming experience necessary.

PREPARE STUDENTS FOR THE FUTURE
Help learners develop key key skills like problem solving, collaboration, digital citizenship, and critical thinking to help students them thrive now and in the future workplace. Spark a passion for STEM.

GAME-BASED LEARNING
Unlock creativity and deep learning with immersive content created with partners including BBC Earth, NASA, and the Nobel Peace Center. Inspire students to engage in real-world topics with culturally relevant lessons and build challenges.

KEY FEATURES 
- Multiplayer mode enables collaboration in-game across platforms, devices, and hybrid environments
- Code Builder supports block-based coding, JavaScript, and Python with intuitive interface and in-game execution
- Immersive Reader helps players read and translate text 
- Camera and Book & Quill items allow documentation and export of in-game-creations
- Integration with Microsoft Teams and Flipgrid supports assessment and teacher controls

Minecraft Education licenses can be purchased with Admin access to a Microsoft 365 Admin Center account. Talk to your Tech Lead for information on academic licensing.

Terms of use: The terms that apply to this download are the terms that were presented when you purchased your Minecraft Education subscription.

Privacy policy: https://aka.ms/privacy\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9639697,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.mojang.minecraftedu\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.mojang.minecraftedu/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.mojang.minecraftedu/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.mojang.minecraftedu/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.mojang.minecraftedu/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Nerd AI - Homework Helper\",\n \"appId\": \"com.codeway.homework\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.codeway.homework\",\n \"icon\": \"https://play-lh.googleusercontent.com/6qFdYeZDA1EbhPMBCrjvMM5omtWPeki2XD_UrmMNQ_SulxV1QmjKiqr-cLoidOFfhro\",\n \"developer\": {\n \"devId\": \"Codeway Dijital\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Codeway%20Dijital\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Powered by the latest AI technology, Nerd AI is here to help you breeze through your studies. With a range of powerful features, Nerd AI transforms the way you approach writing, language learning, summarizing, coding, and expanding your knowledge on any topic.

WRITE EFFORTLESLY
Say goodbye to the writing struggles and hello to a world of effortless creativity. With our cutting-edge features, you can generate compelling essays, captivating blogs, and polished presentation scripts with utmost ease. Customize the word count and writing tone to perfectly match your requirements or cater to your specific audience.

IMPROVE LANGUAGE SKILLS
Ready to level up your language skills? Nerd AI has got your back! Our intelligent grammar hints and text translation tools will help you become a linguistic maestro.
SUMMARIZE
Drowning in a sea of reading assignments? Fear not! Nerd AI is here to save the day. Summarize any text, book, or article in a matter of seconds. Get the essential insights and key takeaways at a glance, making your reading experience a breeze.

REWRITE
Shape your words like a pro with Nerd AI's rewriting capabilities. Whether you need to paraphrase, simplify, continue texts, or fine-tune your writing drafts, we've got you covered. Make your writing shine and convey your thoughts with precision.

LEARN TO CODE
You want to learn to code but have no idea where to start? No problem! Nerd AI provides comprehensive assistance with any programming language. Understand the logic behind any code as Nerd AI explains them
d take your coding skills to new heights. Input your code, and Nerd AI will check and optimize it for you, paving the way for coding success!

TRIVIA QUEST:
Knowledge is power, and Nerd AI loves to challenge your intellect! Engage in stimulating trivia quests covering a wide range of topics.

Feel the power of Nerd AI as it transforms the way you write, learn languages, summarize texts, rewrite content, and delve into the world of coding. Download now and experience the joy of seamless learning and creativity!You want to learn coding but don't know where to start? Nerd AI is here to help. It will help you with any programming language, explain the logic of any code. Input your codes to Nerd AI and it will check and optimize them for you.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.51,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.codeway.homework\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.codeway.homework/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.codeway.homework/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.codeway.homework/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.codeway.homework/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"ABCmouse.com\",\n \"appId\": \"mobi.abcmouse.academy_goo\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/mobi.abcmouse.academy_goo\",\n \"icon\": \"https://play-lh.googleusercontent.com/da-qr5z6yxOzlL_6UfsJHjUrRkrb_STRaCcfIG-1jYOBuRn4HhwMNzGAWmKhVJjZtw\",\n \"developer\": {\n \"devId\": \"Age of Learning, Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Age%20of%20Learning%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Math and Reading for Kids 2–8

ABCmouse is the award-winning learning program that covers reading, math, art, music, and more for kids ages 2 to 8. Created by teachers and education experts, it has 10,000+ exciting Learning Activities for children at all academic levels.

Key Features

The ABCmouse Early Learning Academy is the research-validated program that kids 2–8 love to play with as they learn:

• Full standards-based curriculum for learning on mobile devices
• Trusted by teachers and designed by early learning education experts
• Used in more than 70,000 classrooms and in nearly half of all U.S. public libraries
• 10 levels, over 850 lessons, and 10,000+ individual Learning Activities
• All academic subjects for toddlers, preschool, kindergarten, 1st grade, and 2nd grade
• Accelerates children’s development of early literacy and math skills
• Helps ensure kindergarten readiness and 3rd grade readiness
• Covers math, reading, science, social studies, art, and music across all levels
• Thousands of books, videos, puzzles, printable activities, songs, games, and animations
• 900+ books and activities in Spanish
• Customizable Avatar, My Room, My Hamster, and Pet Park features
• Step-by-Step Learning Path and independent learning
• Great for homeschoolers and learning on the go
• Easy to track and monitor progress
• Winner of prestigious Mom’s Choice GOLD, Teachers’ Choice, and Parents’ Choice GOLD Awards
• 100% safe and kid-friendly environment!

Subscription Options

• Subscription automatically renews unless auto-renew is turned off at least 24-hours before the end of the current period
• Account will be charged for renewal within 24-hours prior to the end of the current period, and identify the cost of the renewal
• Subscriptions may be managed by the user and auto-renewal may be turned off by going to the user's Account Settings after purchase

See our full Terms and Conditions at:
http://www.abcmouse.com/tandc

View our Privacy Policy at:
http://www.abcmouse.com/privacy

Min Specs for Android Tablet/Phone:
Android Version: 9.0
Memory (RAM): More than 4GB RAM
Storage: 16 GB\",\n \"scoreText\": \"3.9\",\n \"score\": 3.917296,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=mobi.abcmouse.academy_goo\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/mobi.abcmouse.academy_goo/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/mobi.abcmouse.academy_goo/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/mobi.abcmouse.academy_goo/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/mobi.abcmouse.academy_goo/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Headway: 15-Min Book Summaries\",\n \"appId\": \"com.headway.books\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.headway.books\",\n \"icon\": \"https://play-lh.googleusercontent.com/PUd0iyL_i0ayrlU5h3LA31ebg4BPsjh-Zr-3DITtW6eCx3WYqQ0oOFZA8VgAb5dvnj0\",\n \"developer\": {\n \"devId\": \"Books Made Easy Corp\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Books%20Made%20Easy%20Corp\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"More than 18 million people have already joined the Headway community to become the best versions of themselves. How about hopping along on this self-growth journey?

WHAT YOU GET WITH HEADWAY

• 1500+ books summaries with the world’s best ideas
Learn the main insights from any nonfiction title in less than 15 minutes. Whether you want to listen or read, we have you covered with concise summaries on any topic.

• Personal growth plan
Set your goals and start a 30-day personal growth plan. Track your progress, learn new skills at your own pace, and enjoy the process of becoming a better you!

• Gamified challenges
Boost any life area with our gamified challenges: Success, Wealth, Healthy Relationships, Modern Parenting, Self-Confidence, Emotional Intelligence, and many more. Choose the area you want to improve and follow the challenge to see excellent results in less than a month.

• Daily insights
Start your day by tapping through a portion of daily wisdom. It’s the best way to enhance your morning routine and maintain a learning habit.

• Spaced Repetition feature
This recall technique helps turn your favorite insights into flashcards and go through them whenever you want. It’s also an excellent tool for those learning English, as you can turn any unknown word into a flashcard and quickly memorize it.

• Highly personalized approach
We pick every piece of bite-sized content according to your goals and needs.

• Quality of summaries
Our professional writers and editors polish every key idea in our hand-crafted content to create the best learning experience.

WHAT 18M+ USERS HIGHLIGHT
• Inspiring & motivating
• Huge library of book summaries
• Easy to read & listen
• Would recommend

WHAT MEDIA SAY ABOUT US
“Headway is a bite-sized learning app for those who strive to grow. Helping users worldwide to become happier and more confident, their subscription-based service is designed to be worked into a busy schedule.” — Daily Mail

“Professional writers and editors of the Headway team up with the best voice actors, moderators, and other team members to deliver an experience that is unmatchable in terms of quality.” — Mobile App Daily

“Whether you’re taking a 15 minutes break, commuting to and from the workplace, or stuck in traffic, you can use the app to learn productivity or leadership hacks.” — MakeUseOf

Got an idea about how to make your growth with Headway better? Please email support@get-headway.com, and our Support Jedis will pass it on to the rest of the team.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4567504,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.headway.books\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.headway.books/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.headway.books/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.headway.books/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.headway.books/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Plant App - Plant Identifier\",\n \"appId\": \"com.scaleup.plantid\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.scaleup.plantid\",\n \"icon\": \"https://play-lh.googleusercontent.com/iEXBv8yC4qBXHO3K-DdKDz4zbNobBlPwaNgrl0ggy59TDp8lJqbNL0pKGKy3uVp88Q\",\n \"developer\": {\n \"devId\": \"ScaleUp\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/ScaleUp\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Plant App identifies more than 12,000+ plants with 95% accuracy-better than most human experts.

Most accurate plant Identifier app on the market with the latest AI plant identification technology.

Did you just come across a flower, herb, or weed that you don't know?
Simply take a photo of the plant and Plant App will complete a plant identification to answer all your questions about it!

Take care of your plants with Plant App — keep a journal to see how they grow, use reminders to help them thrive.

Our plant identification engine is always picking up new knowledge from experts and professionals, and it's all at your fingertips right now. Simply discover plants around you, picture this plant, identify plants, and you'll gain a new appreciation for nature.

–PLANT APP FEATURES–

PLANT IDENTIFIER 🌴
Identify plants instantly with our app! Our database contains over 12,000 plants, including flowers, succulents, and trees. To identify a plant, simply snap a photo or upload one from your gallery. But that's not all! Our plant identifier feature isn't limited to plant identification. We also have additional features like tree identification, flower identification, and weed identification.

We're proud to offer the most accurate plant identifier app on the market, which includes additional features like tree identifier, weed identifier, and flower identifier.


PLANT CARE & DISEASE IDENTIFICATION 🔍
Identify plant diseases to quickly figure out ways of treating your plant.
Take a photo to determine diagnoses. Plant App will eliminate any potential disease-causing factors and notify you if your plant is healthy. Plant App will tell you if it needs special attention and how to take care of it. You'll receive comprehensive information about the condition, its causes, treatments, and prevention measures.

PLANT CARE GUIDES 🍊
Imagine, you receive a lovely flowering plant for your birthday. However, after a few weeks, it begins to send you signals that it is not at ease. How frequently has this happened to you? To keep your plant alive, you must understand how much water, light, and fertilizer it requires. PlantApp keeps all of this information in one place.
Plant care guides are essential for healthy plants!

WATER CALCULATOR 💧
Get customized watering recommendations, based on your plant type and the size of a pot.

NOTES AND REMINDERS ⏱
Have you forgotten to water your plants on time? Not any longer! Set up plant care reminders to receive notifications when it's time to water, fertilize, or repot your plant. If your plant has specific needs, you can even create custom reminders. Don't let your plant wither without timely reminders.

PERSONAL PLANT COLLECTION - MY GARDEN 🌺
Create your own garden and plant collections. Add plants in your home and confidently grow and care for your plants with the support and inspiration you need.

RECOMMENDED ARTICLES 📙
Learn about the variety of flora around the world by reading enlightening articles every day.
What kind of plant grows the quickest, do you know? Or what flower once had a value greater than that of gold? Knowledge is power. You will have this power by Plant App's in-depth plant descriptions and fascinating insights.

Get Plant App plant scanner & start your road toward being a true expert on nature right away. One tap will provide you all you need!


Email: info@plantapp.app
Website: https://plantapp.app
Terms of use: https://plantapp.app/terms
Privacy: https://plantapp.app/privacy\",\n \"scoreText\": \"4.6\",\n \"score\": 4.589534,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.scaleup.plantid\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.scaleup.plantid/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.scaleup.plantid/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.scaleup.plantid/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.scaleup.plantid/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"DMV Written Test: DMV PERMIT\",\n \"appId\": \"com.dmvwrittentest.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.dmvwrittentest.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/H-7lySGOizgS-isn0BMWnY_fpRKVvbgwIsBHo75I82pYBTef0kMSpgc85KzsbXYEbQ5v\",\n \"developer\": {\n \"devId\": \"DMV Written Test\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/DMV%20Written%20Test\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Pass your DMV permit test the first time with DMV WRITTEN TEST. We give you free, state-specific DMV practice tests that are the same as the real thing. Practice your driving permit test through the most diversified DMV test app.

To pass the learners permit test, you will need to read the most recent edition and we have just updated our 2022 Driving and CDL Prep app for all 50 states.

HOW IT WORKS:
• No Need for the Driver's Manual: We provide you with the most up-to-date questions based on the current version of your state's official driver's handbook. Don't be surprised with outdated test questions. We cover every DMV, DDS, BMV, MVA, RMV, DOR, MVC, MVD, DOT, DOL in the country.
• Take Comprehensive Practice Tests: Our tests cover every section of the driver's manual so no matter what state you're in, you'll be well prepared. Go through our practice tests and when you take the real thing, it will seem easy.
• Pass the DMV Test: Once you've practiced enough and are passing the practice exams, you should be ready to make an appointment with the DMV. With a 99% chance of passing, you'll be ready to pass the test the first time!

PRACTICE DMV TESTS MAKE YOU PASS FASTER
A whopping 5 out of 10 people fail the DMV test the first time they take it, but the people that use DMV WRITTEN TEST see a 99% pass rate. We also let you take every sample permit test and Drivers license test for free as many times as needed so you can be sure you're ready for the real thing.

WHY CHOOSE DMV WRITTEN TEST?
• State-Specific Tests: Because each state has different driving laws and restrictions, we've tailored our tests to each specific state. This isn't one of those generic Driving practice tests.
• Accurate & Up-to-Date: We constantly monitor the newest versions of your state's official driving handbook and traffic laws and then update our test questions accordingly. They are always accurate and up to date.
• The Same Content: Since we take our facts directly from the handbooks, it allows us to create practice test questions that are very similar, if not identical, to the questions found on the actual driver's license test.

WHY WE’RE SO EFFECTIVE
• Know what to expect: Our tests have the same number of questions and the same passing score requirements as the actual tests so you'll know what to expect.
• Feel confident as you walk into the DMV: You've seen it all before and know what's coming. You got this!
• Stay motivated to study: With our practice tests you'll learn as you go and see your own progress in real time.

HAVE ANY QUESTIONS OR COMMENTS?
If you have any questions, want to report a bug, or notice any errors, feel free to reach out to us.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7601113,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dmvwrittentest.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.dmvwrittentest.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.dmvwrittentest.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.dmvwrittentest.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.dmvwrittentest.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Learn to Read - Duolingo ABC\",\n \"appId\": \"com.duolingo.literacy\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.duolingo.literacy\",\n \"icon\": \"https://play-lh.googleusercontent.com/gnhFgUBwTzfRhBsNnkEHiY68xmYVlovPF9COih3ASF1Q48qPlWTOkyDyh27u10NXXNg\",\n \"developer\": {\n \"devId\": \"Duolingo\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Duolingo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"From the creators behind Duolingo, the world’s #1 education app, comes Duolingo ABC! Duolingo ABC is the fun, hands-on way for your child to learn to read and write in English! From preschool to first grade, engage your child with delightful stories for kids and bite-sized lessons teaching the alphabet, phonics, sight words, vocabulary, and more.

The Duolingo ABC kids reading app offers over 700 hands-on reading lessons designed to help kids learn and love to read. We make learning to read both fun and effective with lessons and educational games for kids that include multi-sensory activities, such as tracing, drag-and-drop prompts and more. Our educational learning app offers personalized lessons so your child can learn at their own pace.

Develop reading comprehension skills with educational lessons specially designed to support your child’s lifelong love of learning! Whether your child is in pre-K, preschool, kindergarten, or 1st grade, Duolingo ABC has delightful stories for kids filled with engaging pictures meant to inspire and support your child along their educational journey.

Help your child learn to read new sight words with our toddler books and kids stories that let you highlight each word spoken. This helps build your child’s multi-sensory learning skills and can help them learn to read independently.

Duolingo ABC makes your child’s education a fun and engaging experience. Our learning app combines educational lessons with fun reading games perfect for kids and toddlers alike! Our rewards work in tandem with bite-sized reading lessons and fun school games for kids, keeping them motivated to learn while building their confidence.

Discover ad free kids educational games filled with exploration and curiosity on Duolingo ABC. Now your kids can have fun while they sound out words, practice reading and writing in English, and build reading comprehension and literacy skills for a lifetime!

DUOLINGO ABC FEATURES:

Kids Learn to Read
- Reading games: Our kids reading app provides hands on learning they will love
- New lessons are added often, so your child never runs out of educational content
- Reading and phonics for kids: Bite-sized lessons help kids learn phonics, sight words & vocabulary
- Every reading lesson is built to feel like a game, so kids can learn to read while having fun

Learning Activities For Kids
- Enjoy fun educational games like letter tracing and gamified stories, suitable for even the youngest learners
- Toddler, kindergarten or first grade, all kids can enjoy the Duolingo ABC learning app while having fun
- From toddler books to 1st grade learning games, Duolingo ABC has lessons for every child
- Designed by literacy & early-education experts to develop kids’ skills in phonics, sight words, reading & more

Kid-Safe & Ad-Free
- Our educational learning app prioritizes a kid-friendly experience
- Rest easy, parents. There are no ads or in-app purchases to worry about
- Content is focused on preschool, kindergarten and first grade level lessons, so you can be safe knowing it is always age-appropriate

Offline Learning
- Your child’s educational journey has no limits with Duolingo ABC’s offline learning capabilities
- On a plane? At a restaurant? Duolingo ABC can be used anytime, anywhere
- Enjoy playing and learning offline - so kids can learn wherever you go

Duolingo ABC is an educational learning app that offers immersive lessons to teach preschool to first grade kids to learn and love to read. Download today and spark your child’s love for learning.

--

Privacy Policy: https://www.duolingo.com/privacy
Terms of Service: https://www.duolingo.com/terms\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1603775,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.duolingo.literacy\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.duolingo.literacy/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.duolingo.literacy/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.duolingo.literacy/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.duolingo.literacy/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Elevate - Brain Training Games\",\n \"appId\": \"com.wonder\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.wonder\",\n \"icon\": \"https://play-lh.googleusercontent.com/CZ6XpP4sihh0VGkMFRif4FVplpvQnaUw5rujfc-xRz2GHDAa9eRwlsk23qegQEay\",\n \"developer\": {\n \"devId\": \"Elevate Labs\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Elevate%20%20Labs\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Elevate is an award-winning brain trainer designed to improve speaking abilities, processing speed, memory skills, mental math, vocabulary, and more. Each person is provided with a personalized learning program that adjusts over time to maximize results.

The more you train with Elevate, the more you'll improve critical cognitive skills that boost productivity, earning power, and self-confidence. Over 90% of users notice improvements in vocabulary, memory, math skills, and overall mental sharpness by regularly engaging with our games and exercises. Elevate is designed to test and enhance cognitive abilities, making it an excellent educational tool. Elevate is for everyone. Your age or profession doesn't matter. Adults from all backgrounds can benefit from our app.

Elevate offers a 7-day free trial as well as a free version. To access the free version, tap the X in the upper left-hand corner after you sign up for an account.

IN THE NEWS

“Elevate comes out ahead” in the battle of the brain training apps. - CNET

Elevate is a “cognitive pick-me-up” with games that are “good for mental breaks throughout the workday.” - Washington Post.

FEATURES

40+ Brain Training Games: Improve cognitive skills like focus, memory, processing, math, vocabulary, grammar, precision, and comprehension with 40+ brain training games and puzzles.
Performance Tracking: Measure your performance against yourself and others. Weekly reports highlight your key accomplishments and learning opportunities.
Personalized Workouts: Customize the focus of your daily workouts to train the mind skills you need most. Select from diverse tests, games, and puzzles to stay sharp, increase focus, and build cognitive skills.
Adaptive Progression: Train your brain with math and word exercises that get harder as you progress to ensure your experience remains challenging, testing your cognitive abilities with sharpened concentration.
Workout Achievements: Start a workout streak with our brain trainer app and stay motivated with 150+ achievements to win while you train your mind.
• And more!

WHY YOU NEED ELEVATE

• Express yourself more effectively in writing by honing your grammar skills and learning to write with clarity, persuasiveness, and concision.
• Improve your spelling, punctuation, and grammar. Avoid common writing pitfalls.
• Become a better reader and learner. Flow through words with ease. Improve your concentration. Read everyday materials faster and with greater understanding.
• Expand your vocabulary. Learn how to use thousands of new words through enjoyable games and puzzles.
• Quickly and easily solve everyday math problems. Get better at comparing prices, splitting bills, and calculating discounts and markups.
• Boost your focus and memory skills. Get shopping lists out of your pocket and into your mind. Never forget to buy the milk you need or the chocolate you've been craving.
• Speak confidently with strong grammar. Advance your speech with new words. Become more articulate and develop clear expression and tone.
• Feel mentally sharper as an adult. Exercise your mind and continue to learn with Elevate's proven training program.

RESEARCH BEHIND ELEVATE

Elevate's brain games and puzzles are designed in collaboration with educational experts and are based on proven educational learning techniques. Our brain trainer’s mental workout algorithms draw from cognitive research in attention and memory studies, providing exercises that test and enhance focus and memory skills. Independent research on adults proves Elevate's effectiveness, highlighting its educational value. 93% of people who use Elevate frequently feel mentally sharper and more confident in key skills.

For additional information about the app, please read our Terms of Service.
(https://www.elevateapp.com/terms) and Privacy Policy (https://www.elevateapp.com/privacy).\",\n \"scoreText\": \"4.6\",\n \"score\": 4.602549,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.wonder\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.wonder/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.wonder/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.wonder/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.wonder/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"IXL\",\n \"appId\": \"com.ixl.ixlmath\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.ixl.ixlmath\",\n \"icon\": \"https://play-lh.googleusercontent.com/KXdJB5aXz-u9QcPLnXrqSj-uxE15o3Hokft77hU5fiDFUbwucHbqrYGGPtkah90hxw\",\n \"developer\": {\n \"devId\": \"IXL Learning\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/IXL%20Learning\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"IXL is personalized learning! Trusted by over 1 million educators and parents, IXL is proven to accelerate student achievement. And with the award-winning IXL app, students can master skills anytime, anywhere!

See how IXL meets the unique needs of over 14 million learners (and counting!):

SUPERIOR SKILL-BUILDING
With IXL’s full curriculum of over 8,000 skills, students of all levels can learn the exact topics they need, whether they’re reviewing past concepts or exploring new territory. Immediate feedback and step-by-step answer explanations help students work through their mistakes and make lasting progress. Plus, question difficulty adapts to challenge students at just the right level and help them grow.

MATH MASTERY
With IXL’s preK-12 curriculum, every learner can excel in math! From skip-counting with pictures to graphing quadratic functions, students interact with dynamic problem types that bring each concept to life. And with unlimited questions to explore, students can practice as much as they need to master each skill, and never see the same problem twice.

LANGUAGE ARTS LEARNING
IXL’s preK-12 curriculum helps build strong readers and writers! From comprehension to composition, IXL breaks down each concept into highly targeted skills that help students grow from where they are. Fun and relevant questions engage students as they learn new vocabulary, correct grammar mistakes, analyze text, strengthen writing skills, and more.

SCIENCE, SOCIAL STUDIES, AND SPANISH
Build knowledge across all core subjects! With comprehensive curriculum in 2nd through 8th grade science and social studies, students can learn exciting and relevant concepts about the world around them. And with foundational Spanish, students can get started on the path toward Spanish fluency!

REAL-TIME DIAGNOSTIC
IXL’s Real-Time Diagnostic pinpoints each student’s current knowledge level in math and English language arts. As students answer questions, they’ll discover more about themselves, and reveal personalized recommendations on the best skills to learn next!

IMMERSIVE EXPERIENCE
Interactive features, from drag-and-drop questions to graphing tools, allow students to engage with the material in new ways. With handwriting recognition, students can easily write in math answers with their fingertips. On tablets, students can work through each problem by writing on their screen—no scrap paper needed! Plus, colorful awards highlight students’ accomplishments and make learning fun!

PROVEN RESULTS
Research has shown that IXL improves student outcomes more than any other product or method. IXL is trusted by over 1,000,000 teachers worldwide!

ACTIONABLE ANALYTICS
View reports on all progress at IXL.com! Tackle any trouble spots with specific insights and clear next steps. And celebrate reaching each new milestone with an official certificate!

Practice 10 questions each day for free. To accelerate growth, become an IXL member! For $19.95 per month, you’ll get access to a fully personalized learning experience with comprehensive curriculum, meaningful guidance, progress tracking, fun awards, and more!

IXL is kidSAFE certified and COPPA-compliant. For more information, please visit:
Membership details: https://www.ixl.com/membership
Privacy Policy: https://www.ixl.com/privacypolicy\",\n \"scoreText\": \"3.7\",\n \"score\": 3.6818478,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ixl.ixlmath\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.ixl.ixlmath/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.ixl.ixlmath/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.ixl.ixlmath/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.ixl.ixlmath/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Toca Boca Jr Hair Salon 4\",\n \"appId\": \"com.tocaboca.tocahairsalon4\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.tocaboca.tocahairsalon4\",\n \"icon\": \"https://play-lh.googleusercontent.com/S92y0QAxH5FpWJq3YfS9yZc82YcoKTLlVplBsJP60vXGxdJiGi7ZSy-q3DJrhGr5x_J6\",\n \"developer\": {\n \"devId\": \"Play Piknik\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Play%20Piknik\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to Toca Boca Hair Salon 4! Unleash your creativity in the salon and whip up any style you can imagine. Whether you choose a character and create a brand-new look you’ve dreamed up or just see where the tools take you, each makeover is an adventure. Get creative with makeup, face paint, hair and beard tools, and much more!

Toca Boca Hair Salon 4 is part of Piknik – one subscription, endless ways to play and learn! Get full access to the world's best preschool apps from Toca Boca and Sago Mini with an Unlimited Plan.

CUT, COLOR, AND STYLE AT THE HAIR AND BEARD STATION
Trim, shave, and even re-grow hair anywhere on your character’s head! This station has all the hot tools you need for curling, straightening, and texturizing. In the mood to create something colorful? Grab the bottles of hair dye and choose any color of the rainbow for a bold new look. Your hair salon, your rules!

GET CREATIVE WITH MAKEUP IN THE FACE STATION
Expand your hair salon by purchasing the face station! You’ll find all kinds of makeup in every color for endless makeover options. Create lush lashes with mascara, and pick a tool to put on eyeliner, eyeshadow, or blush! In the mood for a bolder look? Grab the face paints and draw right onto your character’s face for a creative new style that’s anything but boring.

PICK OUT A NEW OUTFIT AT THE STYLE STATION
What’s a makeover without some new clothes to go with it? There are hundreds of styles to suit that new look at the style station! Change up your character’s outfit, pick out some stickers, and add a finishing touch with accessories like glasses and hats.

SNAP A PIC IN THE PHOTO BOOTH
Choose a background, watch them strike a pose, and snap a picture of your character’s new style! You can even save a picture of your character’s makeover in a photo book and return to styling them later.

SCRUB UP SOME SUDS AT THE SHAMPOO STATION
Ready for a fresh start? Wash hair, towel off, and blow dry at the shampoo station. Watch their face paint and makeup drip away so you can create a brand-new look at the salon!

PRIVACY POLICY
All of Toca Boca’s products are COPPA-compliant. We take privacy very seriously, and we’re committed to providing safe and secure apps for kids that parents can trust. To learn more about how we design and maintain safe games for kids, please read our -
Privacy policy: https://playpiknik.link/privacy-policy
Terms of use: https://playpiknik.link/terms-of-use

ABOUT TOCA BOCA
Toca Boca is an award-winning game studio that makes digital toys for kids. We think playing and having fun is the best way to learn about the world. Therefore we make digital toys and games that help stimulate the imagination, and that you can play together with your kids. Best of all – we do it in a safe way without third-party advertising.\",\n \"scoreText\": \"3.8\",\n \"score\": 3.754018,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.tocaboca.tocahairsalon4\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.tocaboca.tocahairsalon4/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.tocaboca.tocahairsalon4/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.tocaboca.tocahairsalon4/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.tocaboca.tocahairsalon4/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Starfall\",\n \"appId\": \"air.com.starfall.more\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/air.com.starfall.more\",\n \"icon\": \"https://play-lh.googleusercontent.com/QRrnPBiqQWpy-WkUiYF4czeIh7A1nRwF3QySBON6gBC_qEjEqTjQIGIU__5d4PpwYZk\",\n \"developer\": {\n \"devId\": \"Starfall Education Foundation\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Starfall%20Education%20Foundation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Read, learn, and play with fun activities, games, and songs on Starfall! Covers reading, math, music, and more -- preschool to fifth grade. Includes free and subscriber content.
Join Zac the Rat and his friends on an exciting learning journey, starting with the ABCs and 123s and advancing up to grade 5 grammar and mathematics. Starfall's playful open format intuitively guides children through sequential learning objectives for reading, math, art, music, and social subjects like kindness and caring.

*Highlights*

*Reading (phonics, fluency, grammar) -- ABCs, Learn to Read, I’m Reading, Talking Library, Punctuation, Parts of Speech
*Math -- Numbers, Addition and Subtraction, Multiplication and Division, Geometry and Measurement, Fractions
*More -- Holiday Activities, Nursery Rhymes, Sing-Alongs, Interactive Calendar

*Why Starfall*

*Research based, teacher tested, child approved. Starfall's systematic approach was created by experienced educators using time-tested instructional methods.
*Try it for free. All of the basics for learning how to read are available to everyone.
*No advertisements. Whether a free user or subscriber, you won’t see any ads.
*Pass it forward! Subscribers gain access to hundreds of additional activities and support the free sections for others to enjoy.

*What people are saying about Starfall*

Listed on PC Magazine’s “15 best Online Learning Services for Kids,” Think Five’s “Top 5 Most Used Apps by Elementary Teachers,” and as one Parent's Magazine's "70 Best Apps for Families."

"Kids can learn about letter recognition, phonics, and reading. Skill acquisition is appropriately gradual... Starfall does an excellent job of offering clear and intriguing early literacy lessons." —Common Sense Media

“I truly believe that Starfall set the foundation for my future.”
–Sarah, undergraduate at Stanford University

*Subscription information*

If you choose to purchase a Starfall subscription, a $5.99 (USD) payment will be applied to your Google Play account upon confirmation of purchase and monthly after that. Your subscription will automatically renew unless you cancel at least 24 hours before the end of the current period. This subscription is valid only for home use on devices signed in to your Google Play account. Google Play does not support Family Library or family payment methods for in-app subscription purchases.

*Additional Info*

This app requires an internet connection and is intended for Pre-K, Kindergarten, and Grades 1-5. It also supports English language development, special education, and homeschool environments.

Privacy Policy: https://teach.starfall.com/privacy
Terms of Service: https://teach.starfall.com/terms
About Starfall: https://teach.starfall.com/about
Starfall Education Foundation is a 501(c)(3) nonprofit organization.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0985494,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=air.com.starfall.more\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/air.com.starfall.more/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/air.com.starfall.more/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/air.com.starfall.more/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/air.com.starfall.more/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Epic: Kids' Books & Reading\",\n \"appId\": \"com.getepic.Epic\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.getepic.Epic\",\n \"icon\": \"https://play-lh.googleusercontent.com/4C7CwtFYnqg_nlr9djM7EH0uZHq2iqpad3K1LEBTD0471EuTqKIZZp-dPf3YmseaPN4\",\n \"developer\": {\n \"devId\": \"Epic! Creations Inc\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Epic!%20Creations%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Epic is the world’s largest digital library for kids! Our fun, kid-safe, interactive reading app fuels curiosity and reading confidence by letting kids freely explore their interests with instant access to 40,000+ books, audiobooks, learning videos and more.

Anytime, anywhere: Access our library from any Apple device. You can even download books to read offline!

Books that read to them: In addition to our library of more traditional ebooks, we have a huge collection of Read-To-Me books and audiobooks. Featuring talented voice actors, fun music and exciting sound effects that bring stories to life!

Multilingual: The majority of books on Epic are in English, but we also have Spanish-, French- and Chinese-language books to engage readers of different backgrounds and interests.

Fun rewards and learning tools: Reading Buddies, badges and quizzes keep them motivated to read and learn. Spotlight Words and audio-enabled Dictionary Lookup teach vocabulary and pronunciation.


FOR FAMILIES: EPIC UNLIMITED
A paid subscription beginning with a 7-day free trial. Cancel anytime.


Up to 4 child profiles, so each kid can enjoy a personalized reading experience.
Parent dashboard lets you see what they’re reading and follow along with their progress.
95% of Epic parents say Epic helped improve their child’s reading skills.


FOR EDUCATORS: EPIC SCHOOL
Epic School is free for educators and students to use during the school day.

ELA Tools: Filter titles by AR, DRA, F&P, grade level and more.
Quizzes, Dictionary Lookup and Spotlight Words help build skills.
Help with Daily 20: Teachers can easily assign and share books, then track daily and weekly reading.
Multilingual books and fun reading formats make reading accessible for every student.
9 out of 10 Epic Educators would recommend us to colleagues.
Coming soon! Epic School Plus, a district-funded premium offering that gives educators and students 24/7 access to the full Epic library.


PRESS AND EXPERT REVIEWS
Epic has been featured on The TODAY Show, CNET and Refinery 29, as well as in The Wall Street Journal, Parents Magazine, USA Today, Forbes, Parenting.com and more.

“Epic strikes the perfect balance between educational and fun, and should allow parents to feel more confident about introducing the iPad into their children’s daily lives as a tool.” –TechCrunch

"Get access to thousands of books on all subject matters" –Parenting.com

"Epic is incredibly valuable because it gives students exposure to books that they wouldn't get from a library or our classroom." –Cindy, Epic Educator Ambassador

Privacy Policy
getepic.com/privacy

Terms of Service
getepic.com/tos\",\n \"scoreText\": \"4.3\",\n \"score\": 4.270185,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.getepic.Epic\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.getepic.Epic/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.getepic.Epic/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.getepic.Epic/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.getepic.Epic/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Brainly – Homework Math Solver\",\n \"appId\": \"co.brainly\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/co.brainly\",\n \"icon\": \"https://play-lh.googleusercontent.com/KnPtV_tIErMa7LZ7liBenqGaeHId346O01akTCWMGWb7xnpO3sXKTaV5E5NxHvPDMaM\",\n \"developer\": {\n \"devId\": \"Brainly\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Brainly\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Brainly is a powerful Math solver app that can help you with your school doubts. Solve Math problems in Algebra, Trigonometry, & Geometry with correct & expert-verified answers instantly. With Brainly, you can find solutions to your math homework. Math answers have never been easier to find! Just use our math scanner, ask our community, or chat with a tutor for one-on-one help with step-by-step solutions for your math homework problems.

• 24/7 school homework app access - Unlimited access, anywhere, anytime with Brainly.
• Quick math problem solver - Math Questions are answered in minutes
• Expert-vetted answers - A team of subject experts moderators verify answers daily
• Ask by pic with math camera scanner feature
• Solve Math Problems by using Brainly Scan to Solve: learn math with step-by-step guidance on Algebra, Trigonometry, Geometry, & Calculus, including AP levels
• Find Math answers specific solutions created by our experts for your textbooks.
• Real-time help from pro math tutors with Brainly Tutor (Math, Physics, Chemistry, & Biology tutors)

Math Answer Scanner To Solve Math Problems


Do you ever wish you had a math helper? With Brainly, you'll get help instantly. Use our math scanner & word problem solver to find answers to complex problems. Brainly can work like a fraction calculator, a geometry solver, & an algebra practice tool. It’s like having a math helper in your pocket!
Deal with math concepts, & get instant math answers so you can say, “I’m done with my homework!” So, if you're stuck on a math problem, just use our math calculator as a problem solver.

Get Homework Help from a Community of Experts


With over 350M online study buddies ready to help, you won’t need a homework reminder to find the motivation to learn. Our community of helpful student experts can get your math homework answers in minutes.
It's like having millions of math word problem solvers all at once! All your questions deserve an answer! Our network of moderators ensures not only high-quality homework help but also makes sure that Brainly remains a safe place for learning & math practice.
With Brainly, you can turn learning into a fun challenge, show off your achievements & earn cool badges for answering the trickiest questions.

Get 1:1 Homework Help with Brainly Plus or Tutor


Sometimes, even a math calculator problem solver is not enough. If you're hungry for more quick math answers, you can upgrade to Brainly Tutor for Math, Physics, Chemistry, & Biology answers. With Brainly Tutor, you can instantly get connected to an expert to help you with your math problems.

With Brainly Plus, you can use our math solver without any limits or ads.

With Brainly, You are Learning Your Way! No matter what your math homework struggles are, we’re here to help you get unstuck in the easiest way possible.

Get fun updates from us on:
Instagram @Brainly or Facebook @BrainlyGroup & Twitter @Brainly

For any problems, reach out to our support team: http://brainly.com/contact | contact@brainly.com
Marketing: http://brainly.com
Terms of use: https://brainly.com/pages/terms_of_use
Privacy policy: https://brainly.com/pages/privacy_policy\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2590256,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=co.brainly\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/co.brainly/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/co.brainly/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/co.brainly/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/co.brainly/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Pinkfong Baby Shark: Kid Games\",\n \"appId\": \"kr.co.smartstudy.babyshark_android_googlemarket\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.babyshark_android_googlemarket\",\n \"icon\": \"https://play-lh.googleusercontent.com/x8aJGEIm9G5WCFgXHxyvvAn0x-GB1GtiNO1ek_bAjSqvSiaJjWR7yY72MVcRZcAHmXhu\",\n \"developer\": {\n \"devId\": \"The Pinkfong Company\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/The%20Pinkfong%20Company\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Official Baby Shark APP series, reached 400 million downloads!

Free, creative, and educational baby games on Baby Shark, YouTube's most-watched celebrity!
Watch and sing along to "Baby Shark" in 13 different versions and enjoy free, popular nursery rhyme songs for kids.
Play exciting activities and games for kids including coloring, playing the piano, brushing the shark's teeth, and more free games for kids!
Learning is both safe and fun with Pinkfong Baby Shark!

What's included in this app?

1. Play exciting games with the Shark Family
- Brush Baby Shark's teeth, fight off the germs, and learn about healthy habits!
- Feed and treat hungry Baby Shark with its favorite food - cake, sandwich, salad, apple - and watch its special dance!
- Play racing games for kids and compete against your sea animal friends. Who's the winner?
- Music games for kids! Play Baby Shark songs with sea animals!
- Grandpa Shark's hot clam buns are freshly baked! Help him pick them up!

2. Listen to various versions of Baby Shark songs for kids!
- Watch YouTube's most popular toddler, kids' song "Baby Shark" in different versions : Halloween, Christmas, ABC, and more.
- Watch one of Pinkfong's best toy shows - "A Terrifying Hide and Seek with Baby Shark" - for free!
- Enjoy the videos and learn new words in English, Korean, Chinese, Japanese, Spanish, Portuguese, and Russian!

3. Learn while you play creative, educational games for kids!
- Play musical instruments the sea animal friends, including fish, clams and jellyfish, and make your own music with the piano game.
- Happy birthday! Color the shark family's birthday party - use 12 different crayons, 12 glitters, and various stickers.
- Pop the bubbles and figure out the animal inside - listen to their sounds and learn their names!
- Match cards with the same pair with Mommy Shark and learn the names of sea animals. With those free baby games, children can develop logical thinking and coordination skills.

Are you ready to go on an underwater trip with the shark family?
*Try out the newly added "quick play" feature in the main video tap.


-
• Pinkfong Plus Official Website: https://fong.kr/pinkfongplus/

• About Pinkfong Plus Subscription:
- Join Pinkfong Plus membership and get unlimited access to Pinkfong's best apps!
- Watch videos and play games ad-free.
- Share membership with up to 6 family members.
- Sync devices such as smartphones and tablets using one account.

• Apps Available under Pinkfong Plus:
- Baby Shark World for Kids, Pinkfong Baby Shark, Baby Shark ABC Phonics, Baby Shark Car Town, Pinkfong Dino World, Pinkfong 123 Numbers, Pinkfong Tracing World, Pinkfong Shapes & Colors, Baby Shark Jigsaw Puzzle Fun, Pinkfong Numbers Zoo, Pinkfong Baby Shark Phone, Pinkfong Baby Shark Storybook, Baby Shark Coloring Book, Pinkfong My Body, Pinkfong Police Heroes Game, Pinkfong Guess the Animal, Baby Shark Pizza Game, Baby Shark Makeover Game, Pinkfong Word Power, Pinkfong Mother Goose, Pinkfong Learn Korean, Pinkfong Super Phonics, Pinkfong Fun Times Tables, Pinkfong Baby Bedtime Songs, Pinkfong Birthday Party, Pinkfong Coloring Fun, Pinkfong Hogi Star Adventure, Baby Shark's Dessert Shop + more!

More available apps will be updated soon.

Click the ""More Apps"" button on the home screen or visit Google Play to download the apps!

-

Privacy Policy:
https://pid.pinkfong.com/terms?type=privacy-policy

Terms of Use of Pinkfong Integrated Services:
https://pid.pinkfong.com/terms?type=terms-and-conditions

Terms of Use of Pinkfong Interactive App:
https://pid.pinkfong.com/terms?type=interactive-terms-and-conditions\",\n \"scoreText\": \"3.6\",\n \"score\": 3.6011672,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=kr.co.smartstudy.babyshark_android_googlemarket\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.babyshark_android_googlemarket/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.babyshark_android_googlemarket/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.babyshark_android_googlemarket/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.babyshark_android_googlemarket/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Artsonia\",\n \"appId\": \"com.artsonia.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.artsonia.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/LmKWEUcfSjptr9N00Aupis70TqDVLLU1K9G9tLb2vTeNA9s6kKmtNlQBpimtyWX6ZGe1\",\n \"developer\": {\n \"devId\": \"Artsonia\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Artsonia\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Artsonia is the world's largest collection of student digital art portfolios, showcasing millions of student artworks through our website (www.artsonia.com) and app.

TEACHERS: This app enables teachers and students to take photos of their artwork projects and upload them to an online school art gallery on Artsonia.com. Teachers can also manage their student roster and school projects. Join the thousands of art teachers using our free educational service today!

PARENTS: No more worrying about throwing away your child's masterpieces! Publish those precious memories into an archive of your child's artwork on this free service. Family members can leave comments for the artist and order keepsakes with their child's artwork on it.

STUDENTS: Students can photograph and upload their own artwork directly in the classroom, under the supervision of a teacher participating in Artsonia.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.artsonia.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.artsonia.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.artsonia.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.artsonia.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.artsonia.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Translate now Photo translator\",\n \"appId\": \"com.fasttanslator.appm\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.fasttanslator.appm\",\n \"icon\": \"https://play-lh.googleusercontent.com/1lq7guQv-vfpi2oDpZ9OtTqkawbvK5GY1_doYygPrTq6D0BWMDZFPknZpq25LR92FBc\",\n \"developer\": {\n \"devId\": \"Morgan Likue\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Morgan%20Likue\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \""Translate now" is a translation app with a voice & audio translator, camera & photo translator and text & words translator. It works offline.

Translate photos and images offline within seconds. Just use your camera to translate to Spanish, French, Japanese, Russian, Arab,and many more languages.

Translate very fast and translate now!

Remove the language barrier promptly with this outstanding camera, photo, image, text, voice, and audio translator app. All language translator. Translate now translates to more than 100 languages.

Best speaking translator app!

The app can be used to translate text, voice, audio, conversations, photos, images, and screenshots into Japanese, Russian, German, Arab, Spanish, French, and many more languages.

Real-time translation app that does not need internet, offline and live translation within seconds !!

CAMERA & PHOTO TRANSLATOR

Translate text within photos and screenshots. You can take a photo to get the translation or select an image from the gallery.
Use your picture translator to instantly translate menus, signs and more.

TEXT & WORDS TRANSLATOR

Get translations for text in over 100 languages. Input or copy text and convert it to another language easily.
You can use the translator app to translate words and sentences.

SPEAK & VOICE TRANSLATOR

Use voice translation to translate the speech with high accuracy of voice. The translator application translates the worlds of any audio or song very fast.

The translate voice and audio feature is ideal for travellers. or someone who needs to communicate correctly in other language.

COPY AND SHARE

You can easily share your translated text with your friends and family.

TRANSLATION HISTORY & FAVORITE

The Translate now app provides detailed history for your translations. You can pin and save your most frequent translations for later.

The Translate now app supports the following languages & dialects for translation:

Afrikaans, Arabic (العربية), Bengali (বাংলা), Bulgarian (Български), Bosnian (Bosanski), Cantonese (粵語繁體中文), Catalan (Català), Chinese Simplified (简体中文), Chinese Traditional (繁體中文), Croatian, Czech (Čeština), Danish (Dansk), Dutch (Nederlands), English, Fijian, Filipino, Finnish (Suomi), French (Français), German (Deutsch), Greek (Ελληνικά), Hebrew (עברית), Hindi (हिंदी), Hmong Daw, Hungarian (Magyar), Icelandic (Íslenska), Indonesian, Italian (Italiano), Japanese (日本語), Korean (한국어), Latvian (Latviešu), Lithuanian (Lietuvių), Malagasy, Malay (Melayu), Maltese (Il-Malti), Norwegian (Norsk), Persian (فارسی), Polish (Polski), Portuguese (Português), Querétaro Otomi, Romanian (Română), Russian (русский), Samoan, Serbian-Latin (Srpski-latinica), Slovak, Slovenian (Slovenščina), Spanish (Español), Swahili (Kiswahili), Swedish (Svenska), Tamil (தமிழ்), Telugu (తెలుగు), Thai (ไทย), Tonga (lea fakatonga), Turkish (Türkçe), Ukrainian (Українська), Urdu (اردو), Vietnamese (Tiếng Viê), Welsh, Yucatec Maya, Yoruba.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.580871,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.fasttanslator.appm\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.fasttanslator.appm/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.fasttanslator.appm/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.fasttanslator.appm/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.fasttanslator.appm/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Picture Insect: Bug Identifier\",\n \"appId\": \"com.glority.pictureinsect\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.glority.pictureinsect\",\n \"icon\": \"https://play-lh.googleusercontent.com/reSruQny4c_kT7T1HJ7hWgx73NbnxyVDjDjG3d87l9CxhCE-X6W47WrISGJx0_ItZqY\",\n \"developer\": {\n \"devId\": \"Next Vision Limited\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Next%20Vision%20Limited\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Picture insect is an easy-to-use insect identifier tool that utilizes AI technology. Simply take a photo of an insect or upload one from your phone gallery, and the app will tell you all about it in a second.

Got bitten by an unknown insect but not sure about its toxicity? Wonder the name of the moth you got in your mothing activity? Found pests in your home garden and want to find solutions to get rid of them?

Open the Picture Insect app and point your phone camera toward the insect/pest, and you will have your puzzles solved.

Get the Picture Insect app today and join a community of over 3 million insect enthusiasts worldwide.

Key Features:

Fast and accurate insect ID
- Instantly identify butterflies, moths, and spiders with AI photo recognition technology. Identify 4,000+ species of insect species with incredible accuracy.

Rich insect learning resources
- Full encyclopedia of insects which includes names, appearance, high-definition images, FAQs, characteristics, and more. High-quality articles on the insect field. Your real insect guidebook.

Insect bites reference
- Learn about hazardous insect bites like spiders, mosquitoes, and ants to get prevention tips. Keep your family safe.

Pest detection & control tips
- Scan the bug to identify whether it's a pest, and get helpful info and detection and control hacks.

Record your observation
- Keep track of identified species in your personal collection and easily share them with your friends.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3145657,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.glority.pictureinsect\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.glority.pictureinsect/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.glority.pictureinsect/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.glority.pictureinsect/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.glority.pictureinsect/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Toca Kitchen\",\n \"appId\": \"com.tocaboca.tocakitchen\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.tocaboca.tocakitchen\",\n \"icon\": \"https://play-lh.googleusercontent.com/nhPQcLEUtGcNYdBc1_FVzZT-Oi9qhzEf6O92gn5w8gv03Xb4Qr1GeN-LZ5hMggFZ2Q\",\n \"developer\": {\n \"devId\": \"Toca Boca\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Toca%20Boca\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Do you want to be the head chef of your very own sushi restaurant? Check out Toca Kitchen Sushi, the newest app from Toca Boca 👉 http://bit.ly/TocaKitchenSushi_GooglePlay

Ever wanted to play with your food? Now you can! Toca Boca brings you Toca Kitchen, where you cook, play with and prepare food for four hungry characters. Pick any ingredient and prepare it in your own way. Slice, boil, fry, cook, microwave or mix! Then wait for your hungry friend’s response.

We created this educational app for kids to give the mud cakes a new face, a complete virtual makeover which the kids will love! The characters fearful reactions to different meals will make you giggle. Does the cat like salty fish? Will the boy eat potatoes and greens? Mix and match your own meal! With no high scores, levels or time limits the fun doesn’t have to end in this cooking app.

- Four cute characters to cook for - each with their own favorite food!
- 12 different ingredients that can be prepared in 180 different ways!
- Slice, boil, fry, cook, microwave anything you like!
- Professional and fun kids app design!
- No rules or high scores!
- Kid-friendly interface
- No in-app purchases
- No third party advertising

What are you waiting for? Let’s get in the kitchen and start cooking!

Toca Kitchen is a free cooking app for kids that’s perfect for aspiring chefs. Kids will roleplay a chef in a kitchen, exploring ways to cook tasty and silly foods for hungry customers to eat. This fun cooking app is sure to deliver nothing but creativity and imagination for kids!

As with all Toca Boca apps, there are no high scores, time limits or stressful music. Rest assured this app for kids let’s kids play however they want!

***

ABOUT TOCA BOCA
At Toca Boca, we believe in the power of play to spark kids’ imaginations and help them learn about the world. We design our products from the kids' perspective to empower kids to be playful, to be creative and to be who they want to be. Our products include award-winning apps that have been downloaded more than 130 million times in 215 countries and offer fun, safe, open-ended play experiences. Learn more about Toca Boca and our products at tocaboca.com.

PRIVACY POLICY
Privacy is an issue that we take very seriously. To learn more about how we work with these matters, please read our privacy policy: http://tocaboca.com/privacy\",\n \"scoreText\": \"3.6\",\n \"score\": 3.6297672,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.tocaboca.tocakitchen\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.tocaboca.tocakitchen/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.tocaboca.tocakitchen/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.tocaboca.tocakitchen/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.tocaboca.tocakitchen/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Star Tracker - Mobile Sky Map \",\n \"appId\": \"com.PYOPYO.StarTracker\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.PYOPYO.StarTracker\",\n \"icon\": \"https://play-lh.googleusercontent.com/tavGfvtLAsRGXP4F2aZiDBeQcW7A7AnOBbznnAB0b6xSvOfrmOBvd555MUflM6-h4b9k\",\n \"developer\": {\n \"devId\": \"PYOPYO Studio\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/PYOPYO%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Hey, get outdoors with your friends and enjoy star gazing! Let StarTracker guide you to explore the universe.

Just hold up & point the device to the sky and have fun! You will see any stars, constellations and deep sky objects you are watching in real time.

<< REMOVE metal case or magnetic cover to avoid interference and get accurate orientation! >>
<< Calibration steps: https://youtu.be/-Uq7AmSAjt8 >>

Features:
★ All data is offline!
★ Fits all screen sizes from 3.5 inch to 12.9 inch for any resolution!
★ Sun, Moon, Planets in Solar System, 88 Constellations and 8000+ stars visible to the naked eyes.
★ 12 Zodiac Constellations Art & some famous deep sky objects with magnificent graphics.
★ Location auto set by GPS, or set manually.
★ Auto hide all menus and enter AR track mode when you point your device to the sky.
★ Smooth motion flow and quick response which is realized by cutting edge signal processing technique.
★ Superb high quality graphic display by enabling the retina display of the device and the full screen anti-aliasing technology employment.

Pro version ($2.99 to unlock):
★ No ads & full main menu.
★ Full 88 Constellations & 100+ deep sky objects with magnificent graphics.
★ Search and guide you to stars, constellations, planets and deep sky objects.
★ 3D compass in AR mode, indicates position of objects you searched.
★ Time Machine menu and location menu to let you explore more on time and location dimension.
★ Night mode switch, protecting eye when doing star gazing outdoor.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.579875,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.PYOPYO.StarTracker\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.PYOPYO.StarTracker/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.PYOPYO.StarTracker/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.PYOPYO.StarTracker/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.PYOPYO.StarTracker/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Mathway: Scan & Solve Problems\",\n \"appId\": \"com.bagatrix.mathway.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.bagatrix.mathway.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/FCMEORLhwFpdp0NpgdjkDatyAB3SIN8C29m2Cmm935oY45z45pm_gDH_nbMdmTsmRg\",\n \"developer\": {\n \"devId\": \"Chegg, Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Chegg%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Mathway is the world’s smartest math calculator for algebra, graphing, calculus and more! Mathway gives you unlimited access to math solutions that can help you understand complex concepts. Simply point your camera and snap a photo or type your math homework question for step-by-step answers.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5169325,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bagatrix.mathway.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.bagatrix.mathway.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.bagatrix.mathway.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.bagatrix.mathway.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.bagatrix.mathway.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"PragerU\",\n \"appId\": \"com.cappital.prageru\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.cappital.prageru\",\n \"icon\": \"https://play-lh.googleusercontent.com/76WzH90A6UlT9rKSbktZZibqeN-MyHFOmatDhVPs4c9YxM9eUnA0V8jkGkpRuP1LjmY\",\n \"developer\": {\n \"devId\": \"PragerU\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/PragerU\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Watched 5 million times every day, PragerU educates the masses about today's most important issues.

Here’s what you get when you download the PragerU app:
- Access to thousands of entertaining, educational videos, all at the tip of your fingers and 100% free
- Zero ads, fees, or subscriptions
- Dozens of different shows that teach and entertain viewers ages 4 to 104
- Reliable, truthful information about politics, culture, economics, history, and America
- Exclusive, never-before-seen footage from private PragerU events with great thinkers like Dennis Prager, Jordan Peterson, Christopher Rufo, and more

5 Reasons to download the PragerU app right now:
- Don’t let Big Tech censor what you can and cannot see on social media
- Get direct access to all PragerU content, including videos restricted by YouTube
- Stay informed, receive notifications, and never miss a video
- Join a movement of millions committed to liberty, economic freedom, and Judeo-Christian values
- The PragerU app is completely free with hours of content to enjoy anytime, anywhere, with no ads or censorship

App features include:
- Exclusive content available only in the PragerU app
- High-quality, ad-free streaming experience
- Create a custom watchlist and share videos with friends
- Save favorites and return to recently viewed videos
- Kids mode offers parental control with age-appropriate restrictions
- Access all PragerU videos and PragerU Kids shows—absolutely free\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9486554,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cappital.prageru\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.cappital.prageru/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.cappital.prageru/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.cappital.prageru/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.cappital.prageru/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Seesaw\",\n \"appId\": \"seesaw.shadowpuppet.co.classroom\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/seesaw.shadowpuppet.co.classroom\",\n \"icon\": \"https://play-lh.googleusercontent.com/haooWmFnTmyVo32WsIvzMXCyKVlpZtdqeDbPtKu8cT4TgDtHAOq4rWzWtid9BQGW4xo3\",\n \"developer\": {\n \"devId\": \"Seesaw Learning\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Seesaw%20Learning\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Beloved by teachers around the world, Seesaw is the only educational platform built specifically to address the unique needs of elementary classrooms. Seesaw brings together high-quality instruction, authentic assessments that drive deep learning insights, and inclusive communication – in one place. With Seesaw, students have the power to show their thinking and share their learning, ideas and creativity with their teachers and families.

Used by 10M teachers, students and families in over a third of elementary schools in the US. Beyond the US, Seesaw is used in over 130 countries!

Teachers love Seesaw—out of 1000 teachers surveyed, 92% said Seesaw makes their lives easier.

Built on extensive educational research, Seesaw is validated by industry-leading third-party LearnPlatform as a designated evidence-based intervention, eligible for ESSA Federal Funding with Tier IV designation.

Awarded the ISTE Seal of Alignment. Grounded in learning science research and based on practitioner experience, the ISTE Standards ensure that using technology for learning can create high-impact, sustainable, scalable and equitable learning experiences for all learners.

High Quality Instruction
- Enable teachers to deliver high-quality, standards-aligned instruction that encourages student voice and choice
- Multimodal tools make learning accessible and engaging. Tools include video, voice, screen recording, photos, drawing, labeling and more!
- Present to Class mode designed for front of class modeling, whole class instruction and discussions
- Assign activities to all students for center/stations work or whole class independent work. Use student groups to easily differentiate assignments
- Over 1600 research-based and ready-to-teach lessons created by Seesaw’s curriculum experts with whole group instruction videos, 1:1 or small group practice activities and formative assessments. Includes robust lesson plans to support teacher implementation.
- 100k ready-to-assign activities created by our community of educators and 1600+ ready-to-teach scaffolded lessons

Inclusive Family Engagement
- Engage families as partners in the learning process through inclusive two-way communication though portfolios and messages
- Provide a window into the classroom and insight into their child's progress with frequent sharing of student posts and assignments
- Robust messaging with built-in translation into over 100 home languages
- Message Progress Reports to families to keep them informed

Digital Portfolios
- Capture learning completed within and outside of Seesaw through digital portfolios that showcase student growth.
- Organize student work by folder and skill
- Simplify parent-teacher conferences and report cards

Assessment to Support Data-Driven Decisions
- Routinely assess student learning to glean meaningful insights into their understanding and make data-informed instructional decisions
- Formative assessments with auto-graded questions provided detailed and actionable reporting
- Tie skills and standards to activities for easy progress monitoring of key learning objectives

Accessible and Differentiated Learning
- Enable developmentally appropriate, accessible, and differentiated instruction to reach and engage all learners

Seesaw is COPPA, FERPA and GDPR compliant. Learn more at web.seesaw.me/privacy.

Need help? Visit our Help Center at help.seesaw.me.\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9658952,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=seesaw.shadowpuppet.co.classroom\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/seesaw.shadowpuppet.co.classroom/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/seesaw.shadowpuppet.co.classroom/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/seesaw.shadowpuppet.co.classroom/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/seesaw.shadowpuppet.co.classroom/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"BabyBus TV:Kids Videos & Games\",\n \"appId\": \"com.babybus.overseas.superjojo\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.babybus.overseas.superjojo\",\n \"icon\": \"https://play-lh.googleusercontent.com/KgRDifkavSN9DfHdJqpupfFCwFsyLQitc2Ho7ISP9DVJyctArNnjTbUwj2TEDIoErxA\",\n \"developer\": {\n \"devId\": \"BabyBus\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/BabyBus\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Babybus TV:Kids Videos & Games is an APP specially designed for kids aged 0-6, containing plenty of popular kids songs & cartoons. Kids love it for its fun content!

PLENTY OF KIDS SONGS & CARTOONS
Our APP is a collection of many kids' favorite characters, Baby Panda Kiki & Miumiu, Mimi, dinosaurs, monster car, and Donny. It offers plenty of kids songs and cartoons that are safe and free of charge!

A VARIETY OF TOPICS FOR KIDS SONGS
- HABITS: Develop good habits such as taking shower, brushing teeth, and more.
- ART: Doodle, draw, and perform music to free your child's creativity.
- SAFETY: Master the safety knowledge of staying at home, travel, earthquake, fire disaster.
- COGNITION: Learn about dinosaurs, cars, food, numbers, shapes, colors, and more.
- EMOTION: Learn how to get along with family, and how to take care of others.

USER-FRIENDLY FUNCTION SETTINGS
- VIEWING TIME CONTROL: Parents can limit their kid's viewing duration.
- FREE DOWNLOAD: Children can watch more than 600 episodes of kids songs and cartoons for free in the APP.
- OFFLINE VIEWING: All videos can be downloaded.
- AUTO SAVE: All of your child's play history will be saved.
- FULL SCREEN PLAY: All kids songs and cartoons support full screen play.
- PRIVACY PROTECTION: [Babybus TV:Kids Videos & Games] will fully protect the privacy of children.

About BabyBus
—————
At BabyBus, we dedicate ourselves to sparking kids' creativity, imagination and curiosity,and designing our products through the kids' perspective to help them explore the world on their own.

Now BabyBus offers a wide variety of products, videos and other educational content for over 400 million fans from ages 0-8 around the world! We have released over 200 children's educational apps, over 2500 episodes of nursery rhymes and animations of various themes spanning the Health, Language, Society, Science, Art and other fields.

—————
Contact us: ser@babybus.com
Visit us: http://www.babybus.com\",\n \"scoreText\": \"4.1\",\n \"score\": 4.1,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.babybus.overseas.superjojo\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.babybus.overseas.superjojo/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.babybus.overseas.superjojo/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.babybus.overseas.superjojo/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.babybus.overseas.superjojo/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Lingokids - Play and Learn\",\n \"appId\": \"es.monkimun.lingokids\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/es.monkimun.lingokids\",\n \"icon\": \"https://play-lh.googleusercontent.com/R0vKLbA__RE4UxAUAw3eUVZ0dnEWQN93bcqMctRlNj3lHmkye-0NLlFz-l3bqLDHElc\",\n \"developer\": {\n \"devId\": \"Lingokids - English Learning For Kids\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Lingokids%20-%20English%20Learning%20For%20Kids\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"#1 LEARNING APP FOR KIDS
Spark success with 1200+ fun, interactive activities! Academics and modern life skills come together in the Lingokids universe, where kids can explore exciting adventures in learning to help them thrive in today’s changing world.

** #1 ORIGINAL KIDS APP 2022** – Kidscreen
**CONTENT FROM OXFORD UNIVERSITY PRESS**
**100% AD-FREE AND TEACHER-APPROVED**
**kid-SAFE+ COPPA CERTIFIED**
**TRUSTED BY 50M+ FAMILIES**

INTERACTIVE ACADEMICS
Explore 1200+ learning activities with more 650+ objectives across subjects—including math, reading and literacy, science, engineering, technology, art, music, and more. At their own pace, kids can progress through a curated STEM curriculum including science, tech, engineering, arts, and math through engaging games, quizzes, digital books, videos, and songs.

MODERN LIFE SKILLS
Lingokids weaves modern life skills into academics and interactive games, songs, and activities. Engineering to empathy, reading to resilience, math to making friends; Along with practical life skills, Lingokids offers a wide range of social-emotional learning, including activities that introduce emotional regulation, positive communication, meditation, and caring for the planet!

PLAYLEARNING™ METHOD
Your kids can play, learn, and thrive with a methodology that embraces how they naturally discover their world, helping to shape them into confident, curious, life-long learners. Kids have more motivation and focus when they’re engaged and entertained, so they’re more comfortable exploring new things.

SUBJECTS, THEMES & LEVELS THAT GROW WITH YOUR CHILD!
*Reading and Literacy: Kids can evolve their letter recognition, writing, phonics, and more.
*Math and Engineering: Kids can strengthen knowledge in key areas like counting, addition, subtraction and problem-solving skills.
*Science and Technology: Kids can explore key scientific principles from biology, chemistry, physics and more, plus prepare for technical advancement with coding, robotics, etc.
*Music and Art: Kids can create their own music and make digital drawings with paints and colors!
*Social-Emotional: Kids can learn about emotions, empathy, mindfulness, and more.
*History and Geography: Kids can increase global awareness as they explore museum artefacts, ancient civilizations, continents, and countries.
*Physical Activity: Songs and videos encourage kids to dance, stretch, and practice yoga and meditation.

TRACK PROGRESS & ACHIEVEMENTS
In the Parents Area, access progress reports for up to 4 children, browse curriculum topics, get tips, and access community forums. Track your child’s progress and celebrate successes!

MEET FUN, ORIGINAL CHARACTERS
Billy is a critical thinker who finds solutions to wacky problems! Cowy is creative, celebrating art! Lisa is a natural leader, guiding the adventures. Elliot is a collaborator who knows that teamwork makes the dream work. All of them help Babybot, a curious, funny robot on a quest to learn everything.

UPGRADE TO LINGOKIDS PLUS!
Unlimited access to 1,200+ interactive learning activities and 650+ learning objectives across math, reading and literacy, science, engineering, social-emotional learning, and more.
Up to four personalized child profiles
Unlock progress reports to track achievements
Connect with a global parent community
Capacity to play and learn on an unlimited number of screens at once
100% ad-free and no hidden in-app purchases
Play and learn anywhere–online and offline.

Subscriptions automatically renew each month 24-hours before the end of the current period and your card will be charged unless auto-renew is turned off at least 24-hours before the end of the current period. You can turn off auto-renew any time from within the app. Any unused portion of a free trial will be forfeited if you purchase a subscription.

Help & Support: https://help.lingokids.com/
Privacy policy: https://lingokids.com/privacy
Terms of service - https://www.lingokids.com/tos\",\n \"scoreText\": \"4.2\",\n \"score\": 4.230596,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=es.monkimun.lingokids\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/es.monkimun.lingokids/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/es.monkimun.lingokids/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/es.monkimun.lingokids/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/es.monkimun.lingokids/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Pimsleur: Language Learning\",\n \"appId\": \"com.simonandschuster.pimsleur.unified.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.simonandschuster.pimsleur.unified.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/HjVkjOkWO0BZyb4n1fUHt0gFE2NvRSp_E-9R_j-hx7u5XXQHOE5qIQUQ1iGn59TUfg\",\n \"developer\": {\n \"devId\": \"Simon & Schuster\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Simon%20%26%20Schuster\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Become a language learner & learn to speak foreign languages with Pimsleur's Language learning app. Discover how to make effective conversation while you travel in Spanish, French, Italian, German, Japanese & more. Pimsleur is a tool which focuses on conversational language skills & AI language learning, with language transfer happening from day one. Get the opportunity to speak foreign languages and become fluent forever with Pimsleur!

Learn Japanese or other foreign languages quickly & efficiently before travelling with Pimsleur's language learning resource. Master conversational language skills in Spanish, Japanese, & many other languages. Learn to speak languages naturally as you travel, gaining more fluency and confidence with Pimsleur.

Choose Pimsleur's foreign language learning app tool to achieve your learning goals. With Pimsleur, you can learn Spanish, Japanese, & more with ease, holding conversations & staying fluent forever as you travel the globe. Try Pimsleur's foreign language learning app today & discover a world of language learning!

TRY PIMSLEUR’S LANGUAGE LEARNING FREE:
Learn different languages & become fluent forever! Try a free language learning lesson in one of 51 different languages. Discover how we’ve helped people learn Spanish & become fluent in other languages!

THE PIMSLEUR METHOD - PROVEN METHOD FOR LANGUAGE LEARNING:
Learn different languages with the Pimsleur language learning method. We focus on the language learner’s needs, so you are fluent forever. Learning new languages in offline mode & hands-free mode makes it easy to learn a new language. Pimsleur, the language learning app, has helped millions of people to speak a new language fluently. Learn Japanese or Spanish to achieve your learning goals! Voice recognition tech uses AI language learning to help you improve through natural language transfer - whether you learn Spanish or French, choose Pimsleur, the language learning app to learn languages.

PIMSLEUR PREMIUM FEATURES:

CHOOSE FROM 51 LANGUAGES
Become a language learner & learn to speak languages through language learning lessons including Spanish, French, Japanese, German, Italian, Portuguese, Russian, Hebrew, Korean, Mandarin, Chinese, Arabic, Turkish, English, Swedish, Farsi, Tagalog, Norwegian, Thai, Finnish & more. Become fluent forever!

CORE CONVERSATIONAL LANGUAGE LEARNING LESSONS
Enjoy 30-minute conversational language learning lessons anywhere, making it easy to learn different languages quickly & become a language learner in Spanish today!

READ
You won’t just learn languages like Spanish, you'll learn to read your new language, at no expense of speaking it!

SPEAK
Learn to speak Spanish & new languages with role-play & review transcripts with AI language learning & voice recognition.

SKILLS
Practice sentences & phrases by topic. Easy to learn languages with Quick Match & Speed Rounds. Practice vocabulary with flashcards!

SYNC PROGRESS
Learning languages stay on track as progress automatically syncs across your devices like Amazon Echo, & stream, download & listen offline with no ads. Listen & learn languages without interruptions for effective language transfer. Continuously play lessons automatically.

BUILD STREAKS WITH DAILY LESSONS
Keep your daily learning streak as you learn languages effectively & become fluent forever!

Language courses are available for 51 languages, so you can learn languages fast. Learn Japanese, Mandarin, Korean, Norwegian, Hebrew, Tagalog, Arabic, Portuguese, Russian & English. Learn Spanish, French, German & more!

Not all features are available for all languages. For more information & a complete list of the different languages available for language transfer visit our website.

Your Privacy Choices: https://privacy.paramount.com/app-donotsell
California Notice: https://privacy.paramount.com/en/policy#additional-information-us-states\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4295416,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.simonandschuster.pimsleur.unified.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.simonandschuster.pimsleur.unified.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.simonandschuster.pimsleur.unified.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.simonandschuster.pimsleur.unified.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.simonandschuster.pimsleur.unified.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Yousician: Learn Guitar\",\n \"appId\": \"com.yousician.yousician\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.yousician.yousician\",\n \"icon\": \"https://play-lh.googleusercontent.com/rvGKVcfHwU4_61dfTi75XC3-NoaPERlJ0v_5bGLPdya5HTMTA8pYqep_1PpbZfLj0w\",\n \"developer\": {\n \"devId\": \"Yousician Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Yousician%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"YOUSICIAN is the fast, fun way to learn, play and master the Guitar, Bass or Singing/Vocals. Learn and play thousands of songs on your REAL INSTRUMENT!

Yousician is your personal music teacher. The app listens to you play and gives instant feedback on your accuracy and timing. Our learning path, designed by expert music teachers, will help musicians of all levels improve, from complete beginners to professionals.

Step-by-step videos guide you through each lesson. Fun gameplay tracks your progress and keeps you motivated to practice and learn. You’ll simply be amazed how fast your skills advance. So grab your guitar or bass, or warm up your voice, and start making music!

WHO IS YOUSICIAN FOR?
• Guitarists, Bass players & Singers
• Complete beginners
• Self-learners
• Advanced & professional musicians
• Music teachers

WHAT’S INCLUDED?
• 10,000+ lessons, exercises and songs by artists you love
• Hundreds of videos covering all the skills you need to learn guitar, bass or singing: sight reading sheet music, guitar chords, strumming, melodies, lead, fingerpicking and more
• Tons of music theory and trainers for each skill and chord
• Fun Weekly Challenges where you can compete with friends and millions of Yousicians worldwide


HOW DOES THE APP WORK?
• Play your real acoustic or electric instrument — no additional equipment needed
• Yousician listens to you sing or play the guitar or bass
• It gives you instant feedback on your performance
• It takes you through awesome songs and step-by-step tutorials that suit your playing level
• It makes learning fun with rewarding gameplay, lessons and challenges

LEARN GUITAR, BASS & SINGING AT YOUR OWN PACE
Yousician has been developed with the world’s most innovative and experienced music teachers. It is perfectly suited for self-learning or as a supplement to learning with a teacher. With step-by-step tutorials and constant feedback you can always be sure you’re playing your guitar or bass right. The microphone on your phone listens to you play and the app tells you how you're performing. It even works for singing so you’ll never be out of tune during karaoke!

PREMIUM SUBSCRIPTION
Subscribe for unlimited and uninterrupted playtime across all platforms. Subscription types are annual plans billed in monthly installments, upfront annual and monthly plans. Prices may vary in different countries. Subscription automatically renews at the end of each term unless auto-renew is turned off in your Yousician account on yousician.com. If you use a Google Play store account, you can cancel your subscription from there.

WHAT PEOPLE ARE SAYING ABOUT YOUSICIAN
“Yousician is modern technology's gift to music education. It’s an app that teaches you to master the guitar instead of a plastic game controller.” - Guitar World

“Yousician is a fabulous place to start learning piano, guitar, ukulele or bass. Yousician teaches basic playing techniques and musical notation by presenting a challenge and then listening as you try to play in real life.” - New York Times

ABOUT YOUSICIAN
Yousician is the world’s leading platform to learn and play music. With a combined 20 million monthly users across our award-winning apps, we’re on a mission to make musicality as common as literacy.

Check out our other apps:
• GuitarTuna, the #1 tuner app worldwide
• Ukulele by Yousician
• Piano by Yousician

Got ideas to make Yousician even better? Simply send your ideas and suggestions to: feedback.yousician.com
• https://yousician.com/privacy-notice
• https://yousician.com/terms-of-service\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2380896,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.yousician.yousician\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.yousician.yousician/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.yousician.yousician/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.yousician.yousician/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.yousician.yousician/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Miga Town: My World\",\n \"appId\": \"com.miga.world\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.miga.world\",\n \"icon\": \"https://play-lh.googleusercontent.com/1DbS3JFkcJygKg8mxaipw_3qvejsCUcRQZTTa6zxC8aBbFT_sHctgng8NUxRaa47bsw\",\n \"developer\": {\n \"devId\": \"XiHe Digital (GuangZhou) Technology Co., Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/XiHe%20Digital%20(GuangZhou)%20Technology%20Co.%2C%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"MIga World is a new super application that allows you to build your own world and create a better story for yourself.

Look for hidden treasures, change your face from tens of billions of face elements, and try dress combinations as you wish!

This time, we have prepared a number of collections, including everything you may want!

==========================================

To explore new cities is the beginning of creating your own world.

=================Latest plan=================

More locations, More characters, More pets, More sets of clothes and more accessories will be launched; the game will be updated every month, or launched more locations, so that you can create your own world!

Fully customized clothes, hairstyles and magic makeup allow you to customize your true self and create a story that belongs to you!


There are no rules and no scores in the game.

Apartment: You can come home anytime and invite a large group of good friends to dinner or a party.

Restaurant: Located at loft downstairs, the hidden chef can cook a variety of delicious foods.

Convenience Store: A 7*24 store, with a large number of goods to meet any needs of your daily life.

Toolroom: When you clean up your space, you can store your precious things in it!

--Give full play to children’s creativity
--No third-party advertising
--No time limit or score ranking list
contact us:support@xihegame.com\",\n \"scoreText\": \"4.4\",\n \"score\": 4.358067,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.miga.world\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.miga.world/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.miga.world/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.miga.world/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.miga.world/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"All Language Voice Translate\",\n \"appId\": \"com.translate.language.voice.translator.learn.languages\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.translate.language.voice.translator.learn.languages\",\n \"icon\": \"https://play-lh.googleusercontent.com/DQBhcrGvegeQ_yihGg6L8jmIGAae1oLOU7VvQiXtuilrgtwQvxo1pXPXo5R4ZyL87f0\",\n \"developer\": {\n \"devId\": \"UM Apps Studio\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/UM%20Apps%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Introducing our English Voice Translator voice Translator app. Our English translator has revolutionized how you communicate and understand different languages.

English Translator Voice translate app has features like voice translator, conversation translator, instant traductor.

With translate english to afrikaans voice translator переводчик, you can effortlessly translate phrases from Voice-to-Voice, Text-to-Voice, Text-to-Text, or Camera-to-Text translation in our multiple language 翻译 app.

Now you can translate English to Spanish phrases, traductor de español a ingles, translate english to urdu, English to Latin, Arabic, Portugues, amharic to english, and many more.

With our free traductor English Voice переводчик app, you can enhance your language skills with English to Korean translation, English to Urdu, Spanish to English, and many more.

Get you hands on the below features with English Translator Voice Traductor app:

Voice Translator: Voice translator is the top feature of English Translator Voice translate app. The app can translate Voice-to-Voice conversation and speech with a free translator.

With the cutting edge voice transltor, you can break all language barriers. You can simply speak and the voice translator app free will translate your words into your desired language.

Photo Translator: Get an avail photo translator to instantly translate text on photos, doc translator, or do visual translator features with our photo translator.

Simply use your device's camera and point at any printed text, billboard, or menus, and the camera translator will instantly do camera-to-text translations from English to Irish, Turkish to English, English to swahili, and many more.

Text Translator: With text translator переводчик feature, you can translate any written text into your desired language.

Whether it's a document, webpage, or message, you can easily translate phrases from Voice-to-Voice, Text-to-Voice, Text-to-Text, or Camera-to-Text from one language to another with a free translator.

Instant Translator: The instant translator feature is the best feature of our voice 翻译 app provides you with a quick translation.

You can use an english translator voice translate app as spanish translator free, translate english to urdu, translate english to arabic.

Idiom Translator and Phrase Translator
You can translate Idioms and Translate Phrases from English into any language.

You can do english to spanish idiom translation or phrase translation, translate english to korean, translate english to latin, and many more.

Type, speak, or take a photo of the text you want to translate to do english to bengali translation, translate english to gujarati, polish to english instantly with English traductor swiftly.

Multi-language Translations are Easy with English Translator Voice Translate App

All Language Voice Translate is a language translator переводчик app for text, voice, conversations, and camera photos.

The voice translating app supports a wide range of language translations including Spanish to English translation, Urdu to English translation, Chinese to English translation vice versa and many more, this app has you covered.

English Translator Voice Translate app Features

The voice translate app has an easy to use and simple interface which makes navigation and language translation easy for laymen.

With visually pleasing design and amazing features, English Translator Voice переводчик app makes language translation fun.

翻译 translator app is available for free download on playstore. The voice translation app offers incredible language translation capabilities instantly from amharic to english, english to pashto, translate polish to english, and vice versa.

Download English Translator Voice Translator app free now and experience the future of language translation. Start your English language learning journey today!\",\n \"scoreText\": \"3.9\",\n \"score\": 3.8857143,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.translate.language.voice.translator.learn.languages\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.translate.language.voice.translator.learn.languages/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.translate.language.voice.translator.learn.languages/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.translate.language.voice.translator.learn.languages/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.translate.language.voice.translator.learn.languages/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Answer.AI\",\n \"appId\": \"com.cyberdavinci.gptkeyboard\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.cyberdavinci.gptkeyboard\",\n \"icon\": \"https://play-lh.googleusercontent.com/fM3iZugnGabg0yWBU5236-o-7_PdEotBE0lhTjeBVfCndSCcrA6LPHM4Y0HBklAa08E\",\n \"developer\": {\n \"devId\": \"Answer AI team\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Answer%20AI%20team\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to our innovative study app, designed to make your academic life easier and more efficient. Our app is equipped with cutting-edge technology that can better help you identify information, such as mathematical formulas. You can scan any problem from your textbooks or notes.

We believe Answer.ai can help you learn better. Answer.ai is available 24/7 to answer any questions and difficulties you encounter in your study. We cover almost all subjects, whether solving math problems or helping you check grammar mistakes. In the process of answering, we also provide very detailed solutions to help you understand the methods and thinking step by step.

Our AI-powered system is constantly learning and improving, ensuring that you receive the most accurate and up-to-date information available.

Whether you are a student, teacher, or lifelong learner, our app is the perfect tool to help you succeed in your academic endeavors. Try it out today and experience the power of AI at your fingertips!\",\n \"scoreText\": \"4.8\",\n \"score\": 4.8366337,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cyberdavinci.gptkeyboard\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.cyberdavinci.gptkeyboard/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.cyberdavinci.gptkeyboard/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.cyberdavinci.gptkeyboard/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.cyberdavinci.gptkeyboard/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"WordBit Inglés\",\n \"appId\": \"net.wordbit.enes\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/net.wordbit.enes\",\n \"icon\": \"https://play-lh.googleusercontent.com/zcvfUJc6TeoquIXqMWuqRGd7OP0xOWYXBmYvA-a6LtQyDquiHf785kaPporiXknZjcc\",\n \"developer\": {\n \"devId\": \"WordBit\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/WordBit\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"❓❔¿Por qué constantemente pierdes la oportunidad de estudiar inglés?❓❗
¡Hay una manera de aumentar tu dominio del inglés usando el tiempo que no sabía que tenías!
¿Cuál es el método? Solo es usar la pantalla de bloqueo. ¿Cómo funciona esto?
En el momento en que revisas tu teléfono celular, tu atención se centra en la pantalla. Estás libre de lo que acabas de hacer y estás listo para recibir nueva información.
En este mismo momento, WordBit usa tu atención por un corto período para estudiar inglés.

🇫🇷 Francés 👉 http://bit.ly/appfrances
🇩🇪 Alemán 👉 http://bit.ly/appaleman
🇮🇹 Italiano 👉 http://bit.ly/appitaliano
🇸🇦 Árabe 👉 http://bit.ly/apparabe
🇮🇱 Hebreo 👉 http://bit.ly/apphebreo
🇰🇷 Coreano 👉 http://bit.ly/appcoreano

Características de esta aplicación
■ Método innovador de aprendizaje mediante pantalla de bloqueo.
Cuando revises los mensajes, veas YouTube o simplemente veas la hora, ¡Puedes estudiar docenas de palabras y oraciones al día! .Esto se acumulará a más de mil palabras por mes, y aprenderás de forma automática e inconsciente.

■ Contenido optimizado para la pantalla de bloqueo
WordBit proporciona contenido en un tamaño perfecto y adecuado para la pantalla de bloqueo y a partir de ahora el aprendizaje solo tomará un instante. ¡Así que no hay necesidad de dejar de hacer tus cosas!

■ Ejemplos útiles
Con los ejemplos, puedes aprender cómo usar las palabras en la vida cotidiana.

■ Categorías de vocabulario ordenadas por nivel
Puedes estudiar palabras y frases según tu nivel. (Más de 10.000 palabras desde básico a avanzado)

■ Contenido adicional
-Sinónimos
-Antónimos
-Sustantivos : Los artículos se distinguen por color, formas plurales
-Verbos: se proporciona la versión corta y larga de las tablas de conjugación
-Adjetivos: formas comparativas, superlativas
-Tips de gramática : verbos irregulares, artículos irregulares

■ Patrones
Puedes estudiar conversaciones usando patrones.
Si aprendes un patrón, puedes aplicarlo en varias oraciones. Los patrones de aprendizaje te permiten usar oraciones de manera más eficiente.

Bien organizado, contenido enriquecido
■ Oraciones
También puedes aprender las oraciones de uso común.
■Varias categorías de modismos, Proverbios, etc.
■ imágenes para principiantes
■ Pronunciación - Pronunciación automática y visualización de las marcas de acento.

Características extremadamente útiles para los usuarios
■ Quiz, modo portada
■ Función repetición diaria
Puedes repetir tantas palabras como desees durante 24 horas.
■ Función de clasificación de palabras personalizada
Puedes comprobar las palabras aprendidas y eliminarlas de tu lista de estudio.
■ Función de búsqueda
■16 temas de color diferentes (temas oscuros disponibles)

----------------------------------
Contenido que ofrecemos

📗■ Vocabulario (para principiantes)😉
🌱Números,Hora
🌱 Animales, Plantas
🌱Comida
🌱Relaciones
🌱Otros

📘■ Vocabulario (por niveles)😃
🌳A1
🌳A2
🌳B1
🌳B2
🌳C1
🌳C2
🌳 Verbos compuestos
🌳Verbos irregulares
🌳Collocation

📙■ Vocabulario específico (para exámenes)😎
🌾IELTS
🌾TOEFL

📕■ Expresiones🤗
🌿Expresiones básicas
🌿Refranes y provervios
🌿Amor y Piropos
🌿Jerga
🌿Expresiones coloquiales
🌿Expresiones cotidianas
🌿Inglés para reuniones
🌿Frases Famosas

🗂️■ Patrones Generales
🌷Principiante
🌷Intermedio
🌷Avanzado

📊■ Patrones de Negocio
☕Llamada telefónica
☕Correo electrónico
☕Reunión
☕Presentación
☕Vida laboral
☕Viaje de negocios
☕Empresa y productos
☕Atención al cliente
----------------------------------
( ※ Next : Curso de inglés, gramática inglés )\",\n \"scoreText\": \"4.6\",\n \"score\": 4.583859,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=net.wordbit.enes\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/net.wordbit.enes/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/net.wordbit.enes/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/net.wordbit.enes/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/net.wordbit.enes/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"FAMILIES | TalkingPoints\",\n \"appId\": \"org.talkingpoints.parents\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/org.talkingpoints.parents\",\n \"icon\": \"https://play-lh.googleusercontent.com/mQWXw7_3vcP7WydAisF9RjAuSxoy118YP370_40xZaGWosE6yrxoqacf58GGfwMpwKL9\",\n \"developer\": {\n \"devId\": \"TalkingPoints\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/TalkingPoints\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"TalkingPoints is a free application that lets you communicate with your children’s teachers and school. You will be able to send and receive messages through this application in your preferred language, because TalkingPoints will translate your message into English for teachers. Stay engaged and involved in your child’s learning by communicating and collaborating with their teacher and school using TalkingPoints!

If you need support, please reach out to us by email - family@talkingpts.org - or click the "app support" button in the family app.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5125656,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.talkingpoints.parents\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/org.talkingpoints.parents/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/org.talkingpoints.parents/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/org.talkingpoints.parents/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/org.talkingpoints.parents/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"SkyView® Lite\",\n \"appId\": \"com.t11.skyviewfree\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.t11.skyviewfree\",\n \"icon\": \"https://play-lh.googleusercontent.com/PpPV2Ug-Cr05xLKQdZJoA9quSanR3Y6L1TtL80ppJgIpRkIU6v_H0UJoDR4VCE4m38RQ\",\n \"developer\": {\n \"devId\": \"Terminal Eleven\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Terminal%20Eleven\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"You don't need to be an astronomer to find stars or constellations in the sky, just open SkyView® Free and let it guide you to their location and identify them. SkyView Free is a beautiful and intuitive stargazing app that uses your camera to precisely spot and identify celestial objects in sky, day or night. Find popular constellations as they fade in and out while you scan across the sky, locate planets in our solar system, discover distant galaxies, and witness satellite fly-bys.

***Google Editor's Choice 2017***

Features:

• Simple: Point your device at the sky to identify galaxies, stars, constellations, planets, and satellites (including the ISS and Hubble) passing overhead at your location.
• Night Mode: Preserve your night vision with red or green night mode filters.
• Augmented Reality (AR): Use your camera to spot objects in the sky, day or night.
• Sky Paths: Follow the sky track for any object to see it’s exact location in the sky on any date and time.
• Time Travel: Jump to the future or the past and see the sky on different dates and times.
• Social: Capture and share beautiful images with friends and family on social networks.
• Mobile: WiFi is NOT required (does not require a data signal or GPS to function). Take it camping, boating, or even flying!
• Supports Space Navigator™ binoculars, spotting scope, and telescopes.

What a fun way to teach yourself, your children, your students, or your friends about our wonderful universe!\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3383045,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.t11.skyviewfree\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.t11.skyviewfree/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.t11.skyviewfree/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.t11.skyviewfree/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.t11.skyviewfree/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"PlantNet Plant Identification\",\n \"appId\": \"org.plantnet\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/org.plantnet\",\n \"icon\": \"https://play-lh.googleusercontent.com/6p_UoXPjovHWARuVaOilwZzjIOzqltetjYkE9eQ9L9ZhgBb2Fbbl8LkVCf-k64k8Fw\",\n \"developer\": {\n \"devId\": \"PlantNet\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/PlantNet\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Pl@ntNet is an application that allows you to identify plants simply by photographing them with your smartphone. Very useful when you don't have a botanist on hand! Pl@ntNet is also a great citizen science project: all the plants you photograph are collected and analysed by scientists around the world to better understand the evolution of plant biodiversity and to better preserve it.

Pl@ntNet allows you to identify and better understand all kinds of plants living in nature: flowering plants, trees, grasses, conifers, ferns, vines, wild salads or cacti. Pl@ntNet can also identify a large number of cultivated plants (in parks and gardens) but this is not its primary purpose. We especially need Pl@ntNet’s users to inventory the wild plants, those that you can observe in nature of course but also those that grow on the sidewalks of our cities or in the middle of your vegetable garden!

The more visual information you give to Pl@ntNet about the plant you are observing, the more accurate the identification will be. There are indeed many plants that look alike from afar and it is sometimes small details that distinguish two species of the same genus. Flowers, fruits and leaves are the most characteristic organs of a species and it is them that should be photographed first. But any other detail can be useful, such as thorns, buds or hair on the stem. A photograph of the whole plant (or the tree if it is one!) is also very useful information, but it is often not sufficient to allow a reliable identification.

At present Pl@ntNet makes it possible to recognize about 20,000 species. We are still a long way from the 360,000 species living on earth, but Pl@ntNet is getting richer every day thanks to the contributions of the most experienced users among you. Don't be afraid to contribute yourself! Your observation will be reviewed by the community and may one day join the photo gallery illustrating the species in the application.

The new version of Pl@ntNet released in January 2019 includes many improvements and new features:
- The ability to filter recognized species by genus or family.
- The differentiated data revision that gives more weight to users who have demonstrated the most skills (in particular the number of species observed, validated by the community).
- The re-identification of shared observations, whether yours or those of other users of the application.
- The multi-flora identification that allows you to search for the photographed plant in all the flora of the application and not only in the one you have selected. Very useful when you are not sure what flora to look for.
- The selection of your favorite floras to access them more quickly.
- The navigation at different taxonomic levels in image galleries.
- The mapping of your observations.
- Links to many factsheets.

The web version of the application is also available at the following address: https://identify.plantnet.org/\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3781066,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.plantnet\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/org.plantnet/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/org.plantnet/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/org.plantnet/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/org.plantnet/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Star Roam Sky Map Planet\",\n \"appId\": \"com.fantasy.star.inour.sky\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.fantasy.star.inour.sky\",\n \"icon\": \"https://play-lh.googleusercontent.com/aFhedwX3Jx2yr__iatoHtV59PtjAVBhaK8osVbsYlvBkiIZkdkZDVRcuWUwaICN__g\",\n \"developer\": {\n \"devId\": \"Findout World Inc\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Findout%20World%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"In Star Roam, you don't have to be an astronomer to view the stars overhead.

Outside or on the balcony, evenings with family and friends are no longer boring. Just point your phone to the night sky, and in just a few seconds, you'll be able to identify stars, constellations, planets, nebulae, satellites and other deep space objects in real time! You can see the stars moving in real time sky view and all the astronomy details about it. It becomes easy and fun to recognize the stars. You can even choose to observe stars at any time and location, like this time last year or tomorrow night, as if you were in a time machine.
Star Roam will be the best star app and sky guide to help you start your star journey, even without astronomy knowledge.

★Features★

🌕All stars in the sky view:
We combine all the known stars of over 1.69 billion, with all the known planets, natural moons, and comets, with many other 10,000 smaller solar system asteroids, and more than 2 million nebulae and galaxies.You can see the astronomy details of each star.

⏱Time travel in sky view:
You can choose any time and location, such as the early morning at the North Pole, and look at the night sky at different times and places. Or move forward or backward in the current time, adjust the speed, and view a fast-moving map of the night sky of stars and planets.

☄️Automatic tracking your sky view:
In auto-tracking mode, we use the phone's gyroscope sensor to help you show the night sky towards which your phone is pointing in real time, and quickly find the stars you want to know about. In addition, star gazing can help you track the movement of a star in the sky view and follow them as star walk in the night sky.

🌎Real observation experience:
You can choose different geographical environments, we will simulate the surface and atmosphere with the reality of sunrise, sunset and atmospheric refraction, etc., for a better look and feel with sky view.

🗿Multi-cultural Constellation Knowledge:
We have collected some of the world's most common star culture, such as Western, Arabic, Boorong, Chinese, Indian, Kamilaroi, Macedonian, Ojibwe, Romanian... And show their contours and lines in the sky view as you can see them.

✈️Use offline without waiting:
You can use the sky guide when there is no Internet, such as outdoors, wild, hiking. Whenever and wherever you go to look at the star walk in the night sky

Instead of meeting your family and friends, enjoy looking at the night sky! Star Roam will sky guide you through the mysteries of the universe.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.193384,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.fantasy.star.inour.sky\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.fantasy.star.inour.sky/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.fantasy.star.inour.sky/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.fantasy.star.inour.sky/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.fantasy.star.inour.sky/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Symbolab: Math Problem Solver\",\n \"appId\": \"com.devsense.symbolab\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.devsense.symbolab\",\n \"icon\": \"https://play-lh.googleusercontent.com/DKlax_iJQtJOKJlIPDSS7DZpbm9gCkHh3vWgrj8BOMRwDPDVKXdTQf9sV4cRuXSdRA\",\n \"developer\": {\n \"devId\": \"Symbolab\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Symbolab\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Math Made Easy with Symbolab!

Type in or snap a picture of any math problem, including tricky word problems, and get easy-to-understand step-by-step solutions. From pre-algebra to calculus, trigonometry, and more. Let us help you solve any math problem with confidence & guide you along the way!

Symbolab Problem Solver is composed of over five hundred of our most powerful calculators, including:
• Calculus Calculator
• Graphing Calculator
• Fraction Calculator
• Equation Calculator
• Integral Calculator
• Derivative Calculator
• Limit Calculator
• Inequality Calculator
• Trigonometry Calculator
• Matrix Calculator
• Functions Calculator
• Series Calculator
• ODE Calculator
• Laplace Transform Calculator

Join Our Community of Learners:

Symbolab is a powerful tool for learning math, with over 300 million users. Join and experience AI-powered, personalized assessments, insights and more. Our fully automated platform, driven by advanced machine learning algorithms, ensures a seamless and straightforward learning experience.

Empower Your Learning Journey:
Symbolab is much more than an app – it's an entire educational platform dedicated to empowering students just like you.

Deepen your knowledge with our streamlined and user-friendly interface.
With our streamlined and user-friendly interface, we provide free solutions with basic steps to any math problem you throw at us. Plus, for a subscription, you’ll gain access to more advanced steps and explanations.

Symbolab is your go-to companion for problem-solving and learning. Download now and embark on a journey to excel in math!

Terms of Use: https://www.symbolab.com/public/terms.pdf
Privacy Policy: https://www.symbolab.com/public/privacy.pdf\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3008547,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.devsense.symbolab\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.devsense.symbolab/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.devsense.symbolab/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.devsense.symbolab/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.devsense.symbolab/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"brightwheel: Childcare App\",\n \"appId\": \"co.kidcasa.app\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/co.kidcasa.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/zBsR9wvZShmIET8R_521CCQ_cGRVX57smATQ7wNM2cxlr6UMCxSngIyNdpx8zRAnQOw\",\n \"developer\": {\n \"devId\": \"brightwheel\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/brightwheel\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Brightwheel is the #1 software solution for preschools, child care, daycare, camps, and after school programs.

Brightwheel is the only app that integrates everything you need: sign in/out, messaging, learning assessments, daily sheet reports, photos, videos, calendars, online bill pay for parents, and much more.

Brightwheel lets you manage your center, streamline workflows, and engage with parents, so you can save time and money, make life easier for your staff, and improve satisfaction for your parents.

Join the thousands of preschools, child care, and daycare programs across the globe that have fallen in love with brightwheel!

PRESCHOOLS / CHILD CARE / DAYCARE / CAMPS: Manage your students and classrooms, track attendance and room ratios, share photos and videos, assess learning milestones, communicate with parents, send paperless invoices and payments, review daily sheets, and manage staff. Brightwheel is your all-in-one child care and daycare management app!

PARENTS: Engage in your child’s day with a real-time feed of photos, videos, reminders, and updates. Use brightwheel’s digital check-in to securely sign in and out, pay tuition online, and even invite grandparents, nannies, and friends to join in the fun!

Features include:
• Central Database: Store everything related to kids and families in one secure place.
• Student Check-In: Multiple digital check-in options available including digital signatures, 4 digit check-in codes, and a kiosk mode - all aligned with child care licensing requirements.
• Staff Check-In & Ratios: Make administrative tasks easier by managing staff check-in to see your ratios across all your rooms in real time.
• Attendance: Easily log attendance and absences for your school-age students, infants, and toddlers. Use our attendance tracking system to keep track of your toddlers.
• Photo and video sharing: Snap photos, record videos and tag students with one click. Automatically saved to your account and shared with parents (with no extra work!).
• Daily Sheet Reports: Log naps, meals, bathroom, and other activities. Parents get a feed and daily summary. Daily sheet reports are a breeze with brightwheel.
• Assessment & Observations: Make note of progress, achievements, and activities with pre-loaded state standards and a DRDP tool. Share with parents or privately amongst teachers.
• Student Feed: Parents get a personalized feed throughout the day. Save time – no more paper tracking sheets or sending individual photos.
• Parent Communication: Manage parent communication from one central hub (notices, calls, texts, etc.).
• Calendar: Share events, holidays, and important dates with both families and staff.
• Paperless Billing: Seamless electronic billing and payments for tuition and fees. Use brightwheel for all your child care accounting needs.
• Reporting: Detailed reports of every brightwheel feature for billing and licensing requirements.
• Seamless Sync: Brightwheel stays up to date across all phones and tablets – so teachers can use their own device or a school device.
• Web Portal: Easy management and great functionality available on the web, too.
• Affordable. Both free and premium plans available to fit your needs.

And... much more coming! Brightwheel is the #1 early education platform for preschools, child care, and daycares, and we’re always committed to innovation with frequent improvements and new features.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4958124,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=co.kidcasa.app\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/co.kidcasa.app/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/co.kidcasa.app/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/co.kidcasa.app/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/co.kidcasa.app/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Sago Mini World: Kids Games\",\n \"appId\": \"com.sagosago.World.googleplay\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.World.googleplay\",\n \"icon\": \"https://play-lh.googleusercontent.com/i34mlgU3WWNppU7la0O4QSAXJ6AeO4k3MmJC3FvWw8-Uo8BLBCURd3r5WnaNkVeRlQ\",\n \"developer\": {\n \"devId\": \"Play Piknik\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Play%20Piknik\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"THE PERFECT APP FOR PRESCHOOLERS
Discover hours of creative, interactive play with 40+ award-winning games in one app! Little ones aged 2-5 build, create, and pretend with thoughtfully-designed games that spark curiosity.

*** Winner of a Parents' Choice Gold Award, Webby's Nomination, Academics' Choice Smart Media Award, Kidscreen Award, and a W3 Mobile App Design Award. Featured in the New York Times, Guardian, and USA Today. ***

MEET SAGO MINI PALS AND CREATE YOUR OWN CHARACTERS
Explore outer space, meet some dinosaur friends, build a robot, become a superhero, serve customers at a diner, and more – all in one whimsical world. There are tons of Sago Mini pals to play with, including your little one’s own custom characters!

IMAGINATIVE PLAY & SKILL-BUILDING ACTIVITIES
Kids are free to explore and play their way... the only limit is their imagination! Open-ended play means there are no rules to follow, and how your child engages with the games is completely up to them. Delight in activities that encourage self-expression, empathy, and confidence…perfect for your child’s growing mind!

SUPER-SAFE, POSITIVE SCREENTIME
COPPA and kidSAFE-certified and no in-app purchases or ads for subscribers, Sago Mini World provides digital entertainment parents can feel good about. Designed for intuitive play, preschoolers can confidently explore Sago Mini World all on their own. (But hey, it’s fun to join in with your little one from time to time!)

FEATURES

• Unlimited access to hundreds of activities, all in one kid-friendly app
• Play pre-downloaded games offline without WiFi or internet
• Updated monthly with new content, games, and surprises
• Use one subscription across multiple devices for easy family sharing
• Members get early first access to all new games and releases
• Perfect for kids aged 2-5
• COPPA and kidSAFE-certified – safe and easy for toddlers
• No third-party advertising or in-app purchases for subscribers
• Makes a perfect gift for curious kids

Sago Mini World is part of Piknik – one subscription, endless ways to play and learn! Get full access to the world's best preschool apps from Toca Boca and Sago Mini with an Unlimited Plan.

Subscription Details

New subscribers will have access to a free trial at the time of sign-up. Users who don’t wish to continue their membership past the trial should cancel before the seven days are up so they aren’t charged.

• At each renewal date (whether monthly or annually), your account will automatically be charged the subscription fee. If you’d prefer not to be automatically charged, just head to your Account Settings and turn off ‘Auto Renew’.
• Your subscription can be cancelled at any time, without fee or penalty. (Note: you won’t be refunded for any unused portion of your subscription.)
• For more information, check out our FAQs.
• If you need help, have questions, or want to say ‘hi’, get in touch at worldsupport@sagomini.com

Privacy Policy

Sago Mini is committed to protecting your privacy and the privacy of your children. We adhere to the strict guidelines set forth by COPPA (Children’s Online Privacy Protection Rule) & kidSAFE, which ensure the protection of your child’s information online.

Privacy policy: https://playpiknik.link/privacy-policy
Terms of use: https://playpiknik.link/terms-of-use/

About Sago Mini

Sago Mini is an award-winning company devoted to play. We make apps, games and toys for preschoolers worldwide. Toys that seed imagination and grow wonder. We bring thoughtful design to life. For kids. For parents. For giggles.

Find us on Instagram, Facebook, and TikTok at @sagomini.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0851393,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.sagosago.World.googleplay\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.World.googleplay/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.World.googleplay/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.World.googleplay/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.World.googleplay/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Rock Identifier by Photo\",\n \"appId\": \"com.negroni.android.rockidentifier.app\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.negroni.android.rockidentifier.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/tWmPcrNA6vWpiGGQE9vOokfXB_mUg5UdzY9buTpR6RrhI69cakJabALzmZfyUjoZAI4N\",\n \"developer\": {\n \"devId\": \"Negroni\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Negroni\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Discover thousands of rock and stones types with the Rock Identifier App

If you are looking for a free app that enables you to identify rocks and stones simply by photographing them with your mobile phone, you should definitely try Rock identifier. It’s that simple! You take a photo with your phone or upload an existing image from your gallery and quickly find out the name of that particular rock, gem, crystal, or stone. This app allows you to identify gemstones, rocks, and minerals with pictures.

You can then choose from the list of results the rock that resembles the most with one in your photo. Whether you are a geologist, mineral explorer, hobbyist, student, teacher, or just want to learn more about rocks, the rock recognizer provides guidance and instruction on the most accessible and complete stone.

Rock Identifier app allows you to take a photo of any crystals or gemstones and get an instant accurate identification. This crystal identifier app helps you to identify and learn about any crystal, rock, or gemstone you find.

You can also save all your favorite geological observations in the app's rock collection area.

There are a lot of folks who ask for help identifying their rocks and minerals. There are many cases where you could ask a room full of experienced rockhounds to identify your rock, and you’d almost certainly not get all of them to agree.

Rock Identifier by Photo, Stone ID, Gem Scanner App is going to be your best option when it comes to looking for high-quality, free rockhounding apps. It’s incredibly easy to use and has an excellent user interface. As far as free apps go, this is definitely one of the best for helping you identify minerals you have in your collection.

Rock Identifier by Photo, Stone ID, Gem Scanner App is a comprehensive application that allows geologists and hobbyists to examine and explore minerals, rocks, gemstones, and crystals features. Rock Identifier by Photo, Stone ID, Gem Scanner App helps you to identify many types of fossils that you will find.

Whether you are preparing for an essay, studying for an exam or simply want to enrich your hobby or expand your knowledge, this “Rock Identifier by Photo, Stone ID, Gem Scanner App” is your essential guide.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.1,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.negroni.android.rockidentifier.app\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.negroni.android.rockidentifier.app/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.negroni.android.rockidentifier.app/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.negroni.android.rockidentifier.app/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.negroni.android.rockidentifier.app/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Lingvano: Sign Language - ASL\",\n \"appId\": \"com.lingvano.app\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.lingvano.app\",\n \"icon\": \"https://play-lh.googleusercontent.com/aClMSZk5M0AypuAq6_xxo1ecNf_iceNXvHA3KkzUyRoGYD5k33VeeQ3aNdYxGLGr-A\",\n \"developer\": {\n \"devId\": \"Lingvano\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Lingvano\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Lingvano ASL learning app is the fun, fast and easy way to learn American Sign Language for beginners! Our bite-sized, interactive lessons in combination with our ASL dictionary will help you develop the skills you need for real-life communication. Build bridges and start learning American Sign Language! Learn ASL fast and easy!

We know you are busy, so we made sure that with just 10 minutes a day, you will be able to engage in your first conversations in no time and learn sign language fast.

ASL learning made easy:
Practical conversation skills
Immerse yourself in American Sign Language learning hands-on through interactive and useful dialogs that get you conversational fast.
Remember what you've learned
Use our vocabulary trainer to reinforce your memory and retain your learnings for the long term.
ASL Dictionary
Want to look up a specific sign or sentence? No problem - our ASL dictionary for American Sign Language learning for beginners has got you covered.
Sign with confidence
Unsure whether you are signing the right way? Refine your execution with the Lingvano Sign Language learning mirror and gain the confidence to sign! Learn sign language fast and easy!

All of the ASL learning teachers at Lingvano are Deaf and share a strong passion for teaching American Sign Language (ASL) for beginners.

Our mission is to help you connect with Deaf family members, friends, colleagues, and neighbors. Help to build bridges with American Sign Language (ASL) and start learning! Learn sign language fast and easy!

------------------------------

If you enjoy sign language learning with the Lingvano ASL learning app for beginners, you can purchase a premium subscription to unlock all learning content and features.

Your subscription will automatically renew unless auto-renew is turned off at least 24 hours before the end of the current payment period. Your account will be automatically charged at the same price for renewal within the 24-hour-hour period prior to the end of the current payment period unless you change your subscription preferences.

Subscription options:
- 1 month
- 3 months
- 12 months\",\n \"scoreText\": \"4.7\",\n \"score\": 4.676684,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.lingvano.app\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.lingvano.app/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.lingvano.app/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.lingvano.app/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.lingvano.app/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Sololearn: Learn to Code\",\n \"appId\": \"com.sololearn\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.sololearn\",\n \"icon\": \"https://play-lh.googleusercontent.com/LIGo0qeu7aTc3LFnyDRTV01Q6szr3iG3h2WSqYj7Ef1XFKAS6IvKKuLSpTJn7NJUj-U\",\n \"developer\": {\n \"devId\": \"Sololearn - Learn to Code\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Sololearn%20-%20Learn%20to%20Code\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn to code over 20 programming languages, including Python, JavaScript, HTML, CSS, SQL, C#, Java, SWIFT, Go, and C++. Program, practice and build code in bite-sized, free lessons. Each coding course is designed by expert developers and tailored to your level. Learning paths include practice and real-world exercises as key elements for you to build code in Python, C++, HTML or Java: You even get an online code editor to practice!
Whether you're new to coding or already a developer, freshen up your programming skills and level up your career with our coding academy.

Explore our library of coding courses and get help from our community of fellow code learners when you need it. Learn to code in Python, JavaScript, Go, C++, Ruby, HTML and more with 40 million programming students worldwide. Build code, master algorithms and data structures, create software focused on machine learning, learn to interpret design patterns, and compete in fun coding games against other developers.

PERSONALIZED CODING CONTENT TAILORED TO YOUR SKILLS
No matter where you are on your coding journey, Sololearn supports your code learning experience at all stages. Whether you’re a beginner or a coding pro who wants to deepen your knowledge of Python, C#, and C++, we have the course for you. Use our coding academy to learn at your own pace and focus on what you want to improve. Learn, program and practice your coding daily with up-to-date content.

BITE-SIZED LEARNING
Our programming courses break down complex concepts into short, simple lessons that take only a few minutes to complete. Are you interested in Python, JavaScript, C#, or C++? Once you learn the theory, you'll get hands-on practice with real-world exercises. The online code editor features these programming languages and more. Test your knowledge with quizzes and daily coding practice exercises.

24/7 FREE USER SUPPORT
Do you have questions about Python, C++, HTML, Go, SQL, JavaScript, Ruby or another coding language? Constant community support makes code learning fun! You can also reach Sololearn directly by reporting feedback within the app or by emailing info@sololearn.com.

BUILD CODE FROM YOUR PHONE
Our online code editor lets you write code, run programs, and share ideas from your phone for free. You can practice coding languages highly in-demand right now: Python, Java, C++, Ruby, HTML, CSS, C#, SQL, and JavaScript.

GET YOUR PROGRAMMING CERTIFICATE
Take your first steps to become a code developer or level up your career with our coding academy. Earn a certificate for each course you finish, from Python to C++, SQL to Java. Showcase your coding skills and share your Sololearn academy certificate on LinkedIn to uplift your tech career. Sololearn makes learning to code fun!

Here are just some of the ways you can learn:
Access countless online coding and programming courses
Learn with bite-sized lessons
Practice with games and real-world challenges
Gain XP and compete against your fellow coders
Learn to code by running real code in our online code editor
Get help from our coding community
Create your first app with Objective-C and SWIFT
Develop an Android app with Java and Kotlin
Develop your first website with HTML5, CSS, JavaScript, React, C++ and JQuery

Reach your goals with Sololearn, the way to learn to code.
----
Support: info@sololearn.com
LinkedIn: https://www.linkedin.com/company/sololearn-inc-
TikTok: https://www.tiktok.com/@sololearn_official
Use Sololearn in your browser at https://www.sololearn.com

Everyone can learn to code. Start your tech career now with Sololearn.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.621556,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.sololearn\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.sololearn/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.sololearn/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.sololearn/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.sololearn/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Lingutown - Learn Languages\",\n \"appId\": \"com.learnlanguage.languagelearning.app2022\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.learnlanguage.languagelearning.app2022\",\n \"icon\": \"https://play-lh.googleusercontent.com/Uhr4JUuqf4hB2Op_D-j4xiBjdGwnapXN27C4PNgv7zP7eqYrZ_cjludp0Lra3I1WVOQ\",\n \"developer\": {\n \"devId\": \"Ocean Float Mobile\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Ocean%20Float%20Mobile\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn a language with Lingutown Language Learning that has free online language learning methods, interactive games, Flashcards, Book Reader, interactive lessons, Quizzes, Daily Statistics, text camera translation and voice camera translation and fun categories by your level.

Are you thinking of studying a language on your own but don’t know where to start? With our free mobile language learning app in a few minutes a day, everyone can learn a new language.

Our Learn Language app features a vast collection of interactive lessons and quizzes that simulate real life situations, enabling you to practice language skills as if you were conversing with native speakers. Whether you are aiming to learn English, learn Spanish or explore a different language, our app sets you on the path to fluency. Speak Spanish and English faster than you think...

The language learning journey becomes easier with our innovative flashcards and Book Reader, transforming vocabulary app into an exciting adventure. Master the art of language learning through an array of funny language learning games, including Hangman, that make mastering new words and phrases a truly enjoyable experience.

Our app revolutionizes the way you learn a new language, allowing you to practice real life conversations right from your phone. The interactive audio and video lessons engage and immerse you in the language, making language learning an engaging and seamless experience. You'll be surprised how quickly you'll learn with our app!

We have prepared the most commonly used phrases and dialogue sentences for learning English and learning Spanish. You’ll start memorizing core words, form sentences, learn phrases and take part in conversations.

Never lose track of your progress with our Daily Statistics feature. Gain insights into your language learnings, track improvements, and set new goals each day.

One of our standout features, the Text Camera Translate and Voice Camera Translate, gives you the power to understand and learn new language from real-world texts and speech. Perfect for understanding menus in a different language or listening to native speakers in real life situations, these features ensure that you’re never lost in translation.

Our Learn Language app is more than just a language learning app. It's your personal guide and companion on your journey to becoming a language learner.

Become fluent in your chosen language, practice conversations for real-life situations, and have fun while doing it! This is language learning redefined. This is your opportunity to learn a new language in the most interactive, engaging, and efficient way.

You’ll feel like you’re learning more and more Spanish and English every day. Every sentence, exercise, review, and reading has been carefully selected for you.

Learning a new language has never been so accessible and engaging, offering a perfect environment for all levels, from beginners to advanced learners. You can start to learn at your level. 10+ most common language categories are waiting for you. At the end of each category and level, you can test yourself with fun and instructive quizzes

Lingutown allows our users to read a word or phrase, pronounce it correctly, associate it with an illustration and practice it with listening, writing, and speaking games.

You will learn how to express yourself in complete sentences.

Let's Download the "Lingutown - Learn Languages" App Now! to start learning fast and speak fluently ;)\",\n \"scoreText\": \"4.1\",\n \"score\": 4.1313133,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.learnlanguage.languagelearning.app2022\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.learnlanguage.languagelearning.app2022/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.learnlanguage.languagelearning.app2022/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.learnlanguage.languagelearning.app2022/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.learnlanguage.languagelearning.app2022/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Khan Academy Kids: Learning!\",\n \"appId\": \"org.khankids.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/org.khankids.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/o9ASEntj8eAkHydf4_fGqKkWRbp2sMQzSLX3NKZYOVQsNAn5b9JunjRY4DpAsEvfwNE\",\n \"developer\": {\n \"devId\": \"Khan Academy\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Khan%20Academy\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Khan Academy Kids is the perfect back to school tool for a head start on early education! Learn how to read with fun story books and phonics games, trace letters and practice writing with playful learning activities. Discover math facts and numbers with colorful characters. Learn about feelings and social-emotional development with fun educational lessons. Sing, dance and get the wiggles out with kids songs and yoga videos.

Our award-winning kids learning app is designed by experts in early childhood education to help develop key skills. Khan Kids is an amazing resource for learning at home or in school, providing an extensive library of kids games and fun lessons for each child. Enjoy personalized learning that adjusts to your child for a unique educational experience. Read along with fun activities, story books and learning games perfect for kids ages 2-8. Teachers can find lessons and children’s books by standard, make assignments, and monitor students with helpful teacher tools.

Find free lessons with no ads or subscriptions. From preschool and kindergarten to 1st and 2nd grade, our kids learning app is perfect for back to school or homeschool education. Children love learning with letter tracing, reading exercises, number games and math lessons. Kids ages 2-8 can read along to story books, learn kids songs and watch videos from Super Simple Songs®, Bellwether Media, National Geographic Young Explorer Magazine and Alo Yoga.

Back to school season starts with Khan Academy Kids!

We’d love to hear from you. Please visit us at khanacademykids.org, or email us at khankids@khanacademy.org.

AWARD-WINNING CONTENT
• Common Sense Media—5-star Educational Value, 5-star Ease of Play,
• Children's Technology Review Editor's Choice Award for Excellence in Design—100% Rating
• Parents' Choice Foundation Gold Award

ROBUST CURRICULUM
• A kids reading app with phonics, letters, spelling & comprehension
• Reading & language lessons improve vocabulary & speech
• Math games for kids with counting, numbers, addition, subtraction, shapes and measuring lessons
• Focus, memory and problem-solving activities

PERSONALIZED LEARNING AT HOME OR IN SCHOOL
• Children can learn math & reading at their own pace – from preschool to 2nd grade
• Kids stories, reading games, activities & videos – provide everything you’re looking for from back to school apps
• Kids can read books on their own or read along with audio narration

FUN KIDS LEARNING GAMES
• Math games for kids, counting games, ABC games & more
• Learn how to read & write with five whimsical characters
• Highly interactive educational kids & toddler lessons

EMOTIONAL & PHYSICAL DEVELOPMENT
• Educational games, books, lessons, and activities help nurture social-emotional development in class or as homeschool education.
• Creative expression — Kids music, drawing, storytelling, coloring

EXPERTLY CURATED
• Developed with experts at the Stanford Graduate School of Education for kids ages 2-8
• Aligns with Head Start Early Learning Outcomes Framework & Common Core Standards

ABOUT KHAN ACADEMY AND KHAN ACADEMY KIDS
Khan Academy is a 501(c)(3) nonprofit organization with the mission of providing a free, world-class education for anyone, anywhere. Khan Academy Kids was created by experienced early learning experts who have created 22 other top-selling titles and received 22 Parents’ Choice Awards, 19 Children’s Technology Review Awards and a KAPi award for Best Children’s App. Khan Academy Kids is 100% free, without ads or subscriptions.

ABOUT SUPER SIMPLE SONGS®
Skyship Entertainment™ is the creator of the beloved children’s brand, Super Simple™. Their award-winning Super Simple Songs® combines delightful animation and puppetry with original and classic kids’ songs to help make learning simple and fun. With over 10 billion views and 10 million subscribers on YouTube, their songs and videos are favorites with parents, teachers and kids around the globe.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.659822,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.khankids.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/org.khankids.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/org.khankids.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/org.khankids.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/org.khankids.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"LEGO® DUPLO® MARVEL\",\n \"appId\": \"com.storytoys.lego.duplo.marvel.spiderman.avengers.kids.preschool.free.googleplay\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.storytoys.lego.duplo.marvel.spiderman.avengers.kids.preschool.free.googleplay\",\n \"icon\": \"https://play-lh.googleusercontent.com/gxQH0YEHOeHDrDf9Ek0TSccAmzM8NgZo-UrrM8U83Upe7asuK-zewJWAXEd0xH6HIomR\",\n \"developer\": {\n \"devId\": \"StoryToys\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/StoryToys\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Join Spidey, Captain America, and other MARVEL heroes for exciting adventures and pretend-play fun.

Each play pack features an open-ended play experience to help your favorite MARVEL hero save the day. Shoot webs with Spidey and his Amazing Friends or rescue a cat with Captain America! Each pack also has fun and engaging problem-solving challenges to support your child's learning and development. They can also build amazing structures with virtual 3D LEGO® DUPLO® bricks. Would your child like to make their very own Spider-Man HQ?

In LEGO DUPLO MARVEL, your child will:
- develop their IMAGINATION through pretend play with MARVEL heroes
- build their SELF-CONFIDENCE with positive play experiences
- stimulate their CURIOSITY with child-centered 'explore and discover' play patterns
- develop their CREATIVITY and SELF-EXPRESSION by building with virtual LEGO DUPLO bricks
- practice REASONING AND PROBLEM-SOLVING skills with fun and challenging puzzles

Get ready for some big adventures with your favorite heroes in LEGO DUPLO MARVEL!

Fun-filled play packs in this app:
- CAPTAIN AMERICA HELPS OUT
- SPIDEY VS ELECTRO
- SPIDEY AT HOME
- IRON MAN UNDER WATER
- AVENGERS WINTER FUN
- FUNFAIR SUPER HEROES
- IRON MAN SPACE RESCUE
- HULK SMASH!
- SPIDEY HQ

BUILD & PLAY
- Enjoy endless play possibilities with virtual 3D LEGO DUPLO bricks, props, and characters, including your favorite MARVEL super heroes!

PRIVACY
StoryToys takes children’s privacy seriously and ensures that its apps are compliant with privacy laws, including the Child Online Privacy Protection Act (COPPA). If you would like to learn more on what information we collect and how we use it, please visit our privacy policy at https://storytoys.com/privacy

Please note that this app is free to play but additional content is available via in-app purchases. Google Play does not permit in-app purchases and free apps to be shared via Family Library, so any purchases you make in this app will not be shareable via Family Library.

Read our terms of use here: https://storytoys.com/terms/

LEGO®, DUPLO®, the LEGO logo, and the DUPLO logo are trademarks and/or copyrights of the LEGO® Group.
©2023 The LEGO Group. All Rights Reserved.

©2023 MARVEL\",\n \"scoreText\": \"4.1\",\n \"score\": 4.091216,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.storytoys.lego.duplo.marvel.spiderman.avengers.kids.preschool.free.googleplay\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.storytoys.lego.duplo.marvel.spiderman.avengers.kids.preschool.free.googleplay/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.storytoys.lego.duplo.marvel.spiderman.avengers.kids.preschool.free.googleplay/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.storytoys.lego.duplo.marvel.spiderman.avengers.kids.preschool.free.googleplay/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.storytoys.lego.duplo.marvel.spiderman.avengers.kids.preschool.free.googleplay/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"YoYa: Busy Life World\",\n \"appId\": \"com.novakids.busylifeworld\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.novakids.busylifeworld\",\n \"icon\": \"https://play-lh.googleusercontent.com/Q-DsWFlefYE5h_BD4CbHDS4OIEDymaSdXe4KG2XhYYf2ipYFmWJwZPgzzpwiv-FpVdw\",\n \"developer\": {\n \"devId\": \"YoYa World\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/YoYa%20World\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to YoYa, a busy life world! Here you can explore fantastic real world locations, interact with massive items and build unique stories with your digital characters!

😍Introducing to YoYa World😍

YoYa: Busy Life World is like a virtual dollhouse gaming area where you can dress up your characters, make them walk, sit, sleep, eat and play! You are encouraged to play it your own way by simply tapping and dragging the characters and items in different locations, where aesthetic location designs will help you spark bright ideas and create your own story. You will have unlimited access to various locations at downtown, country, port, islands and so on!

🏫Exploring all different locations🏫

►My Home: Do you remember playing dollhouse app pretending as parents and taking care of toddlers? At my home, you can design your family members, arrange them with various daily activities: cook dinners, play with sisters, take showers for bedtime stories and so much more!

►Shopping Mall: 3 Floors of shopping mall where you can do grocery shopping, visit pet store, play video arcade and go to movies! You can shop everything you need for daily uses or for travelling!

►Hair Salon: Ready for a big make over? Go visit the hair shop to pick yourself up a colorful hair dye! Cut, curl, trim, and choose hair accessories you like!

►Beauty Shop: How does a face transformation sound like? Here you can make up with your own style by using face transformation machines. Don’t forget to enjoy afternoon tea time with cupcakes and more!

►Fashion Store: Style yourself boldly! Dress up, mix each separate clothing and accessories as you like! Fancy dresses and accessories for different occasions are awaits. A variety of new products added regularly!


✨YoYa: Busy Life World Features✨

★ Lots of customization options! Change clothes, hair styles and expressions!
★ Two play modes for you to choose. Experience exciting puzzles or diy your own adventures
★ Explore the Downtown, the Country, the Port, the Islands and many more locations
★ Enjoy free gifts EVERYDAY
★ Fully responsive items
★ Aesthetic real world locations & Unique characters
★ Play offline, no WiFi or data required.

🎁Free gifts every day🎁

Miniatures, fidget toys, the latest fashion dress and festival gifts! Check back everyday and discover exclusive surprise gifts beyond your imagination!Download now for free!

Discover More Fun with YoYa: Busy Life World!
· Subscribe to our YouTube channel: https://www.youtube.com/c/YoYaBusyLifeWorld
· Follow us on Instagram: https://www.instagram.com/yoya_busylifeworld
· Like us on Facebook: https://www.facebook.com/YoYa-Busy-Life-World-112758937725678
~~~
ABOUT YoYa
YoYa World is a company dedicated to creating high-quality comtent for children around the world. Life and Create. Explore the world!
We take privacy very seriously. You can find our Privacy Policy and Terms of Use on our website: https://www.yoyaworld.com
If you need help or you want to share with us your suggestions,get in touch at support@yoyaworld.com\",\n \"scoreText\": \"3.7\",\n \"score\": 3.740519,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.novakids.busylifeworld\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.novakids.busylifeworld/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.novakids.busylifeworld/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.novakids.busylifeworld/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.novakids.busylifeworld/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Rosetta Stone: Learn, Practice\",\n \"appId\": \"air.com.rosettastone.mobile.CoursePlayer\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/air.com.rosettastone.mobile.CoursePlayer\",\n \"icon\": \"https://play-lh.googleusercontent.com/EfU-TIPgFiueENh7xSnhCbJcn-qUJi-SFpqPgjI0aeYvMcEhNh8J_L0H8ZUoteQDdg\",\n \"developer\": {\n \"devId\": \"Rosetta Stone Ltd\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Rosetta%20Stone%20Ltd\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Why the Rosetta Stone app?
Because the best way to learn a new language is to surround yourself with it, and our language learning app does just that. Rosetta Stone’s Dynamic Immersion® method uses interactive and contextual language lessons blended with Extended Learning features. Everything you need is literally at your fingertips–any time, anywhere, any device; online or off and completely ad-free.

RECENT AWARDS
• 2019 PCMag Editors’ Choice
• 2019 Tabby Awards Winner
• 2019 Best Mobile App Awards: Best Designed App and Best Overall App

For the first time, we’re offering every one of our languages under one subscription. Flip between languages as often as you’d like and enjoy the freedom to get seriously curious. To access all languages, simply select Unlimited Languages when you subscribe.

Practice and learn to speak Spanish, French, German, Italian, English, Japanese, Korean, Chinese, Arabic, Portuguese, Russian, Dutch, Filipino, Greek, Hebrew, Hindi, Irish, Persian, Polish, Swedish, Turkish, Vietnamese, and more!



Rosetta Stone helps you speak confidently.
With a variety of speaking-focused lessons and features, instantaneous pronunciation feedback with TruAccent, a track record of getting people speaking any language confidently and a near-five star rating in the app store, the award-winning Rosetta Stone mobile app is the best way to learn and speak new languages.

What you want to learn, first.
Let us know why you're learning a new language and we'll create a game plan with curated content and helpful lesson reminders to help you stay on track in your learning journey**.

Fits any schedule.
Take a 10-minute lesson anywhere, study online or off.

Never leaves your side.
Practice languages here, there, and everywhere. Learn to speak English, Spanish, Chinese, Japanese or any language you want.

Don’t get lost in translation.
Touch and hold anything from your Core Lessons to reveal its translation*.

Speak confidently.
TruAccent® technology provides real-time pronunciation feedback and helps you speak confidently.

Go beyond memorization.
Learn in context using our Dynamic Immersion® method.



Extended Language Learning Features

Say it like a local.
Improve pronunciation and practice speaking by reading aloud while listening to native speakers with stories and useful conversations.

Always know what to say.
Get easy-to-understand greetings, phrases, expressions, daily conversations and more with Phrasebook*.

Train your ear.
Take a break from the screen by listening to Audio Companion® lessons.


Select a language learning subscription:
Choose from 3 and 12-month subscriptions—as well as a Lifetime option. No translators, grammar books or dictionary needed!


Available Languages:
Spanish (Latin American or Spain)
French
German
Italian
English (American or British)
Japanese
Korean
Chinese (Mandarin)
Arabic
Portuguese (Brazil)
Russian
Dutch
Filipino (Tagalog)
Greek
Hebrew
Hindi
Irish
Persian (Farsi)
Polish
Swedish
Turkish
Vietnamese

Enterprise and Education Learners
Unlimited use of Rosetta Stone's mobile app is available for existing Enterprise and Education Learners. Features may vary for Enterprise and Education Learners.



*Available with select languages on the Rosetta Stone: Learn Languages app.
**Your Plan languages offered for Android are English, French, Italian, German, and Spanish.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6681366,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=air.com.rosettastone.mobile.CoursePlayer\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/air.com.rosettastone.mobile.CoursePlayer/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/air.com.rosettastone.mobile.CoursePlayer/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/air.com.rosettastone.mobile.CoursePlayer/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/air.com.rosettastone.mobile.CoursePlayer/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Busuu: Learn Languages\",\n \"appId\": \"com.busuu.android.enc\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.busuu.android.enc\",\n \"icon\": \"https://play-lh.googleusercontent.com/Egp-GTOp0CMBeS6eRVEQO6bLYdfklzGxCYSkr7aZynbzr2AJSZpF9s05_6ppj8vwq7I\",\n \"developer\": {\n \"devId\": \"Busuu\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Busuu\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn a new language by building confidence from day one. Connect with a supportive community of native speakers for authentic feedback and cultural insights. Easily see your progress and what needs more revision to help you learn a language faster.

Learn Spanish 🇪🇸, Japanese 🇯🇵, English 🇬🇧, French 🇫🇷, Italian 🇮🇹, Portuguese 🇧🇷, German 🇩🇪, Korean 🇰🇷, Polish 🇵🇱, Russian 🇷🇺, Turkish 🇹🇷, Arabic, Chinese 🇨🇳 & Dutch 🇳🇱.


★ Google Play – Editor’s Choice ★


LANGUAGE LEARNING, POWERED BY PEOPLE

Learn Spanish

Learn the Spanish you need to communicate with confidence. Reach your goals whatever your level with short but focused lessons, get real-world ready with support from our community of native speakers, plus plenty of opportunities to practise writing, reading, listening and speaking Spanish.

Learn Japanese
Japanese learning that helps you progress from the first lesson. Build confidence with feedback from people fluent in the language you’re learning and feel ready for real-world interactions. Plus, access unique lessons covering phrases for travel, hiragana, katakana, kanji and our dedicated manga course. Our Japanese course covers all the skills you need in reading, writing, listening and speaking too.

Choose from 14 languages
From beginner to advanced levels, Busuu offers free complete courses designed by experts in 14 different languages. Learn French, Arabic, Chinese, Dutch, English, German, Italian, Japanese, Korean, Polish, Portuguese, Russian, Spanish, and Turkish.

TRUSTED BY OUR GLOBAL COMMUNITY OF OVER 120 MILLION REGISTERED USERS
★ Features ★

Learn together
Get feedback on how the language you’re learning is really used in daily life so you can speak like a local. Connect with and learn alongside our online community sharing their knowledge. Feel supported and watch your confidence grow.

Course content for right now
Our courses are regularly updated and include video flashcards with real people to make learning easier and more engaging. From comprehension exercises and opportunities to get tips from native speakers to dedicated courses on inclusive French and Korean Hangeul. Get skills in reading, writing and listening learning the language you need for real-life conversations.

Stay focused
Whether you’re learning for business, travel, school, or pleasure, stay on track to meet your language learning goals with motivating features like daily streaks and regular checkpoint tests.

From comprehension exercises built around real articles from El País for Spanish learning to our new manga-based Japanese learning course. Start a course, add regular study times to your Study Plan and get reminders to help you stick with it.


Smarter revision tools for language learning
Make revision a breeze with everything you’ve learned in one place. Go over tricky vocab and grammar at your own pace to make real progress.

Plus, gain Busuu Certificates to prove your skills, stay motivated by competing with other learners and so much more.

Discover how far you can go when you learn with Busuu, a Chegg Service.

★ Rated excellent by PCMag ★


DOWNLOAD NOW TO TRY A LESSON FOR FREE

Subscription is required for full access. Read our terms and conditions: https://www.busuu.com/en/terms
Privacy policy: https://www.busuu.com/en/privacy

Need some support?
We’re here for you in 15 languages: English, French, Spanish, Italian, Portuguese, German, Polish, Russian, Turkish, Arabic, Chinese, Japanese, Korean, Vietnamese & Indonesian.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6889896,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.busuu.android.enc\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.busuu.android.enc/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.busuu.android.enc/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.busuu.android.enc/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.busuu.android.enc/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Pic Answer\",\n \"appId\": \"com.techconsolidated.photosolve\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.techconsolidated.photosolve\",\n \"icon\": \"https://play-lh.googleusercontent.com/q-ohXKrL84cS-YroCIMZyT7z4TztxvO1AMxR72GJs6XjuDbMbwvY2P6tpoeWJFeANCQ9\",\n \"developer\": {\n \"devId\": \"Tech Consolidated Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Tech%20Consolidated%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Ever looked at a text book question and never was able to understand it let alone answer it? This ultimate Al-powered answering app is for you! Just take a picture of the math problem or quiz question, and get the answer from Ai, problem solved!

AI ANSWER App Math & Homework leverages the power of GPT-3.5, a state-of-the-art language model, to understand the math problem or the inquiry in the photo and provide accurate and reliable answers. Whether you're a student struggling with homework or just seeking to expand your knowledge, AI ANSWER App Math & Homework is here to give you all the answers you need.

Our smart and intuitive app is designed to be easy to use, so you can solve math problems and queries on the go. Simply snap a pic, and our Al-powered scanner will quickly analyze the question and generate the answer.

Download the app and become the genius of your class!\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0822783,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.techconsolidated.photosolve\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.techconsolidated.photosolve/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.techconsolidated.photosolve/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.techconsolidated.photosolve/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.techconsolidated.photosolve/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Learn Python\",\n \"appId\": \"python.programming.coding.python3.development\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/python.programming.coding.python3.development\",\n \"icon\": \"https://play-lh.googleusercontent.com/wwJX4r_xJD7zv8uqs7C8mvy-KkngaSzyvCf2ZiULy3l-1sbBY2t1jHFZ_bgF8eO_PpU\",\n \"developer\": {\n \"devId\": \"Coding and Programming\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Coding%20and%20Programming\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Build your python skills on the go with this amazing free app to learn Python Programming. Become a Python programming expert by learning the python coding language.

Learn Python is a must have app for all coding learners or computer science students to learn python programming language whenever they want and wherever they want. Whether you’re preparing for a python interview or any exam that requires python programming knowledge, you can find amazing content on this programming learning app.

This amazing Python Programming Learning app has amazing content such as Python Programming Tutorials, Python Programming Lessons, Programs, Questions & Answers and all that you need to either learn Python programming basics or to become a Python programming expert.

With an amazing collection of Python Programs (code examples) with comments, multiple questions and answers, all your programming learning needs are bundled in a single code learning app.


**************************
APP FEATURES
**************************
“Learn Python” app makes your code learning fun whether you’re looking to learn basics or become an expert programmer. Here are the features that would make us your single choice to learn python programming language -

💻Best collection of Python Tutorials
💻100+ Python Programs with proper comments for better understanding
💻Learn Python Basics for beginners
💻Questions & Answers in different categories
💻Important Exam Questions
💻Share the Tutorials & Programs with other friends
💻Tutorials for beginner programmers or those who’re looking to learn advance programming

“Learn Python” app has a really simple and intuitive user interface. It is the best app to let you learn the Python programming language for free. So, what are you waiting for? Download the app now to become a Python Programming Pro.

If you have any feedback for us, please write us an email and we will be happy to help you out. If you have liked any feature of this app, feel free to rate us on play store and share with other friends.

About Programming Hub
Programming Hub is a premium learning app that is backed by Google's Experts. Programming Hub offers research backed combination of Kolb's learning technique + insights from experts which ensures you learn thoroughly. For more details, visit us on www.prghub.com

Made with ❤️ in India 🇮🇳\",\n \"scoreText\": \"4.7\",\n \"score\": 4.672,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=python.programming.coding.python3.development\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/python.programming.coding.python3.development/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/python.programming.coding.python3.development/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/python.programming.coding.python3.development/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/python.programming.coding.python3.development/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"ASL Bloom - Sign Language\",\n \"appId\": \"com.toleio.us\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.toleio.us\",\n \"icon\": \"https://play-lh.googleusercontent.com/_8swtEo47JIHIJ3K-27oK9K7uqJFeLdPqLzsNrd9BCIt0BimpGjKqUe3pvzMO7OUagAw\",\n \"developer\": {\n \"devId\": \"SignLab\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/SignLab\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learning sign language has never been this easy!

ASL Bloom enables you to learn American Sign Language anywhere and at any time in a fun and effective way. The learning experience consists of 20 modules, each on a different topic and with specific learning outcomes. Within each module, you will have 4-7 gamified lessons, through which you will acquire new signs, practice mastery, learn about the grammar and continuously learn a new language. While our AI ensures that skills are not only learnt, but retained over time.

Quickly, you will be able to master all the essential words in order to sign in your day to day life.

ASL Bloom is for anyone looking to learn sign language! If you are looking to learn signs to communicate with loved ones, to learn a new language, to connect with people in your surroundings, for your career or for any other reason, you are in the right place.

We aim to transform how the world learns, and thinks about sign language. Our goal is to bridge the gap between the Deaf and hearing communities.

On the app, you will get:
- 20 modules with 120 lessons and 1300+ signs and sentences
- A visual dictionary with all signs across the lessons
- Practices quizzes and dialogues
- Grammar and culture tips

If you enjoy ASL Bloom, you should try our premium! It will give you access to all the learning materials of the platform and provide you with the best experience to learn sign language. Both yearly and monthly subscriptions exist.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7367306,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.toleio.us\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.toleio.us/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.toleio.us/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.toleio.us/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.toleio.us/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Kiddopia\",\n \"appId\": \"com.paperboatapps.google.kiddopia\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.paperboatapps.google.kiddopia\",\n \"icon\": \"https://play-lh.googleusercontent.com/g5enyEXkShQ9srI9p5bXYiFsvEWtRllMm-8TV19yBrF1J0fnWHlNqrGpad6yx8HfMQ\",\n \"developer\": {\n \"devId\": \"Kiddopia Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Kiddopia%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"1000+ play-based learning activities for curious little minds

Welcome to Kiddopia! We are an ever-growing home of research-backed early education games that perfectly combine play, skill-building activities, and essential preschool curriculum. Math, Language, Creativity, Self-expression, Roleplaying — we cover it all, and we make it fun and engaging. You can watch your child play their way to a better understanding of preschool concepts and a better grasp of life skills.

Built with love by parents

Our app is the brainchild of parents who know just how precious a child’s early years are and who believe in creating game experiences they would want their own child to use. The result is an environment for children to learn, grow, and express themselves in.

Where independent learners thrive

Designed by teachers and tested by preschoolers, Kiddopia is a world built on values — playful, kid-first, nurturing, inclusive, and ethical. Intuitive and COPPA-certified kidSAFE, it requires zero supervision and causes zero frustration in kids. There are no ads and no in-app purchases, just 1000+ reasons to smile.

Unlimited early learning adventures

Kiddopia is a merry mélange where new content drops regularly. From absorbing language- and number-based activities to exciting games underwater and in outer space, the options only get better in our ever-evolving world. With every delightful session of play in Kiddopia, your child will subconsciously develop perspective, creative thinking, academic skills, self-expression, values, and much more.

From giggles to growth

Kiddopia takes children on colorful adventures with real-world challenges. Amid countless giggles, your child will be a doctor, a teacher, a chef, a farmer, a musician, an astronaut, an interior decorator, and more. The list keeps growing and so will your child.

Subscription
One subscription for the whole family (works across mobile devices and platforms)
Easy cancellation
All your payments will be charged to your Google account
Your subscription will auto-renew unless you turn off auto-renew at least 24 hours before the ongoing subscription period ends

Contact
Website: https://kiddopia.com/contact-us
Instagram: https://www.instagram.com/kiddopia/
Facebook: https://www.facebook.com/getkiddopia
Twitter: https://twitter.com/getkiddopia

Privacy policy: https://kiddopia.com/privacy-policy.html\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0671787,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.paperboatapps.google.kiddopia\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.paperboatapps.google.kiddopia/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.paperboatapps.google.kiddopia/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.paperboatapps.google.kiddopia/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.paperboatapps.google.kiddopia/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"MSB Parent, USA\",\n \"appId\": \"com.hss.msb\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.hss.msb\",\n \"icon\": \"https://play-lh.googleusercontent.com/Roo06skAJU_dazAduip-YdH0j1NpU_1snIJrdrC4SKM3HeZfLK1uAN10_FRqNLErqKIN\",\n \"developer\": {\n \"devId\": \"Heartland Payment Systems\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Heartland%20Payment%20Systems\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"MySchoolBucks makes school meal payments easy for busy parents on-the-go!  Quickly and securely add money to your student’s school meal account using your credit card, debit card or electronic check.  You can also view recent cafeteria purchases and check current meal account balances for each student.  MySchoolBucks is backed by Heartland Payment Systems, one of the largest and most trusted payment processors in the United States. **MySchoolBucks is available in participating schools only**

Notes on Permissions:
· Camera permissions are needed to allow parents to take a photo of their student.
· Storage permissions are needed to store the student photos and crash log data.
· Phone and SMS permissions are needed for the username/password recovery by SMS process.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2905865,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hss.msb\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.hss.msb/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.hss.msb/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.hss.msb/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.hss.msb/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Seek by iNaturalist\",\n \"appId\": \"org.inaturalist.seek\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/org.inaturalist.seek\",\n \"icon\": \"https://play-lh.googleusercontent.com/S1kE18cr49reB-Euu6OCxczZpEYM3rGs277I0DR9ssgPGKd2QEtnLu7S8S8z8RBe_A\",\n \"developer\": {\n \"devId\": \"iNaturalist\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/iNaturalist\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Use the power of image recognition technology to identify the plants and animals all around you. Earn badges for seeing different types of plants, birds, fungi and more!

• Get outside and point the Seek Camera at living things

• Identify wildlife, plants, and fungi and learn about the organisms all around you

• Earn badges for observing different types of species and participating in challenges


OPEN THE CAMERA AND START SEEKING!

Found a mushroom, flower, or bug, and not sure what it is? Open up the Seek Camera to see if it knows!

Drawing from millions of wildlife observations on iNaturalist, Seek shows you lists of commonly recorded insects, birds, plants, amphibians, and more in your area. Scan the environment with the Seek Camera to identify organisms using the tree of life. Add different species to your observations and learn all about them in the process! The more observations you make, the more badges you’ll earn!

This is a great app for families who want to spend more time exploring nature together, and for anyone who wants to learn more about the life all around them.

KID-SAFE

Seek does not require registration and does not collect any user data by default. Some user data will be collected if you choose to sign in with an iNaturalist account, but you must be over 13 or have your parents permission to do so.

Seek will ask permission to turn on location services, but your location is obscured to respect your privacy while still allowing species suggestions from your general area. Your precise location is never stored in the app or sent to iNaturalist unless you sign in to your iNaturalist account and submit your observations.

Our image recognition technology is based on observations submitted to iNaturalist.org and partner sites, and identified by the iNaturalist community.

Seek is part of iNaturalist, a not-for-profit organization. Seek was made by the iNaturalist team with support from the California Academy of Sciences, the National Geographic Society, Our Planet on Netflix, WWF, HHMI Tangled Bank Studios, and Visipedia.\",\n \"scoreText\": \"3.4\",\n \"score\": 3.4076247,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.inaturalist.seek\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/org.inaturalist.seek/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/org.inaturalist.seek/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/org.inaturalist.seek/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/org.inaturalist.seek/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Khan Academy\",\n \"appId\": \"org.khanacademy.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/org.khanacademy.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/TpK0AcjPn5-XDKgSZ5jAob1H7MsQuJILOMR4M4QYkTt5CBPgTJVr7mysrKM6Ia8SrX8\",\n \"developer\": {\n \"devId\": \"Khan Academy\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Khan%20Academy\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"You can learn anything. For free.

Spend an afternoon brushing up on statistics. Discover how the Krebs cycle works. Get a head start on next semester's geometry. Prepare for upcoming exams. Or, if you're feeling particularly adventurous, learn how fire-stick farming changes the landscape of Australia.

Whether you're a student, teacher, homeschooler, principal, adult returning to the classroom after 20 years, or a friendly alien trying to get a leg up in earthly biology — Khan Academy's personalized learning library is available to you, for free.

- Learn anything, for free: Thousands of interactive exercises, videos, and articles at your fingertips. Study math, science, economics, finance, grammar, history, government, politics, and much, much more.

- Sharpen your skills: Practice exercises, quizzes, and tests with instant feedback and step-by-step hints. Follow along with what you're learning in school, or practice at your own pace.

- Keep learning when you're offline: Bookmark and download your favorite content to watch videos without an internet connection.

- Pick up where you left off: Tailored to your current learning level, our mastery system gives instant feedback and recommendations on exactly which skills and videos to try next. And, if you choose to create a free account, your learning syncs with http://khanacademy.org, so your progress is always up-to-date across all your devices.

Learn using expert-created videos, interactive exercises, and in-depth articles in math (arithmetic, pre-algebra, algebra, geometry, trigonometry, statistics, calculus, differential equations, linear algebra), science (biology, chemistry, physics), economics (microeconomics, macroeconomics, finance and capital markets), humanities (art history, civics, finance, US history, US government and politics, world history), and more (including computer science principles)!

Already familiar with the Khan Academy website? Not all functionality is available in this app. Community discussions, computer programming content, test prep, parent tools, teacher tools, and district tools should all be accessed directly at http://khanacademy.org.

Khan Academy is a 501(c)(3) nonprofit organization, with the mission of providing a free, world-class education for anyone, anywhere.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.285947,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.khanacademy.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/org.khanacademy.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/org.khanacademy.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/org.khanacademy.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/org.khanacademy.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Blossom - Plant Identifier\",\n \"appId\": \"com.conceptivapps.blossom\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.conceptivapps.blossom\",\n \"icon\": \"https://play-lh.googleusercontent.com/rDH_bkyIeGmKXB106DWmXW0xgaZwTOEVETMtBJU4VnhXtAuc35BI_ZYKi7MC5juBIA\",\n \"developer\": {\n \"devId\": \"Conceptiv Apps\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Conceptiv%20Apps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"* People’s Voice Winner 2022 * — The Webby Awards

Discover Blossom - your reliable plant care guide and a pocket plant identifier app!

Identify plants, flowers, succulents, trees by photo and get how-tos and useful plant care tips. Set timely reminders to water your greenery on time without drowning it. Find out the best way to fertilize and repot your plants and flowers. Snap a picture of a tree to identify and learn more about it. Start growing your private blossoming garden!


Plant identifying and growing can be real fun! With the Blossom plant identifier app, you can learn everything you need to give your green friends a long and happy life.

Features

ACCURATE PLANT RECOGNITION
Instantly identify over 10,000 of plants, flowers, succulents, and trees by picture. Simply take a photo of a plant or use a picture on your phone, and our app will identify it in a snap!

PLANT DISEASE IDENTIFICATION
Need plant 911? Take a snap of a sick plant or upload a photo from your gallery and get extensive disease and treatment info.

VIRTUAL CARE ASSISTANT
Consult with our chatbot, the Blossom Assistant, to identify your plant's problems and get your green buddies thriving again.

GARDEN FOR EDIBLE PLANTS
Grow organic edible plants with Blossom! Plan your seeding season with a personalized planting calendar, and get additional care reminders for your garden.

BOTANIST HOTLINE
Send a message to get extensive plant care and treatment advice from our botany experts.

PLANT CARE REMINDERS
Get notified when it's time to water, fertilize, and repot. Blossom can even create care reminders automatically, based on each specific plant’s needs.

PERSONAL PLANT COLLECTION
Keep track of your green friends in one place! Group plants by room types or create separate plant folders based on your own criteria.

WATER CALCULATOR
Get customized watering recommendations, based on your plant type and the size of a pot.

USEFUL INFORMATION AND SMART TIPS
Need to know when your plant will flower or what trees grow in your garden? Identify plants by photo or search the plant name in our database to get detailed information about each plant’s features and caring instructions.

GREEN BLOG
Discover tons of plant care articles, tips and video tutorials in our constantly updated blog!

NOTES
Journal the life of your plants - monitor their growth and development, celebrate the first blooms, describe your plant care routine, or attach photos to see how your plant has changed.

LIGHT METER
Let us show you the light (and what it means!). Measure the light conditions in your space and find the best locations for your plants.

Make the Blossom plant identifier app a home for your plants. Whether you are an expert gardener or a first-time plant parent trying to identify the needs of your houseplant - enjoy tending your own garden.

Premium features:
Plant disease identification
Unlimited identification
Unlimited plants in your garden
Unlimited water calculations
Сonsultations with botanists
Light meter - measure the light levels in your space

You can choose from different subscription options:
1-month Subscription
1-year Subscription
* A subscription with a free trial will automatically renew to a paid subscription unless you cancel the subscription before the end of the free trial period.
* Cancel a free trial or subscription anytime through your account settings on the Google Play Store and continue to enjoy the premium content until the end of the free-trial period or paid subscription!

Conceptiv Apps, LLC is a part of the Apalon family of brands. See more at Apalon.com
Privacy Policy and Terms of Use: https://conceptivapps.com/privacy_policy.html
EULA: https://conceptivapps.com/eula.html
California Privacy Notice: https://conceptivapps.com/privacy_policy.html#h

Contact us at support@blossomplant.com if you have any feature requests, questions, or comments.

Blossom is your go-to plant identifier app for exploring the natural world!\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5865984,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.conceptivapps.blossom\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.conceptivapps.blossom/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.conceptivapps.blossom/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.conceptivapps.blossom/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.conceptivapps.blossom/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Star Walk 2 Ads+ Sky Map View\",\n \"appId\": \"com.vitotechnology.StarWalk2Free\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.vitotechnology.StarWalk2Free\",\n \"icon\": \"https://play-lh.googleusercontent.com/wxJbDhA1WTbK2lRriShrcu-AzWkYnnPczef6n1gFhgfnoZLNLJ0RrpV69TJeLhn616Uf\",\n \"developer\": {\n \"devId\": \"Vito Technology\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Vito%20Technology\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Star Walk 2 Ads+ - Identify Stars in the Night Sky is a great astronomy guide to explore the night sky day and night, identify stars, constellations, planets, satellites, asteroids, comets, ISS, Hubble Space Telescope and other celestial bodies in real time in the sky above you. All you need to do is to point your device to the sky.

Explore the deep sky with one of the best astronomical applications.

Objects and astronomical events to learn in this stargazing app:
\\t\\t\\t\\t\\t\\t\\t\\t\\t
- Stars and constellations, their position in the night sky
- Solar system bodies (solar system planets, the Sun, the Moon, dwarf planets, asteroids, comets)
- Deep Space objects (nebulae, galaxies, star clusters)
- Satellites overhead
- Meteor showers, equinoxes, conjunctions, full/new Moon and etc.

Star Walk 2 Ads+ contains in-app purchases.

Star Walk 2 Ads+ - Identify Stars in the Night Sky is a perfect planets, stars and constellations finder which can be used by both space amateurs and serious stargazers to learn astronomy by themselves. It is also a great educational tool for teachers to use during their astronomy classes.

Star Walk 2 Ads+ in travel & tourism industry:

‘Rapa Nui Stargazing’ on Easter Island uses the app for sky observations during its astronomical tours.

‘Nakai Resorts Group’ in the Maldives uses the app during astronomy meetings for its guests.

This free version contains ads. You can remove ads through In-App purchases.

Main features of our astronomy app:

★ Stars and planets finder shows the real-time map of the sky on your screen in whatever direction you are pointing the device.* To navigate, you pan your view on screen by swiping in any direction, zoom out by pinching the screen, or zoom in by stretching it.

★ Learn a lot about the solar system, constellations, stars, comets, asteroids, spacecraft, nebulas, identify their position on the map of the sky in real time. Find any celestial body following a special pointer on the map of the stars and planets.

★ Touching a clock-face icon at the upper-right corner of the screen allows you select any date and time and lets you go forward or backward in time and watch the night sky map of stars and planets in fast motion. Find out star position of different time periods.

★ Enjoy AR stargazing. View stars, constellations, planets, satellites overhead and other night sky objects in augmented reality. Tap on the image of the camera on the screen and the astronomy app will activate your device's camera so you can see charted objects appear superimposed on live sky objects.

★ Except for map of the sky with stars and constellations, find the deep-sky objects, satellites in space live, meteor showers. The night-mode will make your sky observation at night time more comfortable. Stars and constellations are closer than you think.

★ With our star chart app you will get a deeper understanding of the constellation`s scale and place in the night sky map. Enjoy observing wonderful 3D models of constellations, turn them upside down, read their stories and other astronomy facts.

★Be aware of the latest news from the world of outer space and astronomy. The "What's new" section of our stargazing astronomy app will tell you about the most outstanding astronomical events in time.

*The Star Spotter feature won't work for the devices that are not equipped with the gyroscope and compass.

Star Walk 2 Free - Identify Stars in the Night Sky is an impressively good looking astronomy app for stargazing at any time and place. It is the all-new version of the previous Star Walk. This new version has a re-designed interface in conjunction with advanced features.

If you’ve ever said to yourself “I’d like to learn the constellations” or wondered “Is that a star or a planet in the night sky?”, Star Walk 2 Ads+ is the astronomy app you’ve been looking for. Try one of the best astronomy applications.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6131315,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.vitotechnology.StarWalk2Free\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.vitotechnology.StarWalk2Free/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.vitotechnology.StarWalk2Free/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.vitotechnology.StarWalk2Free/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.vitotechnology.StarWalk2Free/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Superbook Kids Bible App\",\n \"appId\": \"air.cbn.superbook.bible.app.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/air.cbn.superbook.bible.app.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/Y6lxETqnxc5m7B1nnXMQOOp2w-8n0O1N8pvyGcdI3FXfdSTfhHYbpehZMpLw5ESkB10\",\n \"developer\": {\n \"devId\": \"The Christian Broadcasting Network (CBN)\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/The%20Christian%20Broadcasting%20Network%20(CBN)\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"This FREE Kids Bible App brings the Bible to life for the entire family with an easy to understand Bible, videos and fun engaging Bible games. Featuring 52 full-length, free episodes from the exciting Superbook animation series that includes David and Goliath, Daniel in the Lions’ Den, the Miracles of Jesus, The First Christmas, He Is Risen and more!

The Kids Bible app is available for FREE and features include:

FULL KIDS BIBLE WITH AUDIO
• Easy to understand Bible
• Multiple versions and audio Bible

FUN BIBLE GAMES
• Play more than 20 fun games
• Trivia Games, Word Games and Action Games

FREE SUPERBOOK EPISODES
• Watch 52 full-length, free episodes from the Superbook animation series
• Now downloadable so you can watch full episodes offline

DAILY VERSE FOR KIDS
• Encouraging daily verse
• Learn while playing fun games

ANSWERS TO QUESTIONS
• Answers to common questions that kids ask about God, Jesus, Heaven and many other topics
• What does God look like? How do you get Jesus in your heart? What is heaven like?
• And hundreds more questions and answers

DISCOVER HOW TO KNOW GOD
• Experience a life-changing, kid-friendly Gospel message and discover how to begin a friendship with God

PEOPLE, PLACES AND ARTIFACTS
• Hundreds of profiles of people, places and artifacts with engaging images and detailed biographies

DYNAMIC CONTENT
• Verses have related questions and answers, profiles, games, video clips, images and more

PERSONALIZED KIDS BIBLE
• Favorite/bookmark verses that you like
• Highlight passages with multiple color choices
• Take notes and attach them to verses
• Add your own photos so that you can make a personal connection with a verse
• Your notes, favorite verses and personal photos can be accessed from the My Stuff area of the app

FULL SUPERBOOK EPISODES / BIBLE STORIES INCLUDE:
• Creation and Adam and Eve
• Noah's Ark
• Abraham and Isaac
• Jacob and Esau
• Joseph and Pharaoh's Dream
• Moses, the burning bush and the plagues of Egypt
• The Ten Commandments
• Rahab and the Walls of Jericho
• Gideon
• David and Goliath
• Elijah and the prophets of Baal
• Daniel and the fiery furnace
• Daniel in the lions' den
• Esther
• Job
• Jonah and the big fish
• John the Baptist
• The First Christmas and the birth of Jesus
• Miracles of Jesus - Jesus heals a paralyzed man
• Miracles of Jesus - Jesus calms the storm
• The parable of the sower
• The prodigal son
• The Last Supper
• The resurrection of Jesus
• Paul and the road to Damascus
• Paul and the shipwreck
• Revelation

DAILY INTERACTIVE ENGAGEMENT
• Take Daily Quests – game challenges that feature an encouraging verse of the day
• Find Biblical answers to questions that are important to kids – questions about God, Jesus, life and heaven
• Choose the right answer in an engaging trivia game – important questions with Biblical answers
• Try to find all of the hidden words in a challenging Word Search game
• Decode verses before time runs out in the exciting Verse Scramble game

OTHER FEATURES OF THE KIDS BIBLE APP
• Search the verses or the interactive content
• Email your friends your favorite verses, notes, or personal photos with related verses
• The Kids Bible app is available in English, Spanish, Arabic, Chinese, Farsi, Portuguese, Romanian, Russian, French and Hindi with full Superbook episodes available in many more languages!

The Kids Bible App is a wonderful Bible experience for the whole family. Download the Superbook Kids Bible App today and begin the adventure of a lifetime!\",\n \"scoreText\": \"4.8\",\n \"score\": 4.825599,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=air.cbn.superbook.bible.app.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/air.cbn.superbook.bible.app.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/air.cbn.superbook.bible.app.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/air.cbn.superbook.bible.app.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/air.cbn.superbook.bible.app.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Blinkist: Big Ideas in 15 Min\",\n \"appId\": \"com.blinkslabs.blinkist.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.blinkslabs.blinkist.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/JwvZpmpuUpw-QqSAzqARVDiuZZBAX-M8BhX21v4ppSzNEPXaMAjgJ5pS-Rvti-nwmw\",\n \"developer\": {\n \"devId\": \"Blinks Labs GmbH\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Blinks%20Labs%20GmbH\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Join 26 million Blinkist users and read or listen to key insights from 6,500+ bestselling books and podcasts in just a few minutes!

🏆 Google Material Design Award
🔥 Apple’s Best Apps of 2017
🌟 United Nations World Summit Award in the Learning & Education category

Blinkist gives you all the big ideas, spades of inspiration, and learning to help curious minds grow.

From great audio books & podcasts come important ideas! Blinkist transforms the key insights of thousands of bestselling books & popular podcasts into powerful bite-sized formats you can read or listen to in 15 minutes.

Looking to develop your career? Get a crash course on all the big ideas from leadership, management and entrepreneurship books with Blinkist listening and reading app.

Find inspiration from book reviews, get new ideas from podcasts, and a crash course in just about anything on the best listening and reading app.

=====================

With the Blinkist app you’ll get:

💰A FREE 7-day trial with unlimited access
🔖 PERSONALIZED book recommendations to read or listen including book of the month
🤝 A free EXTRA PROFILE on your account to share books with a friend
🧑\\u200d🏫 CRASH COURSES from top experts and creators
📖 A NEW curated book every day to easily fit learning into your routine
📚 READING LISTS with books from hundreds of topics, for example books from from famous TED Talk speakers
🎙️ AUDIO versions of every book and podcast, narrated and produced by PROFESSIONALS
OFFLINE-MODE so you can enjoy your favorite book insights without Wi-Fi
📙 KINDLE integration: send books to your reader on Kindle
🔖 27 CATEGORIES to explore + book reviews + audio books + more

=====================

Our rating and reviews speak for themselves:

Trevor: “Blinkist by far has the best book summaries when compared to any other provider in my opinion. It’s really surprising how much information you can get so quickly and easily with this app.”

Brandon: “Excellent app. Book summaries are concise and accurate.”

Jared “Worth every penny. Wasn't sure about short book summaries, but started with books I'd read already and very satisfied you get the main ideas. My benefits 1) I get inspiring/useful summaries of books that I wouldn't have time to read that are far more useful than other sources. 2) There are books I don't agree with and wouldn't invest time reading, but reading the blinks I get a large variety of ideas and further understand other views. 3) Some blinks are so great I just have to buy the book!”

=====================

Questions? Suggestions? Speak to a real person at Blinkist! Our trusty customer support team is just an email away - simply write to support@blinkist.com

Terms of Service: https://www.blinkist.com/en/tos
Privacy Policy: https://www.blinkist.com/en/privacy/#privacy\",\n \"scoreText\": \"4.6\",\n \"score\": 4.561365,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.blinkslabs.blinkist.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.blinkslabs.blinkist.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.blinkslabs.blinkist.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.blinkslabs.blinkist.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.blinkslabs.blinkist.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Procare: Childcare App\",\n \"appId\": \"com.kinderlime.dev\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.kinderlime.dev\",\n \"icon\": \"https://play-lh.googleusercontent.com/tYXCWnxb4KxwSMojvFfYVaPTgzy6D0WuVrhMCceNhgIximoeruyw87ifTz3IJSiWVwes\",\n \"developer\": {\n \"devId\": \"Procare Solutions\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Procare%20Solutions\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Why Procare?

For more than 30 years, Procare Solutions has been helping early childhood educators simplify operations and create meaningful connections with families, so they can focus on what matters most – the children in their care.

Leverage professional communications with the easy-to-use child care mobile app and the opportunity for real-time updates from the classroom to enhance the parent and staff experience.

· Share child care activities and daily reports

· Streamline two-way family communications

· Share photos and videos

· Record and share student milestones

· Send and view news and events via easy-to-create newsletters

Procare includes:

CONTACTLESS SIGN IN/OUT : Parents can sign in-out students contactless using QR code or Curbside GeoLocation.

STUDENT ATTENDANCE: Replace paper sheets with digital SIGN IN-OUT. Record student attendance, absences (add notes) and transfer to different rooms. Generate BEST industry standard reporting from our website to satisfy childcare LICENSING needs. (Also has OFFLINE MODE to run without network)

PARENT KIOSK: Parents can drop off and pick up children easily (optional use of a 4-digit pin). Record SIGNATURES and capture answers with DROP-OFF form. Charge payments based on their HOURLY attendance and collect LATE FEE.

STAFF TIMECARD: Staff can CHECK-IN from the app using 4-digit pin. Build REPORTS of their timecard from website for PAYROLL.

TRACK RATIOS: Always be licensing-compliant. Track ratios in real time from the app for all your rooms.

PHOTOS and VIDEOS: Send any number of photos and videos, and tag students with one click on our child care app. Unlimited storage and sent to parents with one tap.

LEARNING: Record custom student activities and attach development skills like fine motor, social behavior, language and more.

DAILY SHEETS: Send daily activities for infants/toddlers and record Diapers, Bottles, Naps, Meals and Bathroom visits. Reports are sent to parents automatically.

BILLING: Create and send invoice to parents easily. Manage all billing transactions, payments, refunds and credits from the app.

INCIDENTS: Record all information related to any student incidents, send the report to parents and get their signature.

CALENDAR: Share upcoming events with parents easily for any day and month.

FAMILY COMMUNICATION: You can send a message, text or email to parents or guardians instantly. Have their phone number and call if needed.

MANAGE CENTER: Keep your entire student roster and family database in your fingertips.

REPORTS: Detailed reports for everything you do is available from website for student attendance, staff timecard, billing and entire roster.

INTEGRATIONS: Procare integrates seamlessly with all major SIS (student database) systems, QuickBooks (accounting systems), payroll systems and much more.

Complete child care management and daycare software features, e.g., student / family information, immunizations, reporting and more.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7657294,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.kinderlime.dev\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.kinderlime.dev/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.kinderlime.dev/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.kinderlime.dev/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.kinderlime.dev/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Picture Mushroom - Mushroom ID\",\n \"appId\": \"com.glority.picturemushroom\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.glority.picturemushroom\",\n \"icon\": \"https://play-lh.googleusercontent.com/aeYpcB5TMQXDkyeU6eAKcKwA4dw6AjV7_ythOtbf0Sk5ZqLU85OyXAEvDao1zdvWoz2-\",\n \"developer\": {\n \"devId\": \"Next Vision Limited\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Next%20Vision%20Limited\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Are you looking for a quick and accurate mushroom identifier? The Picture Mushroom app is right for you!
Simply take or upload a picture of a mushroom, and the Picture Mushroom app will tell you what it is in seconds. The app will offer you several similar species to choose from, and you can find the most exact one by comparing the images. In the scanning result, you can learn lots of useful info including mushroom name, edibility, habitat, ways of identifying, and so on. This app will also warn you of some toxic mushrooms so that you can stay away from them to keep safe.

Moreover, the app has many articles about mushrooms, like ways of identifying mushrooms, edibility identification, mushroom-related stories, and more. With the Picture Mushroom app, you can learn the most trending topics in the field.

Additionally, the app allows you to track your foraging sites to form your footprint map. It will recommend some seasonal mushrooms according to your location, and show the distribution map so that you can know what kind of mushrooms to pick and where to find them.

You can also manage and share your identified mushroom with the in-app collection.

Whether you are a keen mushroom forager/hunter, a mycologist, a mushroom lover, a student, a teacher, an educational parent, or even a chef, you shouldn't miss the Picture Mushroom app!

Key Features:
- Fast and accurate ID of numerous species of mushrooms, fungi, and the like
- Full mushroom encyclopedia including all the info you need to know about mushrooms like name, habitat, identification method, toxicity, and more
- High-quality articles for you to know the trending topics in the field of mushroom
- Finely designed and user-friendly interface which allows you to easily identify, learn and share mushrooms
- Keep track of your foraging site for your next picking reference
- Recommend seasonal mushrooms of your place and show a mushroom distribution map
- Easily keep track of the mushrooms you’ve identified in your collection, and share your findings with your friends

Terms of Use: https://app-service.picturemushroom.com/static/user_agreement.html
Privacy Policy: https://app-service.picturemushroom.com/static/privacy_policy.html

Contact us:
support@picturemushroom.com

Find out more about Picture Mushroom at:
https://picturemushroom.com/

Join us on our Discord Server:
https://discord.gg/Zh6ZqaqM\",\n \"scoreText\": \"4.4\",\n \"score\": 4.381963,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.glority.picturemushroom\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.glority.picturemushroom/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.glority.picturemushroom/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.glority.picturemushroom/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.glority.picturemushroom/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"ELSA: AI Learn & Speak English\",\n \"appId\": \"us.nobarriers.elsa\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/us.nobarriers.elsa\",\n \"icon\": \"https://play-lh.googleusercontent.com/_AdFIWV0qB2sqvTfcW9BlRo4SDosA_Uq-P3UO7Wa9N_Qh5Ud_6Gu-3L3YrXZ70rEWw\",\n \"developer\": {\n \"devId\": \"ELSA Speak\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/ELSA%20Speak\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Do you feel like speaking English is no piece of cake? Luckily, ELSA (English Language Speech Assistant) is here to help. ELSA is an AI app with personalized English language lessons just for you. Start improving every day with your own personal practice partner. You’ll be fluent in English in no time.

Our English learning app is powered by Artificial Intelligence (AI) that can quickly assess your fluency level and help you learn English, no matter what your native language is. ELSA has 7,100+ AI language learning activities and tools to help you speak in an American accent, learn English vocabulary, and improve pronunciation and grammar. You can learn Spanish to English, French to English, or any other language to English. ELSA will give the right English training to help you feel confident in any English conversation.

ELSA listens and speaks to you, just like practicing with a real human…your very own personal tutor.

Key Features:

- Instant Speech Recognition: Learn how to speak English words correctly with real-time feedback on your English pronunciation.
- Accent Training: Perfect the American accent by learning the American English pronunciation of words in entertaining exercises.
- Vocabulary Enhancement: Learn English vocabulary words and phrases that come up in daily conversation.
- Learn English Anywhere: Practice English speaking throughout your day in snackable exercises in ELSA’s groundbreaking language app.
- Bite-Sized Lessons: Choose from 7,100+ English language lessons in our unique English education course catalog.
- Speaking Proficiency Score: Get a quantitative analysis of your spoken English skills as you converse in English and track your progress as you go.
- Tips and Advice: Get effective tips on your English speaking skills in 190+ unique topics, such as travel and job interviews.
- Exam & Test Preparation: Practice English conversations to train yourself for the IELTS speaking test, TOEFL English test, or other English language tests.

Why ELSA is Perfect for You…

- Many Languages Supported: Learn English from French, learn English from Hindi, or any of the 44 foreign languages supported on our platform.
- Unbiased Learning Environment: With ELSA, it’s just you and your AI language coach. Nobody will judge you and there’ll always be someone to teach you how to speak English correctly.
- All Skill Levels: You can start from beginner’s English, or directly jump to advanced English practice lessons, whatever suits you.
- Self-Paced Learning: Listen and practice English whenever your schedule allows.
- Easy English learning tools: Our advanced language exchange tools and pronunciation coach are easy to access and always available.
- English Beyond Pronunciation: Our algorithms are dedicated to teaching you the correct pronunciation of words. Not only that, but you can also learn English grammar and vocabulary as you practice.

How Can ELSA Get Results?

➢For Students:
Study English on ELSA to excel in school or in the English Language tests like IELTS, TOEFL, or the Duolingo English Test. With our focused lessons, like IELTS vocabulary lessons, you’ll get access to everything you need to succeed academically.

➢For Travelers:
Get acquainted with different English dialects and accents without having to open English translators on your trip. Learn how to understand and speak in an American accent.

➢For Professionals:
Learn the easy pronunciation of English words commonly used in your office. Learn to read and write in English to amaze your colleagues and excel at work. Become a confident bilingual speaker in no time.

Reach Out To Us:
Whether it’s for feedback, questions, suggestions, or personal experiences, our inboxes are always open to hearing from you. Write us an email at support@elsanow.io.

ELSA is undoubtedly at the top of the best English language learning apps. Say goodbye to language anxiety and say hello to confidence with ELSA! Download Now!\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6615877,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=us.nobarriers.elsa\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/us.nobarriers.elsa/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/us.nobarriers.elsa/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/us.nobarriers.elsa/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/us.nobarriers.elsa/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Microsoft Math Solver\",\n \"appId\": \"com.microsoft.math\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.microsoft.math\",\n \"icon\": \"https://play-lh.googleusercontent.com/WXGMGESfR30mudVSYqs_pfqaKmbv48KPnDUZx1OrYmKN4t3CpgLikc9zwm_hh-wUMyNM\",\n \"developer\": {\n \"devId\": \"Microsoft Corporation\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Microsoft%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Math that’s easy, fun, and accessible! Math Solver is an app from Microsoft where every feature is 100% free (like step-by-step instructions) for math learners of all ages and abilities. That means whether you’re practicing simple arithmetic or learning advanced algebra and calculus, we’ll guide you to the answer instantly. All for free, all with no ads, all because learning math is more fun that way!



HOW IT WORKS:

Use your camera to scan the problem, write it out on our whiteboard, or enter it in our calculator. Whatever you choose, Math Solver will help you solve it instantly with a detailed step-by-step explanation, interactive graphs, or similar problems from the web. And when you’re ready for more practice, there’s also daily quizzes, video lectures, and articles to explore.



WHAT YOU CAN DO:

● Scan printed or handwritten math

● Write a math equation on screen like you would on paper

● Type and edit using advanced math calculator

● Get interactive step-by-step explanations

● Access and leverage our graphing calculator

● Import images with math equations from your mobile device

● Learn more with similar problems and video lectures

● Scan and plot x-y data tables for linear/non-linear functions

● Learn in your language – we support Chinese, French, German, Hindi, Italian, Japanese, Portuguese, Russian, Spanish, and more

WHAT WE CAN SOLVE:

● Elementary: arithmetic, real, complex numbers, LCM, GCD, factors, and percentages

● Pre-Algebra: radicals and exponents, fractions, matrices, determinants

● Algebra: quadratic equations, system of equations, inequalities, rational expressions, linear, quadratic and exponential graphs

● Basic Calculus: summations, limits, derivatives, integrals

● Statistics: mean, median, mode, standard deviation, permutations, combinations

Learn more about Microsoft Math Solver on our website: https://math.microsoft.com/ Contact us at mathsupport@microsoft.com or @microsoftmath on social. Looking forward to your feedback!\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6674547,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.microsoft.math\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.microsoft.math/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.microsoft.math/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.microsoft.math/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.microsoft.math/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Chegg Study - Homework Helper\",\n \"appId\": \"com.chegg\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.chegg\",\n \"icon\": \"https://play-lh.googleusercontent.com/MRFoeH2ytWajpVulg3b6mxt-2OiyrGkhV1Kht-R3Ejlbtl4TY8aCItZS0p5z8ivGHkhH\",\n \"developer\": {\n \"devId\": \"Chegg, Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Chegg%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get ready for exam season with the Chegg Study® app.
Used by millions of students, the Chegg Study app is the homework helper which offers school help and personalized support for each of your courses—from homework to exam prep, study your courses inside-out.

Tap into our huge library of millions of fully explained, step-by-step solutions, and flashcards for subjects including Math, English, Physics, Engineering, Chemistry, and more.
Get school help for 80 subjects and hundreds of courses and flashcards. The Chegg Study app is the homework helper that has you covered for your toughest concepts, classes, and assignments, for school.

Get 24/7 study help and expert Q&A responses. Snap or scan a pic of any homework question and submit it with our question scanner to our Chegg experts. You will get detailed solved answers in as little as 30 minutes.*

Get unstuck and be your own problem solver, understand tough concepts with detailed explanations, solutions, and answers provided.
Search our library of over 60 million fully solved homework questions. See how to solve them with our question scanner feature.

Get school help and study with videos.

New! Video walkthroughs for thousands of school homework solutions.**
Use the Chegg Study app, as a problem or math solver for algebra!
Or to help you prepare for exams and SATs.

Create and study your own flashcard decks to help with homework and coursework, discover over 500+ million flashcards and flashcard sets, already in our course library for Math, Business, Accounting, Chemistry, Physics, and Calculus.
The fine print:

Your Chegg Study subscription will be charged to your credit card through your iTunes account. Subscription automatically renews unless auto-renew is turned off at least 24 hours prior to the end of the current subscription period. Your account will be charged for renewal within the 24 hours prior to the end of your current subscription period. You can manage your subscription and turn off auto-renewal by going to your Account Settings after purchase.

For bug reports and general feedback, email cheggstudy.appsupport@chegg.com or tweet @Chegg #iOSapp.

Privacy Policy: http://www.chegg.com/privacypolicy/

Terms of use: http://www.chegg.com/termsofuse/

*Experts’ response time for answers and solutions varies by question and subject. Average response time is 46 minutes.

**Available for select problems only.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0587945,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.chegg\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.chegg/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.chegg/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.chegg/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.chegg/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"LeafSnap Plant Identification\",\n \"appId\": \"plant.identification.snap\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/plant.identification.snap\",\n \"icon\": \"https://play-lh.googleusercontent.com/3cfgqx9PnwwyuqL4-peo9A7tWu7GxbQZfbI8v2FaWRPZsuWY8yqZtW5lIff2uY8nUGk\",\n \"developer\": {\n \"devId\": \"Appixi\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Appixi\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"When you discover a beautiful wildflower or unusual-looking shrub, you struggle to discern its genus. Instead of wasting time trawling through websites or asking your gardener friends, why not simply take a snap and have an app do the work for you?
Leafsnap can currently recognize 90% of all known species of plants and trees, covering most of the species you will encounter in every country on Earth.
Features:
- Free and unlimited snap
- Instantly Identify thousands of plants, flowers, fruits, and trees
- Learn more about plants, including beautiful pictures from around the world
- Quickly identify plants, flowers, trees, and more.
- Smart Plant Finder
- Instant access to a huge Plant Database that constantly learns and adds information on new plant species.
- Keep track of all the plants in your collection
- Reminders for various plant cares (water, fertilizer, rotate, prune, repot, mist, harvest, or custom reminder)
- Plant journal/diary with photos, monitor plants growth
- Track your today’s and upcoming tasks.
- Stay on top of your plant needs with a Care calendar

Download Leafsnap and enjoy identifying flowers, trees, fruits, and plants on the go!

Terms of Use: https://appixi.net/terms-of-use/
Privacy Policy: https://appixi.net/privacy-policy/

About Us
https://plantidentifier.info/
https://appixi.net/
https://leafsnap.app/\",\n \"scoreText\": \"3.1\",\n \"score\": 3.0633116,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=plant.identification.snap\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/plant.identification.snap/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/plant.identification.snap/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/plant.identification.snap/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/plant.identification.snap/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Clever: Brain Training\",\n \"appId\": \"com.idamusic.lines\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.idamusic.lines\",\n \"icon\": \"https://play-lh.googleusercontent.com/7yQ5GM4bstaaHbLRgjOx6xBGzHyrvVvSu7jGvN-gyELmDQY2GVgb2IaPl3VucKheFxM\",\n \"developer\": {\n \"devId\": \"1ACTION GMBH\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/1ACTION%20GMBH\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Lines is a brain training adventure game designed improve your memory skills. It is great way training by playing entertaining mind games.

Privacy Policy: http://drumpadapps.com/privacy-policy
Terms of Use: http://drumpadapps.com/terms-of-use\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5288463,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.idamusic.lines\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.idamusic.lines/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.idamusic.lines/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.idamusic.lines/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.idamusic.lines/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"MathMaster\",\n \"appId\": \"com.appslux.math\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.appslux.math\",\n \"icon\": \"https://play-lh.googleusercontent.com/PuWvqa26CrI8y04eaES9hIWcwX-PioMQZGHsv9nci6AqnV8eE0i8sC6kS8l6YJA5cg\",\n \"developer\": {\n \"devId\": \"Appslux Media Limited\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Appslux%20Media%20Limited\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"MathMaster helps to do the math for you. Just use your camera, snap a picture of a math problem or load an image, and get the right answer on your screen. If you need to get a better understanding of how to solve a problem - just check a step-by-step solution.


The app helps and teaches you how to do your maths homework fast and correctly. All you have to do is to take a photo of the math problem or fill the equation in and press the Enter button.


MathMaster will be your mathematical lifesaver - prepare better for tests, finish your homework faster, and make getting high grades easier. MathMaster also fits for you if you are not strong enough in math solving or need some extra help with it sometimes.


MathMaster covers all levels of math:

• Basic Math/Pre-Algebra: arithmetic, integers, fractions, decimal numbers, powers, roots, factors

• Algebra: linear equations/inequalities, quadratic equations, systems of equations, logarithms, functions, matrices, graphing, polynomials

• Trigonometry/Precalculus: identities, sequences and series, logarithmic functions

• Calculus: limits, derivatives, integrals

• Statistics: combinations, factorials


Printed and Handwritten math problem

MathMaster recognizes both handwritten problems as well as printed ones. Just snap a problem or upload one from your photo gallery.


Step-by-step solutions

MathMaster provides both straight answers and the corresponding step-by-step solutions.

Level up your learning by understanding “how” and “why” math problems are solved, or remember forgotten terms and concepts. Solve math problems instantly across a wide range of topics, ranging from Arithmetic to Calculus.

Math is hard - but with MathMaster, it's never been easier.


Terms of Use: https://p.appslux.me/com.appslux.math.terms

Privacy Policy: https://p.appslux.me/com.appslux.math\",\n \"scoreText\": \"3.9\",\n \"score\": 3.90099,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.appslux.math\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.appslux.math/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.appslux.math/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.appslux.math/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.appslux.math/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"EWA: Learn English & Spanish\",\n \"appId\": \"com.ewa.ewaapp\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.ewa.ewaapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/XwZ7RwEXZQQCAhealgauq-jexSHempsB1cb0KrJ4q-9TmffvBDiNzd4IPP0WVwtCzg\",\n \"developer\": {\n \"devId\": \"Lithium Lab Pte Ltd\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Lithium%20Lab%20Pte%20Ltd\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Do you want to learn English with popular movies and TV shows? Or learn Spanish by reading books with bilingual translation and adapted audiobooks?
Improve your language skills while having fun with EWA’s unique language learning methodology featuring:
● bite-sized lessons adapted for every level,
● 100% binge-worthy content,
● bilingual books with audio,
● interactive games and features,
● progress tracking, spaced repetition and more!

Take your language learning to the next level. EWA’s is available in 35 languages and counting, EWA’s empowered over 60 million people worldwide to learn English, Spanish, French, or Italian. Explore what makes EWA a top-reviewed language learning app.

👩\\u200d🏫 Master Speaking with Movies/TV Shows

Want to learn English with your favorite movie hero or chat Spanish to your most hated TV series villain?

EWA uses snippets from your favorite shows and movies to teach you new words and phrases in action to improve your speaking skills.

Regardless of your level, you will quickly gain the confidence you need to start speaking with content that’s fun and unforgettable.

Choose the topic and difficulty that best fits your goals and dive into one of our courses for levels ranging:

● Rookie
● Skilled
● Advanced
● Travel
● Business
● Grammar etc.

**We’re constantly expanding our library of courses to deliver you unique language learning options. Stay tuned for updates!**

📚 Improve Your Reading and Pronunciation with over 1000 Books

Explore our extensive library of 1000+ books and audiobooks in English, French, German, Italian, and Spanish! Expand & boost your vocabulary, master complex grammar and perfect your pronunciation. All while immersing yourself in the cultures whose language you want to learn.

Here’s how it works:

● Pick your difficulty (Rookie to Advanced)
● Choose a genre you love
● Wow - You’re reading your first book in a new language!
● Encountered a new word? With just one tap on the word EWA displays its translation. One more tap and you can add it to your “To-Learn” list.

Enjoy a wide selection of audiobooks that will help you start sounding like a native in no time! With EWA you’ll never look at books the same way. We’ve picked only the most exciting, adventurous, spicy, hilarious titles - adapted for your level.

🏆 Solidify Your Knowledge and Compete in Our Leaderboard

If you have trouble remembering what you just learned - EWA is the perfect app for you. With EWA you can be certain that what you learn sticks! EWA also keeps you motivated by allowing you to track your progress and rank against language learners.

Challenge yourself with over 40,000 flashcards and amazing language games such as Wordcraft and Memento. Or challenge other learners to a language duel!

And here’s the best part:

EWA makes time work for you by testing your knowledge of new words right when they’re about to slip from memory.

The more you learn a new language, the better you get, and the higher you climb up EWA’s Leaderboard.

See how you stack up against other learners of English, Spanish, French, German, or Italian. Motivate yourself to stay on track with your learning, and you’ll soon be hitting those top spots!


**PLEASE READ:**

EWA features a selection of free content, but an EWA subscription is required in order to access all courses and learning features. Please note: available courses may vary depending on your device language. Once purchased, subscriptions will automatically renew unless canceled before the end of the current payment period. Subscriptions can be managed or canceled in your Google Play Store account.

If you have any concerns, recommendations or complaints just drop us a line at support@appewa.com and we will work towards making EWA better!

Privacy Policy: http://appewa.com/privacy_policy
Terms of Use: http://appewa.com/pricing-terms\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7467947,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ewa.ewaapp\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.ewa.ewaapp/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.ewa.ewaapp/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.ewa.ewaapp/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.ewa.ewaapp/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Translate Photo, Text & Voice\",\n \"appId\": \"com.voicetranslator.cameratranslation.object.translate.all.language.translatorapp\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.voicetranslator.cameratranslation.object.translate.all.language.translatorapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/vKocsQ8f3V05TW3t3Ei13slKhq0CwG9m8MD1i46x7CDt-YDUOBPrjYsRf6FQnyGCdW4\",\n \"developer\": {\n \"devId\": \"Visiorob Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Visiorob%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Capture and Translate Text from Photos in just one click!

The real-time OCR: Photo Translator app 2023 to translate text from photos🖼️, files, or 📄documents, capture the image🤳🏻 and get free translation in 125+ languages—best offline Translation app to translate text from English to Spanish. Speak and Translate voice to overcome language barriers and speed up conversation with this free Voice Translator app for Travelers.

Main Features of All Language Translator Free: Translate Text - Photo Translator App:
Free OCR: Translate Photo app: Capture images and translate text.
On-screen Text Translator app: Type and translate text from English to French.
Voice Translator for Spanish: Speak and translate voice fast.
Offline Language Translator app: Get ✨100% free, fast, and accurate translation without having internet.

OCR: Photo Translator app for Students:
Need to translate text from printed material or images? Our real-time translate photo app is here to assist you. Simply snap a photo and get an instant on-screen translation.

Voice to Text Translator App for Travelers:
Experience the freedom to communicate effortlessly during your journeys. Try the best Voice Translator app to speak in your native language, and it instantly translates your words into the language of your choice.

Best Multilingual Translator App:
Running a business globally? Try our comprehensive language translator app for business to enhance your international operations by bridging linguistic gaps.

Need to translate text from a Japanese menu or a sign? Our translate Japanese to English camera app feature lets you do just that by using your smartphone's camera to instantly translate text from images.

This All Language Translate Photo, Text, and Voice Translator for Android can support 125+ languages:\\u202f🌐
Albanian, Afrikaans, Arabic, Amharic, Azerbaijani, Armenian, Basque, Chinese, Hindi, Japanese, Italian, Portuguese, French, Hindi, German, Polish, and many more.

Experience the convenience of a real-time language translation and OCR: Photo Translator app for Android that provides instant results, allowing you to communicate seamlessly with people worldwide.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.72093,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.voicetranslator.cameratranslation.object.translate.all.language.translatorapp\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.voicetranslator.cameratranslation.object.translate.all.language.translatorapp/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.voicetranslator.cameratranslation.object.translate.all.language.translatorapp/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.voicetranslator.cameratranslation.object.translate.all.language.translatorapp/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.voicetranslator.cameratranslation.object.translate.all.language.translatorapp/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Graphing calculator plus 84 83\",\n \"appId\": \"scientific.graphing.calculator.t84.t36.t83\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/scientific.graphing.calculator.t84.t36.t83\",\n \"icon\": \"https://play-lh.googleusercontent.com/npwvxavSnjryvklkzYg6eTBRu0y_7G-LHujM_TaENuhoxxu7PTz5cfa3_Pji6grf2r8P\",\n \"developer\": {\n \"devId\": \"lethinhien\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/lethinhien\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The full-feature scientific graphing calculator 84 plus provides many useful features for students:
- Graphing calculator 83 plus supports graphing, draw graph of many functions such as parametric, polar and functions
- Scientific graphing calculator 84 plus working as well as calculator t1 83 by supporting equation solver, newton root finding, fraction calculation.
- Graphncalc calculator 89 plus include integral calculator, symbolic derivative
- Statistics and regression: one variable statistics and two variables statistic, linear regression, quadratic, quartic, ...

This graphing calculator 84 plus emulates as an emulator 84 plus, students can use as an instruments tools for homework.
The robust equation solver can solve all of equations such as 83 x ^ 4 - 84 x ^ 3 + 89 x = 83
Finally, grafischer taschenrechner 84 includes full function documentation and examples.\",\n \"scoreText\": \"4.6\",\n \"score\": 4.601695,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=scientific.graphing.calculator.t84.t36.t83\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/scientific.graphing.calculator.t84.t36.t83/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/scientific.graphing.calculator.t84.t36.t83/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/scientific.graphing.calculator.t84.t36.t83/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/scientific.graphing.calculator.t84.t36.t83/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Coursera: Learn career skills\",\n \"appId\": \"org.coursera.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/org.coursera.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/qq5__wITsoCx2kUK8TqVW2-8UDRuxET9kCzPzAPHad8umXiHRF2N0tZKuLezd0tiBQg\",\n \"developer\": {\n \"devId\": \"Coursera, Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Coursera%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Build job-relevant, in-demand skills by learning with experts from world-class companies and universities.

WITH COURSERA YOU CAN:
• Learn job-relevant skills and industry-standard tools through hands-on projects
• Build knowledge for your career across a wide range of industry-tailored courses
• Get job-ready for an in-demand role through Professional Certificates
• Master a skill in a specific industry field with Specializations
• Advance your career with a bachelor’s or master’s degree

SO THAT YOU’LL BE ABLE TO:
• Grow your career with confidence
• Develop skills and credentials to stand out
• Enjoy flexibility and control over your career

WITH THE COURSERA APP YOU GET:
• Flexible schedules and on-demand courses
• Downloadable videos for offline viewing
• Mobile-friendly courses, so you can learn effectively on any device
• Saved coursework, quizzes and projects across your desktop and mobile devices
• Video subtitles for a variety of languages, including: Arabic, French, German, Indonesian, Japanese, Korean, Portuguese, Russian, Chinese, and Spanish

POPULAR COURSES:
• Computer Science: Programming, Mobile and Web Development, Python
• Data Science: Machine Learning, Probability and Statistics, Data Analysis
• Business: Finance, Marketing, Entrepreneurship, Business Strategy, E-commerce, UX, Design
• Information Technology: Cloud Computing, Support and Operations, Data Management, Security

PROFESSIONAL CERTIFICATE PROGRAMS:
• Front end developer, back-end developer, DevOps engineer
• Data analyst, data scientist, data engineer, data warehouse developer
• Project manager, UX designer, digital marketer, social media marketer, marketing analyst
• IT support specialist, application developer, Cybersecurity analyst
• Sales development representative, sales operations specialist bookkeeper, sales representative

DEGREE CATEGORIES:
• MBA and Business Degrees, Management Degrees
• Computer Science and Engineering, Data Science, and Data Analytics
• Social Science, Public Health

Get to Know Us: http://www.coursera.org
Privacy Policy: https://www.coursera.org/about/privacy
Terms of Service: https://www.coursera.org/about/terms\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7957153,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.coursera.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/org.coursera.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/org.coursera.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/org.coursera.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/org.coursera.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"iNaturalist\",\n \"appId\": \"org.inaturalist.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/org.inaturalist.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/5MCRidgLUCvNTmRHN4OIiljcQqYr22VqmSAov7Zg9wAPkx6cGA66LRYHQlA9LQ33HdY\",\n \"developer\": {\n \"devId\": \"iNaturalist\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/iNaturalist\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"One of the world's most popular nature apps, iNaturalist helps you identify the plants and animals around you. Get connected with a community of over 400,000 scientists and naturalists who can help you learn more about nature! What's more, by recording and sharing your observations, you'll create research quality data for scientists working to better understand and protect nature.

KEY FEATURES
• Discover species new to you both near and far
• Record your own observations and share them with the community
• Receive suggestions and crowdsourced identifications of what you've seen
• Discuss and help others identify what they've seen
• Follow projects comprised of smaller communities and fellow citizen scientists passionate about a particular place and/or species

For more info, check out http://www.inaturalist.org\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9302325,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.inaturalist.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/org.inaturalist.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/org.inaturalist.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/org.inaturalist.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/org.inaturalist.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Spanish English Translator\",\n \"appId\": \"spanish.espanol.traductor.translator\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/spanish.espanol.traductor.translator\",\n \"icon\": \"https://play-lh.googleusercontent.com/N-NS2TG770WAqBjf6eEjhdw-8sMS1d6zgc-LGex54aqDjS9P7rwdeG31P-NGIN-z-9QI\",\n \"developer\": {\n \"devId\": \"San Seeen Developers\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/San%20Seeen%20Developers\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With this translator, you can easily translate words and text from Spanish to English and from English to Spanish.
Words and even sentences may be translated in a fraction of a second.

With the all-new English Spanish Dictionary and English Spanish Translation, learning Spanish or English has never been easier. This Spanish English Translator application is likely to make conversation a lot easier and entertaining with features like Spanish dictionary, word scanner, Spanish verbs, phrases and more..

We have a vast data base that allows you to search for the meaning of any English or Spanish term.

To facilitate communication, translate from Spanish to English and from English to Spanish.

To translate text from a book or a written note, simply take a picture with this app and the application will translate the material to Spanish.
It is no longer necessary to type the complete statement.

The Spanish Words Word Game is a fun way to learn Spanish.

Dictionary from English to Spanish and translator from Spanish to English Learn English as well as Spanish.


App Features :

- Translate from clipboard
- Simple and user-friendly interface
- Translation of words and phrases.
- Voice input
- Favorites
- History

Your comments are extremely valuable to us. If you enjoy this app, please share it with your family and friends.\",\n \"scoreText\": \"3.7\",\n \"score\": 3.71,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=spanish.espanol.traductor.translator\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/spanish.espanol.traductor.translator/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/spanish.espanol.traductor.translator/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/spanish.espanol.traductor.translator/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/spanish.espanol.traductor.translator/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Bookshelf\",\n \"appId\": \"com.vitalsource.bookshelf\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.vitalsource.bookshelf\",\n \"icon\": \"https://play-lh.googleusercontent.com/SlNWW77MnTXiLLOUVsjx25bOocB8vNO5BRsh9YN_K7w3ENN8RACwXW1KEJ7pnS27XOMp\",\n \"developer\": {\n \"devId\": \"Vital Source Technologies\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Vital%20Source%20Technologies\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With Bookshelf, you can enjoy a digital-first, comprehensive study experience from the convenience of your Android phone or tablet. Access all of your VitalSource textbooks and study anytime, anywhere.

Bookshelf Features:

• Download books to your Android device for 100% offline reading.
• Customize highlighters and add notes for a rich study experience.
• Create flashcards with text and images to learn concepts faster.
• Personalize font, font size, and background colors to make reading easier.
• Listen to your books and learn on the go with Read Aloud.
• Sync your current reading position and all your work across devices so you can easily pick up where you left off.
• Built with accessibility in mind.

Requirements:
• VitalSource Bookshelf account
• Access to one or more VitalSource textbooks.
• Android 5.0+\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3381996,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.vitalsource.bookshelf\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.vitalsource.bookshelf/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.vitalsource.bookshelf/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.vitalsource.bookshelf/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.vitalsource.bookshelf/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Translate Now to All Languages\",\n \"appId\": \"com.english.translate.to.all.languages.free.audio.translation\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.english.translate.to.all.languages.free.audio.translation\",\n \"icon\": \"https://play-lh.googleusercontent.com/YF6-wo6Hbg1-eKraosiVT3Gdn5MMwb5PsCfeA25v0GvE8hDoSlQDppcr8EXHNOH_mg\",\n \"developer\": {\n \"devId\": \"Appaver Studio\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Appaver%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Translate Now is a Free Personal Translation Application, Which Supports More Than 100 Languages and Can Translate Text, Voice and Image. Translation App Brings the Best Features in Travel, Tourism, and Education With Voice, Text and Document Into 100 Free Languages. Globally Supported Language Translates All Knowledge With Learning to Speak and Translate Now Varieties of Languages.

English Translation, is Viadly Used in the World With Multiple Langauges Like English to Español Traducción Del Idioma, Español to Portuguesa Tradução Da Língua Etc.

Features of Fast and Easy Language Translation App:
• Speak in Your Native Language and Get Its Translation
• Translate Now to All Languages With an Easy Speak Translator Voice or Image
• Simple Voice Translator App With a User-friendly Interface.
• Snap an Image and Get a Translation Instantly
• Translator Documents, Sentences, Signs and Text Into the Desired Language Instantly.
• Easy Speak Translation Chat With Friends Multinational.
• Translate All Language With Voice, Text or Picture in a Real-time Online Translator.
• Auto-extracts Text From Sign and Translate It to Any Language With Ocr Camera Text Translation.
• Most Precise English Dictionary Gives You the Significance of Any Word With Word Pronouncing Feature.
• Translate All Language App Provides a List of Languages With Its Learning Translation.
• Interpreter Easily Copy, Paste Delete the Resulting Text With One Click.
• Translation All on Full Screen.
• Share the Results of the Language Translation With Your Friends.

Multiple Features of This Translate Now to All Languages App Help You to Improve Your Learning Skills and Translation. The Voice Translation App Provides an English Spanish Dictionary Feature, With the Meaning of Words and Word Pronunciation. All Languages Translation App Provides a List of Famous Languages, Which is Very Advantageous for Students and Translation Learners Worldwide.

The Fast and Easy Language Translation App to Convert Text, Phrases, or Images to Any Language. The Voice Translator Now All is Built With Multiple Learning Features. In Addition to All Language Translations With Voice and Camera Translator. It Gives You Voice Translation & Ocr Text Translator Features, Scans Text and Translates It to Your Required Language.

Speak Translate is an Effective Feature of This App. Easy Speak Translation With Voice, Text and Image Into Your Desired Language. Just click on the Voice Button and Speak It Once Then
Auto Translates Them Into a Second Language.

Easy Speak Language Translator Supported Languages:
Afrikaans, Turkish, Arabic, Traditional Chinese, Bengali, Thai, Bosnian, Telugu, Bulgarian, Tamil, Cantonese, Swedish, Catalan, Swahili, Translate Spanish, Slovenian, Croatian, Slovak, Czech, Simplified Chinese, Danish, Samoan, Dutch, Translate Russian, English Translation, Romanian, Estonian, Portuguese, Polish, Filipino, Persian Translation, Finnish, Norwegian, French Translation, Maltese, German Translation, Malay, Greek, Malagasy, Hebrew, Lithuanian, Hindi, Latvian, Hungarian, Korean Translation, Icelandic, Japanese, Indonesian, Italian Etc.

Instant Translation Features:
• Spanish English, Image Translation.
• Translate, Japanese English.
• Translate English to Arabic.
• English to Korean and English to Hindi.
• Easly Translates Now Polish to English.
• English to Urdu, Language Translation
• English Dictionary With Words Pronunciation.
• Translate English German.
• Easy to Translate Russian English.
• Chinese English Translation.
• Spanish English Dictionary in All Languages.
• English Portuguese Easy Translator Speech Text.
• Translates English to Tamil Typing.
• English to Telugu Translation.

Hopefully!
Translate Now to All Languages Will Be Beneficial for You. Thank You for Using It!\",\n \"scoreText\": \"3.7\",\n \"score\": 3.6818182,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.english.translate.to.all.languages.free.audio.translation\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.english.translate.to.all.languages.free.audio.translation/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.english.translate.to.all.languages.free.audio.translation/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.english.translate.to.all.languages.free.audio.translation/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.english.translate.to.all.languages.free.audio.translation/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Miga Town\",\n \"appId\": \"com.miga.mytown\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mytown\",\n \"icon\": \"https://play-lh.googleusercontent.com/zgssozTt2dKao8UC851CKIxELlTeuvvBTlFUK0oJPE7wLCdFEqgFqNS03lDhyVJoPg\",\n \"developer\": {\n \"devId\": \"XiHe Digital (GuangZhou) Technology Co., Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/XiHe%20Digital%20(GuangZhou)%20Technology%20Co.%2C%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to Miga Town

You can define the dress-up, hairstyle and magical makeup in the game depending on your preferences. Show your unique charm and write down your own story!

No rules and no scores in the game!

Creation
Why not try out all your new interests and ideas in the Miga My Town? You can change your wears or dye your hair in any color as you like. You can also create a friend and go with him/her to explore unknown places and look for hidden treasures. you can choose from tens of billions of changes and combine these at your own will.

Adventure & Discovery
We’ve designed 6 main scenes and 36 initial roles. You can do your hair in a barbershop or enjoy a SPA in a salon equipped with advanced technologies. If you feel tired, you can drive your lovely car to a beach for relaxing yourself or satisfying your stomach.

Features
Six scenes: Beach Food Street, Clothing Store, Apartment, Hair salon, SPA Salon and Car Yard

Beach Food Street: You can play beach volleyball or explore for mysterious treasures in the island with your friends. Don’t lose yourself in delicacies or eat too much, or your stomach will complain.

Clothing Store: You can buy whatever you like and try them on.

Apartment: You can go back home at any time, or invite your grandparents to have dinner together or have a party

Hair Salon: Take your friends to make a desired hairstyle, and the customized color scheme will make you become more attractive.

SPA Salon: Go with your friend(s) for a facial SPA and have a good rest. More customized make-ups are available here.

Car Yard: Let your lovely car have a shower after a journey! Diversified game-play is up to you.

--Give full play to children’s creativity
--Tens of billions of customized modes
--No third-party advertising
--No time limit or score ranking list

contact us:xihe@xihegame.com\",\n \"scoreText\": \"3.4\",\n \"score\": 3.417559,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.miga.mytown\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mytown/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mytown/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mytown/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mytown/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Buddy.ai: English for Kids\",\n \"appId\": \"ai.mybuddy.talkingflashcards_new\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/ai.mybuddy.talkingflashcards_new\",\n \"icon\": \"https://play-lh.googleusercontent.com/h6RRPMXSxWciolO34naBtKMBGo4_E55w_jFEwx1N6MP8o1p_75u36GLyYleiJo6-6Q\",\n \"developer\": {\n \"devId\": \"AI Buddy Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/AI%20Buddy%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Looking for an effective English learning app for kids? Meet Buddy, the voice-based virtual English tutor for kids ages 4-10. Buddy’s cutting-edge speech technology teaches children to speak English using fun lessons, learning games and cartoons, and other educational activities.

Buddy provides 1:1 English-speaking practice just like a live tutor. With Buddy, your child will:
• Develop three essential language skills: vocabulary retention, English pronunciation, and listening comprehension
• Learn to say over 1,500 English words and phrases in everyday topics like Numbers, School, Technology, etc.
• Improve pronunciation
• Practice real-life conversations
• Break the language barrier and start speaking English with confidence

A Fun, Effective Way for Kids to Learn English as a Second Language


If you speak Spanish, Portuguese, Russian, Turkish, Polish, German, French, or Arabic at home, Buddy can help your kids speak English: first words, phonics, numbers, and other essential vocabulary and phrases.

From first words to English fluency — one learning game at a time!
Buddy’s lessons look and feel like fun learning games for kids, but they’re part of a curriculum carefully designed by educational experts.

Buddy is the world's first voice-based virtual English tutor and one of the leading English learning apps for kids worldwide.
• Over a million children learn to speak English with Buddy every month
• 400,000 5-star user reviews
• TOP 10 App in Kids and Education charts in major countries throughout Latin America and Europe
• Major awards and nominations including GESA London, EnlightEd Madrid, Startup Worldcup San Francisco

“Buddy.ai: English for Kids” is an affordable English learning app for kids. You’ll get a month of learning for the cost of one session with a live tutor.

Start speaking English with Buddy today!


• Children learn 60 English words and phrases every week.
• Parents receive weekly progress reports.

Buddy works by combining:
1. Proprietary speech, virtual human, and adaptive learning technology
2. Latest learning techniques
3. Engaging game design

Our English learning app’s lessons interweave challenging language acquisition exercises with fun, creative learning games to keep kids playing (and learning English). Children 4-10 years old will love Buddy's word games and cartoons!

Our virtual tutor was developed by an expert team of educators and engineers with Ph.Ds in Education Science, Psychology of Learning, and Computer Science.

And don't forget, Buddy speaks Spanish, Portuguese, Russian, Turkish, Polish, German, French, and Arabic, so your kids won’t struggle if English isn’t their native tongue.
0(•‿–)0

CONTACTS



For more information please visit our site:
https://buddy.ai

Any questions? Email us:
support@mybuddy.ai
----------
“Buddy.ai: English for Kids” — an English learning app for kids that will boost your child’s vocabulary and speaking confidence and help them prepare for language exams.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5444446,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=ai.mybuddy.talkingflashcards_new\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/ai.mybuddy.talkingflashcards_new/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/ai.mybuddy.talkingflashcards_new/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/ai.mybuddy.talkingflashcards_new/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/ai.mybuddy.talkingflashcards_new/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Learn 33 Languages - Mondly\",\n \"appId\": \"com.atistudios.mondly.languages\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.atistudios.mondly.languages\",\n \"icon\": \"https://play-lh.googleusercontent.com/X2W_U_DhjG0hLUz_CZ2QkJhdJ5kh0MA5zAPpChNNEToEE9pFAdTUEbMJL9EZZj8kAkmg\",\n \"developer\": {\n \"devId\": \"ATi Studios\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/ATi%20Studios\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn Spanish 🇪🇸🇲🇽, English 🇬🇧, French 🇫🇷, German 🇩🇪, Portuguese 🇵🇹🇧🇷, Italian 🇮🇹, Russian 🇷🇺, American English 🇺🇸, Norwegian 🇳🇴, Danish 🇩🇰, Dutch 🇳🇱, Swedish 🇸🇪, Korean 🇰🇷, Japanese 🇯🇵, Chinese 🇨🇳, Arabic, Greek 🇬🇷, Romanian 🇷🇴, Vietnamese 🇻🇳, Indonesian 🇮🇩, Hindi 🇮🇳, Hebrew 🇮🇱, Polish 🇵🇱, Bulgarian 🇧🇬, Ukrainian 🇺🇦, Hungarian 🇭🇺, Czech 🇨🇿, Croatian 🇭🇷, Finnish 🇫🇮, Persian (Farsi), Afrikaans, Thai 🇹🇭, Turkish 🇹🇷, Bengali 🇧🇩, Catalan, Latin, Latvian 🇱🇻, Lithuanian 🇱🇹, Slovak 🇸🇰, Tagalog 🇵🇭 and Urdu 🇵🇰 for free.

Learn languages with free lessons daily with Mondly. In just minutes you’ll start memorizing core words, form sentences, learn phrases and take part in conversations. Fun language lessons improve your vocabulary, grammar and pronunciation like no other language learning app. Beginner or advanced learner, traveler or business professional with a tight schedule? The app works great and dynamically adjusts to your needs.

Explore language exercises for reading, listening, writing and speaking, enhanced with a dictionary, verb conjugator and state-of-the-art speech recognition technology - you’ll feel like having your own tutor in your pocket.

Awards and recognition:

🏆"App of the Year" by Facebook - 2017 EMEA Winner
🏆Loved by 60 million people worldwide

Internationally acclaimed by outlets like Business Insider, CNN, or Forbes, it's the first language learning app to launch VR & AR experiences for learning languages, featuring speech recognition and chatbot technologies.

Download the language learning pill today and enjoy the benefits of learning a new language for life!

The secret path to language learning
Remember the language classes in school? You started with hundreds of basic words and expressions, grammar lessons and at the end of a full semester’s language course you could barely say “Hello!” to a foreigner. Mondly’s approach is different from the average language course.

The future of language courses
The app gets you started with a basic conversation between two people. You quickly start memorizing core words, use them to build sentences and phrases, and at the end you will reconstruct the conversation with your voice. Speech Recognition and Spaced Repetition Algorithms make the app effective for learning languages.

The key features that make Mondly a great tutor for you:


Crystal-clear audio and professional voice actors
Learn pronunciation from conversations between native speakers.

State-of-the-art Speech Recognition
Mondly listens as you pronounce words and phrases. You will get positive feedback if you speak clearly and correctly.

Useful phrases for real situations
Memorizing isolated words is not the way to learn a language. Mondly teaches you vocabulary through core words and phrases. It breaks the learning process down into short lessons and puts them into themed packs.

Learn from conversations
Conversation is the main reason to take this free course. It will help you build a core vocabulary with widely-used nouns and verbs.

Verb conjugations
Learn more from this course. Tap the verbs and get the full conjugation, including the translation. It’s faster and better than a dictionary.

Advanced Statistics
The App uses intelligent reporting, so you can always follow your progress. Build your vocabulary step by step and become better.

The Leaderboard
See how your friends are doing and compete with people from all over the world to become the best learner.

Adaptive Learning
People learn differently. So we taught the app to learn from your way of learning. Mondly will become your own guide and customized teacher.

At the end of these language lessons, you will master the most useful 5000 words and phrases, getting you on the fast lane to learning a new language!\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5141263,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.atistudios.mondly.languages\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.atistudios.mondly.languages/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.atistudios.mondly.languages/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.atistudios.mondly.languages/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.atistudios.mondly.languages/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Mathpid - AI math learning\",\n \"appId\": \"com.wjthinkbig.mathpid\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.wjthinkbig.mathpid\",\n \"icon\": \"https://play-lh.googleusercontent.com/BfPCF6Y0eNamA2AbNZkH6ZB01xQMrwq1jna834bBcxf_7iTHi_XU5QnHEJIF5SkH5w\",\n \"developer\": {\n \"devId\": \"Woongjin Thinkbig Edutech labs\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Woongjin%20Thinkbig%20Edutech%20labs\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Mathpid is an AI-powered math learning app.

Whether you're looking to improve your math skills, prepare for an exam or simply enjoy math, Mathpid has got you covered!
📣 Empowering self-managed learning habits is the best advantage of Mathpid.
📣 Accessible Anytime, Anywhere on Any device!
📣 From basic to advanced levels
(counting, addition, subtraction, decimal, equation, factorization, functions, statistics and more!)

✔ Let's dive into Mathpid!
• Personalized learning class by AI technology
- Get “My class” tailored to just for your math level. No more cookie-cutter training!
- Mathpid's AI diagnostic test identifies math level with an accuracy of 95% in just 3mins!
• 1:1 customized AI tutor for 24/7
- Mathpid's AI tutor instantly makes catches your weakness so that they can adjust mistakes as you study.
- AI-analyzing progress reports are generated by learner’s performance as each class is completed.
• Math camera & handwriting usability
- Solve tricky math problems immediately with our math solver and receive similar questions for extra practice, thanks to Mathpid's advanced AI technology.
- Use our digital notepad and draw on your device with handwriting, making learning paperless!
• Step-by-step Explanations & free worksheets
- Bite sized video can help you to understand concepts of math topics.
- Unlimited & free worksheets on every math topic helping math exam or practice.
• Math games & motivational contents
- Curriculum aligned math games help you to learn & play at the same time.
- Earn badges by completing fun quests and compete with others on our leaderboard.
(Leaderboard is coming soon!)

✔ What does Mathpid teach?
From basic math to advanced levels, Mathpid covers essential math topics.
• Elementary math including topics like addition, multiplication, subtraction, division, decimals, and fractions.
• Middle level math including topics like equation, algebra, BODMAS, proportions, factorization, square roots, proportion, functions, statistics.

✔ Who needs Mathpid?
Mathpid is an invaluable solution for students, parents, and teachers.
• For students: Who need to improve math skills effectively and enjoyably.
• For parents: Who want to save time and empower their little learners to learn math independently.
• For teachers/educators: Who want an optimized and supplementary tool for math. Mathpid will soon be launching LMS features to enhance the learning experience even further!

🔸 Proven result by 1million+ users & Global awards
🏆 2023 MWC GLOMO Award Finalist (Best Mobile Innovation for Digital Life)
🏆 2023 Bett Award Finalist (Primary Digital Learning Product-Numeracy & Maths)
🏆 2023 CES Innovation Award Honoree
🏆 2022 CODiE Award Finalist (Best use of AI edtech)
🏆 2022 GESS Education Award Finalist (Best AI product / Innovation Product-digital)
🏆 2022 Mom's choice Award Honoring excellence
🏆 2022 Mobile Technology Award Winner
🏆 2021 iF Design Award Winner (User Experience)

🔸 Advised by renowned experts & Built by a leading Edtech company
• Mathpid official consultant: Prof. Minhyong Kim - University of Edinburgh 💼
- Director, International Centre for Mathematical Sciences
- Sir Edmund Whittaker Professor of Mathematical Sciences
• Over 40years of experience in education 🏢
- 39 Edtech related patents 📜
- 17 AI Education patents 📜


👉 For more information:
- Terms of Use Agreement at https://mathpid.com/policies/terms-of-service
- Privacy Policy at https://mathpid.com/policies/privacy-policy

📧 If you have any feedbacks and questions, send us an email to mathpid_help@wjtb.net
Website: www.mathpid.com\",\n \"scoreText\": \"3.4\",\n \"score\": 3.41,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.wjthinkbig.mathpid\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.wjthinkbig.mathpid/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.wjthinkbig.mathpid/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.wjthinkbig.mathpid/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.wjthinkbig.mathpid/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Pinkfong Dino World: Kids Game\",\n \"appId\": \"kr.co.smartstudy.dinoworld_android_googlemarket\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.dinoworld_android_googlemarket\",\n \"icon\": \"https://play-lh.googleusercontent.com/6-Gv_tuvAN_x_vZXwhX6nvCQUCEvrCrQIY3NhuPHImE57p5K9c1bE6Ww217_CwlZgGI\",\n \"developer\": {\n \"devId\": \"The Pinkfong Company\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/The%20Pinkfong%20Company\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Let your child dive into the world of dinosaurs with our collection of entertaining and educational dinosaur games!
From interactive experiences designed for toddlers to engaging dino puzzle games for children, our app offers a range of exciting activities while learning through play.
Spark the curiosity of young minds as they embark on dino adventures, discovering fascinating facts and engaging in educational games tailored for kids.
With a variety of dinosaur-themed mini-games, our app guarantees hours of entertainment while expanding knowledge and captivating young explorers.


25 DINOSAUR VIDEOS
- Watch Pinkfong's 25 animated videos and learn different characteristics of dinosaurs.
- Check out our popular dino videos on YouTube, including "Tyrannosaurus Rex", "I'm a Chef Today", "Dinosaurs A to Z" and much more!
- Download the videos to watch them offline anytime you like.

RUN, FEED, BRUSH, DIG! PLAY DINO GAMES
- Brush the dinosaurs' teeth, dig up dinosaur fossils, and help them run away. Kids can engage with these exciting, interactive games.
- Check out tons of educational games for kids - color the dinosaurs, match jigsaw puzzles, and play cards.
- Master all the different species of dinosaurs!

SAFE, KIDS-FRIENDLY INTERFACE
- Enjoy high-quality videos and games with kids-friendly interface.
- It's safe and easy to navigate for preschool kids ages 1 to 5.

Rawrrr! Our dinosaur friends -- Ankylosaurus, Brachiosaurus, Pachycephalosaurus, Pteranodon, and many more -- are waiting for you to join the journey!


-
• Pinkfong Plus Official Website: https://fong.kr/pinkfongplus/

• About Pinkfong Plus Subscription:
- Join Pinkfong Plus membership and get unlimited access to Pinkfong's best apps!
- Watch videos and play games ad-free.
- Share membership with up to 6 family members.
- Sync devices such as smartphones and tablets using one account.

• Apps Available under Pinkfong Plus:
- Baby Shark World for Kids, Pinkfong Baby Shark, Baby Shark ABC Phonics, Baby Shark Car Town, Pinkfong Dino World, Pinkfong 123 Numbers, Pinkfong Tracing World, Pinkfong Shapes & Colors, Baby Shark Jigsaw Puzzle Fun, Pinkfong Numbers Zoo, Pinkfong Baby Shark Phone, Pinkfong Baby Shark Storybook, Baby Shark Coloring Book, Pinkfong My Body, Pinkfong Police Heroes Game, Pinkfong Guess the Animal, Baby Shark Pizza Game, Baby Shark Makeover Game, Pinkfong Word Power, Pinkfong Mother Goose, Pinkfong Learn Korean, Pinkfong Super Phonics, Pinkfong Fun Times Tables, Pinkfong Baby Bedtime Songs, Pinkfong Birthday Party + more!

More available apps will be updated soon.

Click the "More Apps" button on the home screen or visit Google Play to download the apps!

-

Privacy Policy:
https://pid.pinkfong.com/terms?type=privacy-policy

Terms of Use of Pinkfong Integrated Services:
https://pid.pinkfong.com/terms?type=terms-and-conditions

Terms of Use of Pinkfong Interactive App:
https://pid.pinkfong.com/terms?type=interactive-terms-and-conditions\",\n \"scoreText\": \"3.6\",\n \"score\": 3.62,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=kr.co.smartstudy.dinoworld_android_googlemarket\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.dinoworld_android_googlemarket/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.dinoworld_android_googlemarket/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.dinoworld_android_googlemarket/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.dinoworld_android_googlemarket/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"آپ آسان پرداخت\",\n \"appId\": \"com.sibche.aspardproject.app.ha\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.sibche.aspardproject.app.ha\",\n \"icon\": \"https://play-lh.googleusercontent.com/C-dZPtS2LrHWiNS472SpZxyRc8J28zFTZIXky2EO6Br9JuFEW5Rz6td44Vl1EqC5qA\",\n \"developer\": {\n \"devId\": \"Moshavere & Ravanshenasi\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Moshavere%20%26%20Ravanshenasi\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"🔸به نام خداوند بخشنده مهربان 🔸
برنامه ای که میبینی اسمش آپ جدید هست که میتونی کاربردهاشو بشناسی 🥰
شاید شده به اپلیکیشن آپ احتیاج داشته باشی پس چرا معطلی همینجاست 💫
اگه میخوای در وقتت صرفه جویی کنی آپ آسان پرداخت پیشنهاد من به تو هستش😀
افراد میتونن برای صرفه جویی از آپ کارت به کارت استفاده کنند تا به زندگیشون برسن 🤩
الان عصر ارتباطاته و خیلی راحت میشه آسان پرداخت رو انجام داد 💯
اگه میخوای آسان پرداخت آپ داشته باشی به روز باش 🥳
بچه ها بهش میگن آسان پرداخت پرشین چون خیلی دوستش دارن 😉
من خودم از برنامه اپ اسان پرداخت استفاده میکنم و خیلی ازش راضی ام 😍
انگلیسش هم میشه asan pardakht که گفتم بهت یاد بدم 😎\",\n \"scoreText\": \"4.0\",\n \"score\": 4.01,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.sibche.aspardproject.app.ha\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.sibche.aspardproject.app.ha/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.sibche.aspardproject.app.ha/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.sibche.aspardproject.app.ha/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.sibche.aspardproject.app.ha/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Simply Guitar - Learn Guitar\",\n \"appId\": \"com.joytunes.simplyguitar\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.joytunes.simplyguitar\",\n \"icon\": \"https://play-lh.googleusercontent.com/KDTmzVLjTbfY7zJeCNoNyHPqbbmcXVzYHvzU-_hpydmp1msgSg_JRMNHOsUYRu2iCUg\",\n \"developer\": {\n \"devId\": \"Simply (formerly JoyTunes)\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Simply%20(formerly%20JoyTunes)\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn to play the guitar at your own pace with step-by-step tutorials, made by world-class music teachers, and receive feedback from the app while you learn to play your favorite songs!

No experience needed | For all ages | Works with any guitar

--- Make your musical dreams come true ---

• Play chords & songs straight away!
• Learn step by step with high-quality video lessons
• Receive feedback from the app and know when you are playing correctly or need guidance
• Learn all the necessary techniques to play the songs you love:
- Guitar fundamentals
- Read and play tabs
- Playing chords
- Chord switching
- Strumming techniques
- Invaluable tips and tricks for playing correctly
- Technique boosting exercises
• Track your progress
• Learn to tune your guitar (professional tuner included!)
• Receive fast support from our musicians
• Have fun and quickly improve your skills


--- How Simply Guitar works ---

• Place your device in front of you and play; the app will immediately recognize what you are playing
• Get feedback on your playing to quickly learn and improve your guitar skills
• Discover the magic of music with fun songs and complete lessons to start sounding like a pro
• New songs and lessons are added regularly.

--- Good to know ---

Simply Guitar is developed by Simply (formerly JoyTunes), creators of award-winning apps Simply Piano and Piano Maestro. Simply are experts in creating educational and fun music apps for learning to play quickly and easily. Recommended and used by tens of thousands of music teachers worldwide with over 1 million songs learned every week.

Awards & Recognition:
- SF Music Tech Summit Startup Innovators Challenge Winner
- Best Tool for Beginners, NAMM
- EMI Innovation Challenge Award

--- Contact ---

Have questions, feedback or suggestions? Reach out to us through the app under Menu > Have a Question.

Enjoy playing!

Privacy policy: http://www.hellosimply.com/legal/privacy
Terms of use: http://www.hellosimply.com/legal/terms\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4711537,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.joytunes.simplyguitar\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.joytunes.simplyguitar/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.joytunes.simplyguitar/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.joytunes.simplyguitar/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.joytunes.simplyguitar/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"لرنیت | آموزش زبان انگلیسی\",\n \"appId\": \"ir.learnit\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/ir.learnit\",\n \"icon\": \"https://play-lh.googleusercontent.com/HVPHWvie__67dV6FW4AO5dWq1HjGMBHupCDovyOmu_AXnsojpmfeR7LMYkKB28IPvh4\",\n \"developer\": {\n \"devId\": \"LearnitTeam\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/LearnitTeam\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"یادگیری انگلیسی راحت\\u200cتر از همیشه
رایگان امتحان کنید!
با بیش از ۴۰۰ هزار زبان\\u200cآموز فعال در ماه
و رضایت ۹۶ درصدی زبان\\u200cآموزان

ویژگی\\u200cهای منحصربفرد لرنیت:
• محتوای آموزشی منظم و درس محور
• ارائه تمرینات متنوع و بازی\\u200cگونه
• تقویت مکالمه، شنیدار، درک مطلب و افزایش دایره لغات
• آزمون تعیین سطح هوشمند
• پاسخگویی به سوالات درسی توسط اساتید لرنیت
• واژه\\u200cنامه اختصاصی
• جعبه لایتنر
• کوییز (رقابت آنلاین دونفره!)\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7184267,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=ir.learnit\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/ir.learnit/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/ir.learnit/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/ir.learnit/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/ir.learnit/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Learn Spanish\",\n \"appId\": \"com.listeneng.sp\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.listeneng.sp\",\n \"icon\": \"https://play-lh.googleusercontent.com/gisFc8mq48EfY5vvbRwK4cz46katM1SR-ybOlSUP2e6x5XSqa8YyEmzLlhGrWcM79AO4\",\n \"developer\": {\n \"devId\": \"Portalis\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Portalis\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Easy & interesting learning app to learn Spanish from English. This app has everything includes vocabulary and words to improve the Spoken Spanish. This Listen and Learn Spanish app has English content to improve your vocabulary power. Test your Spanish knowledge with quiz.

This app has Free Spanish speaking vocabulary course in English which strengths your speaking and listening ability in Spanish. You can start learning Spanish in a few hours. Learn Spanish to English easily. Learn Spanish and achieve your goal using this Spanish Vocabulary app. Learn Spanish by listening to Spanish words. Pronounce and match the Spanish words and vocabulary. Find Spanish vocabulary and everyday words.

Learn to speak Spanish fluently in English. Learn Spanish words from easy and smart methods. The app has a speaking vocabulary and a word match with text to speech. This app can help you learn Spanish quickly using audio. It is easier to learn Spanish by vocabulary and words.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.74673,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.listeneng.sp\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.listeneng.sp/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.listeneng.sp/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.listeneng.sp/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.listeneng.sp/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"NeuroNation - Brain Training\",\n \"appId\": \"air.nn.mobile.app.main\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/air.nn.mobile.app.main\",\n \"icon\": \"https://play-lh.googleusercontent.com/rFKnveLcs6AhV6k6t_2HI3akhxP7kQsnSyrjQhScLG8mNedvwhMuJoz92cqVTGLf0No\",\n \"developer\": {\n \"devId\": \"NeuroNation\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/NeuroNation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With NeuroNation scientific brain training you bring your brain day by day on trot. Whether it's weaker memory, dwindling concentration or thinking too slowly - only 15 minutes of training a day can make problems disappear and give your brain new momentum. Join the worldwide community of over 23 million members and treat yourself to a piece of science - right in your pocket.

German health insurances are reimbursing our medical device NeuroNation MED. If you have a prescription, please download the "NeuroNation MED", not the "NeuroNation" app.

Why doing brain training with Neuronation?


- DIFFERENT EFFECTS: Various studies have repeatedly proven this: With brain training, you can improve your memory and increase your thinking speed and concentration.

- PERSONALIZATION: NeuroNation performs a comprehensive analysis of your strengths and potentials and creates a personal training plan for you that exactly meets your needs.

- CHANGE AND BALANCE: With over 34 exercises and 300 levels you get a varied and motivating training for a balanced promotion of your brain.

- SCIENTIFIC BASIS: In a study conducted by NeuroNation together with the Department of General Psychology at Freie Universität Berlin, the effectiveness of NeuroNation memory training was proven.

- DETAILED PROGRESS ANALYSIS: Thanks to many years of experience and many millions of users, we can give you the opportunity to follow your progress closely and interpret it correctly according to your comparison group.

- FUN AND MOTIVATION: Get together with friends, compare your results, train for a race and blast the old boundaries of your brain together.

- AND MUCH MORE: Already 23,000,000 members worldwide train your brain with NeuroNation. Join our community and convince yourself of the brain training of the latest generation.

NEURONATION PREMIUM


- Comprehensive training program with 34 motivating exercises and many more to come
- Full personalization according to your wishes, strengths and potentials
- Regular publication of new exercises and courses
- Comprehensive customer support and quick help with questions

Download the app now and stay fit - for the rest of your life!

VISIT US: www.neuronation.com
FOLLOW US: twitter.com/neuronation
BE OUR FAN: facebook.com/neuronation\",\n \"scoreText\": \"4.6\",\n \"score\": 4.584866,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=air.nn.mobile.app.main\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/air.nn.mobile.app.main/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/air.nn.mobile.app.main/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/air.nn.mobile.app.main/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/air.nn.mobile.app.main/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Here Comes the Bus\",\n \"appId\": \"com.synovia.herecomesthebus\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.synovia.herecomesthebus\",\n \"icon\": \"https://play-lh.googleusercontent.com/wf9S1FrHdkAeYQs-zHMI6ThfUkow9fxrwUrtehNevjLt7fAv5Y4F0rxpRfPNqToqvg\",\n \"developer\": {\n \"devId\": \"Synovia Solutions LLC\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Synovia%20Solutions%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Notice: In order to use the app, your school district must have a contract with Synovia Solutions and make Here Comes the Bus available to parents. Please contact your school district or Synovia Solutions for more information, including applicable costs.

Here Comes the Bus® is an easy-to-use app that lets you view the real-time location of your child’s bus on your smartphone, tablet or computer.

With Here Comes the Bus, you can send your child to the bus stop at just the right time, helping to avoid missed buses or long waits in freezing temperatures, pouring rain, the hot sun or rush-hour traffic.

KEY FEATURES:

Find your bus quickly and easily
See the exact location of your child’s school bus using your own customizable map.

Access arrival & departure info
Confirm your child’s bus has arrived at the bus stop and at school, both before and after school.

Get updates via email or push notification
Be notified when the bus is within five minutes of your stop, has a schedule change and more.

Track all of your children
Have children that ride separate buses? Here Comes the Bus lets you keep tabs on each one.

Know your privacy is protected
To use Here Comes the Bus, parents must obtain a private ID number, which grants them access to their child’s bus only.\",\n \"scoreText\": \"3.0\",\n \"score\": 3.0411544,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.synovia.herecomesthebus\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.synovia.herecomesthebus/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.synovia.herecomesthebus/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.synovia.herecomesthebus/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.synovia.herecomesthebus/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Dog Scanner: Breed Recognition\",\n \"appId\": \"com.siwalusoftware.dogscanner\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.siwalusoftware.dogscanner\",\n \"icon\": \"https://play-lh.googleusercontent.com/gXC_ih3B44R4-Vk-AurDTashZdavrGEd3fcg6nCLHksV3ytzn4W-Oz3b_K-5O6ZuMg\",\n \"developer\": {\n \"devId\": \"Siwalu Software GmbH\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Siwalu%20Software%20GmbH\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Dog Scanner app will identify your dog's breed reliably in just a few seconds! Besides taking a picture, you can also record a video or upload an image from your gallery.

Got a mixed breed?

No problem, the Dog Scanner app also recognizes mixed breeds! We provide you with detailed data and interesting facts about the different breeds of your mixed breed dog.

No dog around?

Doesn’t matter! The Dog Scanner app also recognizes humans: Simply scan yourself, your friends, your family or the people around you and find out which dogs you resemble the most!

------

NEW! Become a part of our Dog Scanner community!

Share your results and compare them to the results of the community! Upload pictures of your favorite dog to our Social Feed and share them with other dog lovers! Have a look at the profiles and photos of other users, like and comment on posts from our dog community and filter them by date or popularity!

Additionally, you can easily share your posts with your friends by simply sending a picture directly from the Dog Scanner app.

------

NEW! Catch all dog breeds and become an expert!

Catch all the dog breeds with our Gamification feature – just like in Pokémon Go! Master the challenges, earn virtual treats and become a true dog expert! Compete with your friends or users from the community and climb to the top of our ranking list!

------

All dog breeds in the Dog Scanner app!

The Dog Scanner app currently identifies more than 370 different dog breeds, including all breeds officially recognized by the Fédération Cynologique Internationale (FCI) and even some more! Our comprehensive database with information and pictures of all dog breeds (including the unofficial ones) can also be accessed completely without scanning!

Give us feedback on the Dog Scanner app!

Let us know if the dog’s breed has been correctly identified. If not, you will get useful tips to improve your own results. If you also indicate which dog breed is in the picture, you help us to enhance our software since the app automatically learns how to provide even more accurate outcomes. Also suggest or vote for (unofficial) dog breeds that you want us to add to the app in the future!

Get your premium upgrade!

With our premium version, the app will no longer show ads and your results will be available faster. Furthermore, you can now choose whether your dog breeds should be recognized rather quickly or with higher accuracy. With the premium version, scanning dogs is also possible in offline mode, so you no longer need an active internet connection to identify their breeds. With the optional in-app purchase of our premium version, you will also help to support this app.

------

Find us on social media!

On our social media channels we provide you with the most beautiful dog pictures from the community. You will also find many interesting facts about man's best friend. Furthermore, we will keep you updated on all new added features of the Dog Scanner app in the future.

* Instagram: https://www.instagram.com/dogscanner_app
* Facebook: https://www.facebook.com/DogScannerApp
* Twitter: https://twitter.com/dogscanner_app

------

Just give it a shot!

Dog recognition as easy as it gets! Despite the small app size you will get all features and be able to identify a dog’s breed or get access to our extensive database at any time! Before you consider getting an expensive DNA test, simply scan your dog with the app and the dog breed will automatically be determined within seconds! Download the Dog Scanner app now!\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2252316,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.siwalusoftware.dogscanner\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.siwalusoftware.dogscanner/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.siwalusoftware.dogscanner/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.siwalusoftware.dogscanner/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.siwalusoftware.dogscanner/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Aprender Inglés Curso\",\n \"appId\": \"curso.d.ingles.gratis\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/curso.d.ingles.gratis\",\n \"icon\": \"https://play-lh.googleusercontent.com/Xs_GrinVuNFnIEmfGSX6FMJiRRuTS0NFyII2oQvYuUFtJIO1h4miZ0mFY1urJNh0SZZ1\",\n \"developer\": {\n \"devId\": \"MejorCurso\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/MejorCurso\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"✅ Aprender Inglés con Curso de Inglés Gratis !!
Aprender Es Fácil con esta APP que Tiene 57 Lecciones de Inglés, Audios, Textos, Pronunciación Figurada, Exámenes y Traductor.
🇺🇸 Incluye 3 Niveles ( Básico - Intermedio y Avanzado).
Ademas Cuenta con 7 Exámenes Virtuales Para Evaluar Tu Progreso en el Idioma!


👍 Este Curso es 100% GRATUITO, es Completo y de Acceso Libre!
La Ultima Versión Incluye Traductor Gratis Multi-Idiomas!
No esperes más, Descarga esta APP ahora mismo a Tu Celular ó Tablet Android!
Curso Completo de Inglés es 100% Recomendado!
Ademas Agregamos La Sección "PALABRAS" con las 1000 Palabras Más usadas en el Idioma Inglés, con su Traducción, su Pronunciación correcta con Audio nativo y Dos Frases ejemplo de uso!

¡Comienza a Aprender Inglés con Mejor Curso de Inglés hoy!
CARACTERISTICAS DEL MEJOR CURSO DE INGLÉS :
Lecciones de Inglés Gratis
- 57 Lecciones Gratis para ayudarte a Hablar Inglés
- Lecciones en Audio y Texto
- Vocabulario y Pronunciación

Prueba tu Fluidez
- 3 Niveles incluidos: Básico, Intermedio y Avanzado
- Ve cuanto has aprendido
- ¡7 Exámenes Virtuales para evaluar tu progreso en el lenguaje!

Entrenamiento Bilingüe
- Tendrás acceso a la librería gratis con más de 1000 palabras en Inglés
- Cada palabra incluye guías de pronunciación y traducciones
- Aprende a hablar como un hablante nativo de Inglés

¡Descarga Mejor Curso de Inglés hoy completamente Gratis!

Learn English Free with this Course! Download it Now!\",\n \"scoreText\": \"4.8\",\n \"score\": 4.751358,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=curso.d.ingles.gratis\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/curso.d.ingles.gratis/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/curso.d.ingles.gratis/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/curso.d.ingles.gratis/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/curso.d.ingles.gratis/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Vocal Image: AI Voice Coach\",\n \"appId\": \"app.vocalimage.bessia\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/app.vocalimage.bessia\",\n \"icon\": \"https://play-lh.googleusercontent.com/d0ZTWCIVEXKemUOHXBHRFZW9ZC3ulFlh9IBCCXywYwXdw7LoDQEBcTT8GL_b8L6G32A\",\n \"developer\": {\n \"devId\": \"Vocal Image\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Vocal%20Image\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Vocal Image is a voice training and therapy app that will help boost your confidence and make your voice more attractive or even sexy.

With the help of AI, you can get your voice evaluated to understand your strengths and weaknesses or receive a rating from our community of 500,000 dedicated voice users.

Our video coaching sessions are the heart of our approach, allowing you to watch and practice along with the coach. We also offer a personalized training plan to help you make your voice deep, confident, and expressive.

In addition to these features, we offer a range of tools to help you improve your accent and speak with clarity, as well as specialized programs for speech recovery and voice feminization or masculinization. Our app is top-rated by the LGBTQ+ community for these specialized programs.

We also offer tons of educational content, including training sessions, lectures, articles, short videos, and podcasts. We update the Vocal Image app every two weeks, fixing reported issues and adding new features and content to provide the best vocal training and music experience possible.

Vocal Image is a music and audio app that helps you improve your voice and your singing skills. Our app is designed for anyone who loves music and wants to take their vocal abilities to the next level.

Whether you're a beginner looking to learn the basics of singing or an experienced vocalist looking to refine your skills, Vocal Image has something for everyone. So why wait? Download the app today and start improving your voice and singing abilities!

Please read the service terms of use and privacy policy:
https://www.vocalimage.app/terms
https://www.vocalimage.app/privacy

Do you have a suggestion? Contact us!
info@vocalimage.app

Community:
YouTube: https://www.youtube.com/@Vocal_Image
Telegram: https://t.me/vocalimage
Instagram: https://instagram.com/vocalimage.app\",\n \"scoreText\": \"3.5\",\n \"score\": 3.51,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=app.vocalimage.bessia\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/app.vocalimage.bessia/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/app.vocalimage.bessia/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/app.vocalimage.bessia/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/app.vocalimage.bessia/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Udemy - Online Courses\",\n \"appId\": \"com.udemy.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.udemy.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/dsCkmJE2Fa8IjyXERAcwc5YeQ8_NvbZ4_OI8LgqyjILpXUfS5YhEcnAMajKPrZI-og\",\n \"developer\": {\n \"devId\": \"Udemy\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Udemy\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Skill up to success. Udemy is a leading destination for online courses that empowers you to grow professionally and personally. Get the app to explore our expansive library of thousands of topics with cutting-edge online video courses in Coding, Development, Python, Java, Business, Marketing, SEO, SEM, Drawing, Photography, and much more.

Tap into knowledge from around the world by learning from real-world experts. With courses in over 65 languages, you’ll probably find the right course for your goals.

Here’s what makes learning with the Udemy app so valuable:

LEARN OFFLINE: Download courses and learn even when your internet connection is unreliable

LEARN ON THE BIG SCREEN: Watch courses with Chromecast

DARK MODE: Stay focused in any lighting condition

LEARNING REMINDERS: Build your learning routine with customised push notifications that fit your schedule

NOTES: Maximise your learning by taking notes and adding bookmarks to remember more of what you learned

QUIZZES: Take in-course quizzes to reinforce your learning

Q&A: Ask instructors your burning questions to increase your knowledge or get a little extra help

LIFETIME ACCESS: Take courses on your schedule. Revisit them as needed.

Many instructors update courses (at no extra cost) to bring you the latest knowledge as it becomes available. Making learning with us is a short- and long-term investment in your success.

Other popular topics people are learning to achieve their goals:
App Development: Android, iOS, Swift
Data Science: R, Machine Learning, Artificial Intelligence
Marketing: Mobile, Social Media, SEM, SEO
Art, Music, Drawing, Photography, Health & Fitness

Learners around the world trust Udemy to launch new careers, advance in their current field, and reap the benefits of lifelong learning.

Take control of your future with online courses that deliver practical, professional skills. Prepare for certification exams in IT, Project Management, and more. Earn certificates of completion for paid courses to showcase on your CV or impress in your next interview.

Join millions of learners around the globe and improve your life through learning!\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3883076,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.udemy.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.udemy.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.udemy.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.udemy.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.udemy.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Noggin Preschool Learning App\",\n \"appId\": \"com.nick.noggin\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.nick.noggin\",\n \"icon\": \"https://play-lh.googleusercontent.com/Jmz0WftH5FU64YVEDbalHNlMxse5D2QcjiiNQBBUUUOVqk5820pI6atmzH3tWvmPRRw\",\n \"developer\": {\n \"devId\": \"Nickelodeon\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Nickelodeon\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn and play at home with a 30 day free trial of Noggin. Kids can engage all summer with learning activities, games, videos, and books led by their favorite characters. Enjoy Noggin at home or on the go.

Noggin is the only subscription service where learning is led by the trusted Nick Jr. characters your kids know and love. When you subscribe to Noggin, you’ll get access to an ever-expanding library of eBooks, learning games, interactive episodes, activities, and exclusive shorts developed by curriculum specialists. With 1,000+ ad-free full episodes of preschool favorites like PAW Patrol, Peppa Pig, and Blue's Clues & You! — kids can go on fun learning adventures and explore math, science, literacy, music, manners, and more!

Here’s why Noggin is great for kids ages 2 & older:
• Trusted characters teach kids everything from ABCs and 123s, to important life skills
• Safe and easy for kids to navigate independently. No ads, ever!
• Downloadable content allows kids to play offline or on the go!
• One subscription gives you access to the Noggin app on multiple devices
• New content added weekly!

eBooks
• Downloadable stories help foster a love of reading
• Read together or turn on narration and your child can explore at their own pace
• Parent tips help guide conversations and reading comprehension
• Features Bob Books — a proven learn-to-read book series! - NEW!

Games
• Your child’s favorite shows made interactive!
• Kids can swipe, tap, and even talk to their favorite characters as they learn
• Downloadable episodes kids can watch and play offline
• Math, literacy, and puzzle games will have kids using their noggin
• Coloring books nurture kids' creativity

Start Your Subscription Today!
• Try Noggin FREE for 30 days! After that, just $7.99/month until you cancel
• Your Google Play account will be charged $7.99/month after your free trial ends
• Cancel your subscription in Google Play store > My Apps > Subscriptions
• Avoid auto-renew charges by canceling at least 24 hours before the end of your trial or current billing period

Noggin collects personal user data as well as non-personal user data (including aggregated data). User data collection is in accordance with applicable law, such as COPPA. User data may be used, for example, to respond to user requests; enable users to take advantage of certain features and services; personalize content and advertising; and manage and improve Nickelodeon's services. For more information regarding Nickelodeon’s use of personal user data, please visit the Nickelodeon Group Privacy Policy below. Our Privacy Policy is in addition to any terms, conditions or policies agreed to between you and Google, Inc., and Nickelodeon and its affiliated entities are not responsible for Google's collection or use of your personal user data and information. Additionally, this App may use “local notifications.” Local notifications are sent directly from the App to your device (you don’t need to be connected to the Internet) and may be used to notify you of new content or events within your App, among other reasons. Use of this App is subject to the Nickelodeon End User License Agreement.

Noggin offers in-app purchases and charges real money for additional in-app content. You may lock out the ability to purchase in-app content by adjusting your device’s settings.

End User License Agreement: http://www.nick.com/nick-eula/
Privacy Policy: https://privacy.paramount.com/childrens
The End User License Agreement for this app includes arbitration for disputes – see FAQs: http://www.nick.com/faqs/\",\n \"scoreText\": \"3.5\",\n \"score\": 3.4827585,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.nick.noggin\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.nick.noggin/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.nick.noggin/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.nick.noggin/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.nick.noggin/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Miga Town: My Vacation\",\n \"appId\": \"com.miga.myvacation\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myvacation\",\n \"icon\": \"https://play-lh.googleusercontent.com/usiodbKqVJAoXSWPY1vJbeubjSfDP8qN2V3Uw3yFBH4qi9ie2sPwRjWno59sj9UyoeE\",\n \"developer\": {\n \"devId\": \"XiHe Digital (GuangZhou) Technology Co., Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/XiHe%20Digital%20(GuangZhou)%20Technology%20Co.%2C%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Miga Town:My Vacation,Welcome to the new world of adventure – drive your own car, start a new journey and search the island for great treasures. Be a real adventurer!

More interesting scenes and self-defined game-play help to create a more wonderful story!

Exploration
Preparations for the journey begin at home. You can go to the beach to find out secrets of the island, or go to scenic spots to buy your favorite souvenirs, DIY your favorite masks, take your chance to win special souvenirs, and even take some photos at the spots.

Stay at the resort hotel for a few days, and each room will offer you a unique surprise.

Features
- Six scenes: Home, Holiday Resort (Hotel Lobby, Deluxe Suite, 2 Themed Rooms), Beach & Island, Sightseeing Area

- Home: Your journey starts here, where you can find most tools that will be useful in your exploration. Remember to take them.

- Holiday Resort Hall: You will stay in a unique holiday resort and enjoy 5-star cuisines.

- Deluxe Suite: You can live in a deluxe suite with a super-large bathroom, fantastic sea view. You will get a mysterious key and fabulous costumes here.

- Themed Room: Choose your favorite between the flower fairy-themed room and car-themed room, and find the costumes exclusive to the room that you choose.

- Beach & Island: You can play games on the beach, explore the island, hunt great treasures and then take them to the sightseeing area for auction.

- Sightseeing Area: You can buy souvenirs at the gift shop and make your favorite masks. Many interesting scenic spots are waiting for you.


--Give full play to children’s creativity
--Tens of billions of customized modes
--No third-party advertising
--No time limit or score ranking list

contact us:support@xihegame.com\",\n \"scoreText\": \"3.0\",\n \"score\": 3.0236685,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.miga.myvacation\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myvacation/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myvacation/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myvacation/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myvacation/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Canvas Parent\",\n \"appId\": \"com.instructure.parentapp\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.instructure.parentapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/YRZhNTMaMI3pI9DDNbs-EjcEqxElap29-zJdqT5ZAHtmWxA1sv1WVKCXqj_TYEP4_Q\",\n \"developer\": {\n \"devId\": \"Instructure\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Instructure\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Traditionally, parents seeking information about their students' progress had to sift through assignment planners, email instructors, or wait for report cards. But the wait is over! Canvas Parent is designed to provide visibility into your child's education at a glance. Canvas Parent allows parents to:

• View assignment descriptions and due dates
• Set reminders for assignments
• View assignment grades
• View course grades
• Set grade alerts
• View course announcements

Important: This mobile app is only usable by parents whose children attend schools that have enabled Canvas Parent.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3514285,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.instructure.parentapp\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.instructure.parentapp/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.instructure.parentapp/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.instructure.parentapp/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.instructure.parentapp/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Happy Daycare Stories - School\",\n \"appId\": \"com.playtoddlers.happydaycarestories.free\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.playtoddlers.happydaycarestories.free\",\n \"icon\": \"https://play-lh.googleusercontent.com/2mB3XzhdMJKa_33HDClqmOCWNMwaL2jdvxqGpL2Xzibc971TbtXTimXb99tgJid2Gir6\",\n \"developer\": {\n \"devId\": \"SUBARA\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/SUBARA\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"You are in charge of this daycare, a small and fully interactive world where everyone is welcomed and the only rule is to use your imagination to create amazing stories. Explore 7 different rooms, with tons of toys and thousands of different interactions, and play with 5 playful characters .

CREATE YOUR OWN STORIES!

Let your imagination fly exploring and playing with the daycare center, where every room is an adventure itself. Prepare delicious meals in the kitchen, create a musical band, put the children to bed, or bathe them after a hard day of play. In this daycare, you decide!

EXPLORE THE DAYCARE!

With tons of toys, different objects and thousands of possible interactions. Water the plants, mix ingredients from the fridge into the pot, or throw toys into the bathtub. You will find surprises everywhere!

DISCOVER AND PLAY FREELY!

Discover all the different rooms, full of surprises and hidden treasures. Remember, there are no rules so don't be afraid to interact with anything!


FEATURES

+ Explore and play in 7 different rooms full of activities.
+ You will be in charge of 5 charming children eager to play.
+ Lots of toys and objects, and thousands of possible interactions.
+ Without rules and goals, just fun to create your own stories.
+ Kid safe environment for children aged 2 to 8, no third party ads.

Specifically designed to be played by children from 2 years of age, but detailed enough to captivate and amuse children up to 8 years. Happy Daycare Stories will foster their imagination and creativity, and will keep them fascinated for hours for less than the price of a cup of coffee.

The free trial includes 3 rooms so you can test the endless possibilities of this game. Once you are sure, you can buy the full version through a single purchase within the application, which will unlock the 7 rooms forever.


About PlayToddlers

PlayToddlers’ games encompass different areas of toddler’s personal growth, and have been specifically designed to be used by babies, with a simple and attractive interface that allows them to use the application by themselves, improving their development and self-esteem.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2509804,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.playtoddlers.happydaycarestories.free\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.playtoddlers.happydaycarestories.free/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.playtoddlers.happydaycarestories.free/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.playtoddlers.happydaycarestories.free/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.playtoddlers.happydaycarestories.free/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Zutobi: DMV Practice Test\",\n \"appId\": \"com.driverlicenseapp\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.driverlicenseapp\",\n \"icon\": \"https://play-lh.googleusercontent.com/wrRv4y58YZeKfHZnmQHlBMuc5djDi4do1MDK2f7khaOnMkCN1G7YC1dut6cyJzgnnVM\",\n \"developer\": {\n \"devId\": \"Zutobi\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Zutobi\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"COULD YOU ACE YOUR DRIVERS PERMIT TEST?
Join over 250,000 monthly users on the most popular DMV practice test app. It’s fast, easy and fun. It's the only study material you need to get your DMV permit and driver license. We have courses for Car, CDL and Motorcycle.

The Zutobi app is built like a game and keeps you motivated. When you have finished the app, you are prepared to sit the DMV Test. It's that simple.

DON’T LEAVE ANYTHING UP TO CHANCE AT THE DMV PERMIT TEST
The app teaches you the rules of the road using our summarized easy-to-read DMV handbook AND over 550 state-specific questions that are almost identical to the real Drivers Permit Test.

LEARN TO DRIVE AND BECOME A SAFE DRIVER
The app promotes safe driving and helps you learn important safety aspects of driving.
_______________________________________

WHY DMV PRACTICE TEST BY ZUTOBI?

✔ 550+ QUESTIONS IDENTICAL TO THE REAL DMV PERMIT TEST - The questions are very similar (often identical) to the real test.

✔ SUMMARIZED DMV HANDBOOK - We’ve summarized the handbook for most states into an easy-to-read format without all the unnecessary drivel.

✔ PICTURES AND ILLUSTRATIONS - Learn the rules of the road using real-life traffic situations to help you learn fast and efficiently.

✔ STATE SPECIFIC - The app is tailored specifically for each US state to match the requirements of the DMV, DDS, DOL, DOT, BMV, MVA, RMV, DOR, MVC and MVD tests.

✔ COMPETE AND WIN - Challenge your friends and see who can score the highest using fun features such as the Leaderboard. Besides glory and honor, winning over your friends also means that you’re more likely to do well on the real drivers permit test.

✔ DETAILED STATISTICS - Easily track your progress using advanced statistics.

✔ UNLIMITED TESTS - Take as many DMV practice tests as you need (most are near identical to the tests by the DMV), and learn from your mistakes through detailed explanations.

✔ STUDY OFFLINE - No internet connection is required once all the data has been downloaded.

✔ AVAILABLE IN THE FOLLOWING STATES - Alabama (AL), Alaska (AK), Arizona (AZ), Arkansas (AR), California (CA), Colorado (CO), Connecticut (CT), Delaware (DE), Florida (FL), Georgia (GA), Hawaii (HI), Idaho (ID), Illinois (IL), Indiana (IN), Iowa (IA), Kansas (KS), Kentucky (KY), Louisiana (LA), Maine (ME), Maryland (MD), Massachusetts (MA), Michigan (MI), Minnesota (MN), Mississippi (MS), Missouri (MO), Montana (MT), Nebraska (NE), Nevada (NV), New Hampshire (NH), New Jersey (NJ), New Mexico (NM), New York (NY), North Carolina (NC), North Dakota (ND), Ohio (OH), Oklahoma (OK), Oregon (OR), Pennsylvania (PA), Rhode Island (RI), South Carolina (SC), South Dakota (SD), Tennessee (TN), Texas (TX), Utah (UT), Vermont (VT), Virginia (VA), Washington (WA), West Virginia (WV), Wisconsin (WI) and Wyoming (WY)
_______________________________________

GET STARTED TODAY AND GET YOUR DRIVERS LICENSE
Download today and start your journey towards learning all the rules of the road and acing your Drivers Permit Test! Once you have finished the app, you will feel confident as a driver.

ARE YOU A DRIVERS LICENSE HOLDER LOOKING FOR A REFRESHER COURSE?
The Zutobi app works just as great for current drivers license holders looking to freshen up their knowledge of the rules of the road

DO WE OFFER STATE-APPROVED DRIVERS ED?

No. If, because of your age, you are required to take a state-approved course - use our course as a complement to ensure that you learn how to behave in traffic, get the knowledge you need to stay safe and pass your test.

ADDITIONAL INFORMATION
Read more about the app on our website:
https://zutobi.com/us
_______________________________________

Our Terms of Service and Privacy Policy:

Privacy Policy: https://zutobi.com/privacy
Terms of Use: https://zutobi.com/terms
Contact us: https://zutobi.com/us/contact\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5112405,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.driverlicenseapp\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.driverlicenseapp/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.driverlicenseapp/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.driverlicenseapp/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.driverlicenseapp/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Quiver - 3D Coloring App\",\n \"appId\": \"com.puteko.colarmix\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.puteko.colarmix\",\n \"icon\": \"https://play-lh.googleusercontent.com/SIozEQTIAyMoN39-53UUh19ndjwzCrREtRXarsbQWK4hBau4WXNEl6Alhq2_FVnAQOU\",\n \"developer\": {\n \"devId\": \"QuiverVision Limited\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/QuiverVision%20Limited\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Quiver App makes learning fun by combining physical coloring with cool augmented reality technology to create an engaging, educational and magical experience.

You can test our free pages by downloading them from our website (https://quivervision.com/). By using our expertise in augmented reality technology, the Quiver App makes a huge range of educational topics fun to learn about by letting the users creativity and imagination run wild. Every colored page comes to life in its uniquely colored way, giving the artist an immediate and special sense of ownership and pride! The Quiver App is immersive, educational, exciting and inspiring – a must have tool for the classroom or at home where kids can develop skills and retain knowledge like never before. Try it out yourself and we are sure you will agree.

If you are willing to subscribe, Quiver is your one-stop shop for Augmented Reality content and lesson plans for Pre K to Year 4 and beyond. The Quiver App and website offer an educational platform that helps students better visualize & understand various learning subjects.

Included for free on the website are a great range of augmented reality lessons, created by teachers & educators, and specifically designed to meet the needs of all students by incorporating a variety of activities. It’s now time for you to start using augmented reality in your classroom right away!

The Quiver Education dashboard also allows the Quiver App to be deployed across multiple devices in the classroom using just one subscription. This then allows all of those devices to access and use all of the available Quiver App content during the term of the subscription.

How to use:
- Using Quiver couldn’t be simpler.
- First, find our pages by downloading the app and on our website: https://quivervision.com/.
- Next, save and print your pages from the computer and color away with your favorite colors.
- Ready to bring your finished creation to life? Simply open the Quiver App, press the camera button, scan the page QR code, then scan the coloring page with your camera and watch your coloring leap from the page like magic! How cool is that?
- No two pages are the same, making each new Quiver experience as memorable and exciting as the last.

Visit our website (https://quivervision.com/coloring-packs) for a list of available Quiver coloring pages. The pages include a range of educational pages (e.g. abc’s, space, math, science, geography) plus a range of pure entertainment pages with lots of fun and games included.

Features:
- Traditional coloring with immersive educational augmented reality.
- Learn and discover, with quizzes and other educational tools.
- A range of free lesson and activity plans to match the available coloring pages.
- Watch your creations magically come to life on your smart device screen.
- Engage, interact and play games with your creations.
- Capture photos and videos of your creations to share with friends.
- Different sound effects associated with each page.

Please Note:
- The Quiver App requires physically printed coloring pages to enjoy the full experience.
- To print out pages, visit https://quivervision.com/coloring-packs.
- An Internet connection is required to download new content associated with the Quiver App.
- The Quiver App only works with QuiverVision pages - look for the Quiver Butterfly logo to ensure the pages are compatible.
- In-app purchases & Subscriptions give access to premium Quiver content.
- For more information, visit https://quivervision.com/.
- For additional assistance, please contact us at support@quivervision.com.
- For our full terms of use, please visit https://quivervision.com/terms
- The Quiver App collects anonymous, aggregated analytics data for the purpose of improving the app experience. No personally identifiable data is collected nor requested by QuiverVision. View our full privacy policy at https://quivervision.com/privacy-policy\",\n \"scoreText\": \"3.7\",\n \"score\": 3.6531792,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.puteko.colarmix\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.puteko.colarmix/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.puteko.colarmix/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.puteko.colarmix/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.puteko.colarmix/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Learn Ethical Hacking\",\n \"appId\": \"hacking.learnhacking.learn.hack.ethicalhacking.programming.coding\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/hacking.learnhacking.learn.hack.ethicalhacking.programming.coding\",\n \"icon\": \"https://play-lh.googleusercontent.com/PbjxmygKaaU7JLvYlO4duynVeM5t11W2RwUjtJWM6fYIF3B28UG9jC0B71Hr-VfngQ\",\n \"developer\": {\n \"devId\": \"Coding and Programming\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Coding%20and%20Programming\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Want to become an ethical hacker to make your career in hacking? Learn cybersecurity and hacking basics and advanced skills using this amazing app - Learn Ethical Hacking - Ethical Hacking Tutorials

On this Ethical Hacking Learning app, you will be able to start with the basics of cybersecurity and hacking so that you can build your skills around it. You can build your hacking skills on the go from Hacking Tutorials on this app.


What is available on Learn Hacking App

💻Understand the basics of Hacker
💻Know who is known as a Hacker and what is Hacking?
💻Introduction of security
💻Types of Hackers
💻Know about malware
💻What is Virus - Trojans & Worms

You will be able to uncover a lot about the world of cybersecurity and potential vulnerabilities that can exist in computer systems and computer networks of today's world.

Learn hacking skills online for free with Learn Ethical Hacking app. This ethical hacking learning app is a free IT and cyber security online training network offering in-depth hacking courses for noobs, intermediate and advanced hackers. With a course library spanning topics such as ethical hacking, advanced penetration testing and digital hacking forensics, this app is the best place to learn hacking skills online.

With this app, anyone can take a hacking course. Our app-based learning platform is free and open to all who wish to learn. This is because our app's goal is to make IT, cyber security, penetration testing, and ethical hacking available to everyone, regardless of circumstance. As you start out on your hacking journey It is important to understand what it means to be an ethical hacker. Ethical hackers are hackers who penetrate networks with the goal of uncovering that network’s weaknesses on the owner’s behalf. This way the network owner is better able to secure their system from malicious attacks. If this sounds like something you are interested in pursuing, then you have come to the right place.

Support Us
If you have any feedback for us, please write us an email and we will be happy to help you out. If you have liked any feature of this app, feel free to rate us on play store and share with other friends.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.727047,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=hacking.learnhacking.learn.hack.ethicalhacking.programming.coding\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/hacking.learnhacking.learn.hack.ethicalhacking.programming.coding/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/hacking.learnhacking.learn.hack.ethicalhacking.programming.coding/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/hacking.learnhacking.learn.hack.ethicalhacking.programming.coding/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/hacking.learnhacking.learn.hack.ethicalhacking.programming.coding/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Kids A-Z\",\n \"appId\": \"com.learninga_z.onyourown\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.learninga_z.onyourown\",\n \"icon\": \"https://play-lh.googleusercontent.com/UOREyrox808h9JpAGnIE0X2oDa_FzhgzXPmHvuTVAxUP4fCwsU05LXUtLxg8XdtTAcg\",\n \"developer\": {\n \"devId\": \"Learning A-Z\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Learning%20A-Z\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Have fun learning with Raz-Kids, Science A-Z, and Headsprout on the Kids A-Z app!

With Kids A-Z, students can complete various interactive activities from the Raz-Kids, Science A-Z, and Headsprout products and update their robot avatars on mobile devices.

Students using the app can:
• Access hundreds of developmentally-appropriate books, exercises, and other resources
• Complete corresponding quizzes that ensure comprehension
• Utilize interactive annotation tools that support close reading skills
• Have their work scored and reported to their teacher automatically
• Customize their personalized robot avatar and space rocket using the stars earned from completing activities

The Kids A-Z app is free to download, but access to Raz-Kids, Science A-Z, and Headsprout content requires subscriptions to the respective product. For more info about our products and subscriptions, please visit our website:

https://www.learninga-z.com/site/products/\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9489284,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.learninga_z.onyourown\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.learninga_z.onyourown/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.learninga_z.onyourown/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.learninga_z.onyourown/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.learninga_z.onyourown/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Learn Coding/Programming: Mimo\",\n \"appId\": \"com.getmimo\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.getmimo\",\n \"icon\": \"https://play-lh.googleusercontent.com/qPfmmEDFhGVmIXIKpmfbQeH6vXygXotzj6ied-j2el0YIB36fApN32XoVDrGoMQZ11Q\",\n \"developer\": {\n \"devId\": \"Mimo: Learn to Code\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Mimo%3A%20Learn%20to%20Code\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn to code in different programming languages like Python, Javascript, HTML, CSS, SQL, and more. Learning to code has never been so easy! With Mimo coding app, you can practice and build code, advance your career or become a developer. The experts tailored Mimo's programming courses to fit any level. The learning paths are designed to help you learn to code with tons of practice and real-world projects. Learn coding and programming, the skills of the century, at your own pace, only a few minutes at a time.

🏆 Google Play's Editor's Choice\\u2028\\u2028
🏆 Best Self-Improvement Apps of 2018

Used by millions of learners, Mimo coding app is an accessible and effective way to learn to code in Python, JavaScript, HTML, SQL, and CSS. Our programming lessons and practice coding exercises are suitable for everyone.

Even if you know nothing about coding but want to level up your skills, learn to code, and become open to all the opportunities available to those fluent in coding and computer programming languages, Mimo is a great way to get introduced to the coding world. Install Mimo and get access to free coding lessons in Python, Javascript, HTML, and more.

Mimo makes learning to code and diving into computer science as intuitive as possible. Our curriculum is built by experts and helps you learn by practicing on real-world projects in HTML, JavaScript, CSS, Python, and SQL.

With Mimo's Learn Coding and Programming app you'll be able to:
• Learn to code in the most popular programming languages like Python, JavaScript, HTML, CSS, and SQL
• Solve bite-size coding exercises and challenges
• Run code and build real-world projects on the go thanks to our mobile IDE
• Build a portfolio of projects like websites or apps
• Learn to code easily and get a certificate to showcase your programming and coding skills
• Join a community of millions of coders

Explore the coding paths that we offer:
• Start the Python path and begin your learning-to-code journey with an in-demand and all-purpose language. Learn Python programming with 2,600+ bite-size exercises, 53+ Concepts, and 32+ Projects that will unlock as you keep expanding your Python skills.
• By choosing the Web development path, you’ll dive into building websites with HTML, CSS, and JavaScript. Start your Web Development journey with 13,000+ bite-size exercises, 87+ Concepts, and 62+ Projects.
• With the SQL curriculum, you'll dive into data science and learn to analyze data with SQL.

What our learners say:
•I love it! right now I'm learning the HTML basics I wanted to learn programming for fun, and it's addicting! Thanks to the Mimo app, maybe I can really start programming." Faxri Qurbanov
"If you ever want to learn to code and you don't know where to start from, I recommend this app. They are the best!" Peace Emmy

You’ll go through the coding classes and learn JavaScript, HTML, CSS, Python, and SQL basics. You’ll build websites and apps by writing real code and building your project portfolio.

• Mimo's interactive curriculum and bite-sized coding lessons make it possible to learn to code at your own pace: coding tutorials and challenges are there for you to discover more, whenever you have a few minutes.

• Write real code on our mobile code editor that works like an IDE and helps you run code wherever you are, compete with Mimo's community, solve coding challenges, learn multiple programming languages, and do much more at your own pace!

TechCrunch and The New York Times agree that, with Mimo, everyone can learn to code:
• "This way you can work learning to code into your daily routine, whenever you have a few minutes of downtime." – TechCrunch
• "The app's lessons are bite-size to make it easy to squeeze coding into your busy day." – The New York Times

We are happy to guide you along your coding journey. Join millions of coders who are already learning to code and program with Mimo.

You can code, too!\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7131076,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.getmimo\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.getmimo/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.getmimo/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.getmimo/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.getmimo/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Pinkfong Baby Shark Phone Game\",\n \"appId\": \"kr.co.smartstudy.singingphone_android_googlemarket\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.singingphone_android_googlemarket\",\n \"icon\": \"https://play-lh.googleusercontent.com/Di_W6Mk1wwClP7n9czOw85m2_CAe7NX2RA0Uy_Eld5o7lbqZdAOsqFR4RjL0J1HQjWA\",\n \"developer\": {\n \"devId\": \"The Pinkfong Company\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/The%20Pinkfong%20Company\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Baby Shark, the most-viewed video on YouTube, hit 10 billion views!

Ring, ring, who's calling? Pinkfong? Or Baby Shark?

Check out our newly updated "Pinkfong Baby Shark Phone" app!
Teach your kids how to use a smartphone with fun songs and games!

"Pinkfong Baby Shark Phone" is an interactive phone app where kids can pick up & answer calls from their favorite characters, Pinkfong and Baby Shark.
Listen to exciting songs and use cute emojis to chat with these friends! Use colorful frames to take selfies and play fun puzzles with your pictures!
All of these cool features are offered for free.

Features:

1. Rrr~ Pick up the phone!
- You can select and call Pinkfong or Baby Shark!
- Sing along to pupular kids songs, including Baby Shark!
- Receive random surprise calls!

2. Send funny messages!
- Receive texts from Pinkfong!
- Try out variety of emojis, including animals, food and hearts to text them back!

3. Learn dial numbers & Listen to funny sounds!
- Learn numbers from 0 to 9 with dial!
- Woof woof! Vroom vroom~ Listen to various sounds!

4. SNAP! Take selfies!
- Don’t miss out cute frames of Pinkfong and Baby Shark!

5. Fun games are added!
- Ice cream game: Build the tallest ice cream cone in the world!
- Feed yummy food and sing along with Baby Shark!
- Puzzle game: Rotate puzzle pieces to make cute pictures!

Now, it's time to grab your one and only Baby Shark toy phone!
Have FUN!


-
• Pinkfong Plus Official Website: https://fong.kr/pinkfongplus/

• About Pinkfong Plus Subscription:
- Join Pinkfong Plus membership and get unlimited access to Pinkfong's best apps!
- Watch videos and play games ad-free.
- Share membership with up to 6 family members.
- Sync devices such as smartphones and tablets using one account.

• Apps Available under Pinkfong Plus:
- Baby Shark World for Kids, Pinkfong Baby Shark, Baby Shark ABC Phonics, Baby Shark Car Town, Pinkfong Dino World, Pinkfong 123 Numbers, Pinkfong Tracing World, Pinkfong Shapes & Colors, Baby Shark Jigsaw Puzzle Fun, Pinkfong Numbers Zoo, Pinkfong Baby Shark Phone, Pinkfong Baby Shark Storybook, Baby Shark Coloring Book, Pinkfong My Body, Pinkfong Police Heroes Game, Pinkfong Guess the Animal, Baby Shark Pizza Game, Baby Shark Makeover Game, Pinkfong Word Power, Pinkfong Mother Goose, Pinkfong Learn Korean, Pinkfong Super Phonics, Pinkfong Fun Times Tables, Pinkfong Baby Bedtime Songs, Pinkfong Birthday Party + more!

More available apps will be updated soon.

Click the "More Apps" button on the home screen or visit Google Play to download the apps!

-

Privacy Policy:
https://pid.pinkfong.com/terms?type=privacy-policy

Terms of Use of Pinkfong Integrated Services:
https://pid.pinkfong.com/terms?type=terms-and-conditions

Terms of Use of Pinkfong Interactive App:
https://pid.pinkfong.com/terms?type=interactive-terms-and-conditions\",\n \"scoreText\": \"3.8\",\n \"score\": 3.76,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=kr.co.smartstudy.singingphone_android_googlemarket\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.singingphone_android_googlemarket/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.singingphone_android_googlemarket/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.singingphone_android_googlemarket/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.singingphone_android_googlemarket/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"LEGO® DUPLO® DISNEY\",\n \"appId\": \"com.storytoys.lego.duplo.disney.mickey.and.friends.googleplay\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.storytoys.lego.duplo.disney.mickey.and.friends.googleplay\",\n \"icon\": \"https://play-lh.googleusercontent.com/PVnhfjrXVjhC4TSnWcG0MJWnw-Gs_Zu3pamLwoYlMqjYiwec7QEf-9axxyHw0gb3vuc\",\n \"developer\": {\n \"devId\": \"StoryToys\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/StoryToys\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Join Disney’s Mickey and Friends on some truly magical adventures together.

Each play pack features endless pretend play fun with your favorite classic characters. Drive a steamboat with Mickey Mouse, make (and eat!) cakes with Minnie Mouse or play chase with Pluto. Take photos with Donald Duck or dance with Daisy Duck. There’s so much to do!

There are fun and engaging problem-solving challenges throughout to support your child's learning and development. They also get plenty of opportunity to build structures and add their own creative sparkle, using 3D DUPLO bricks.

In LEGO DUPLO DISNEY MICKEY & FRIENDS, your child will:
- Develop their IMAGINATION through pretend play with Disney characters
- Build their SELF-CONFIDENCE with positive play experiences
- Stimulate their CURIOSITY with child-centered 'explore and discover' play patterns
- Expand their CREATIVITY and SELF-EXPRESSION by building with virtual LEGO DUPLO bricks
- Practice REASONING AND PROBLEM-SOLVING skills with fun and challenging puzzles

Be your child's partner in play! LEGO DUPLO DISNEY MICKEY & FRIENDS supports Multi-Touch, so your family can play together on the go for shared games, learning and adventures.

Fun-filled play packs in this app:
- MICKEY’S BOAT
- CAMPING ADVENTURE
- MINNIE'S CAFÉ
- MICKEY & MINNIE BIRTHDAY TRAIN
- MAGICAL CASTLE

PRIVACY
StoryToys takes children’s privacy seriously and ensures that its apps are compliant with privacy laws, including the Child Online Privacy Protection Act (COPPA). If you would like to learn more on what information we collect and how we use it, please visit our privacy policy at https://storytoys.com/privacy

Please note that this app is free to play but additional content is available via in-app purchases. Google Play does not permit in-app purchases and free apps to be shared via Family Library, so any purchases you make in this app will not be shareable via Family Library.

Read our terms of use here: https://storytoys.com/terms/

LEGO®, DUPLO®, the LEGO logo, and the DUPLO logo are trademarks and/or copyrights of the LEGO® Group. © 2023 The LEGO Group. All Rights Reserved.

© 2023 Disney\",\n \"scoreText\": \"4.1\",\n \"score\": 4.14,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.storytoys.lego.duplo.disney.mickey.and.friends.googleplay\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.storytoys.lego.duplo.disney.mickey.and.friends.googleplay/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.storytoys.lego.duplo.disney.mickey.and.friends.googleplay/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.storytoys.lego.duplo.disney.mickey.and.friends.googleplay/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.storytoys.lego.duplo.disney.mickey.and.friends.googleplay/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"ScratchJr\",\n \"appId\": \"org.scratchjr.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/org.scratchjr.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/Yi07pS-SF3w_ENRrdOvczzesQDmAAch_Kqt8pT8iYgVQ4vnLNb1Sqd2IIe4KIvTeKO0\",\n \"developer\": {\n \"devId\": \"Scratch Foundation\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Scratch%20Foundation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"ScratchJr is an introductory programming language that enables young children (ages 5 and up) to create their own interactive stories and games. Children snap together graphical programming blocks to make characters move, jump, dance, and sing. Children can modify characters in the paint editor, add their own voices and sounds, even insert photos of themselves -- then use the programming blocks to make their characters come to life.

ScratchJr was inspired by the popular Scratch programming language (http://scratch.mit.edu), used by millions of young people (ages 8 and up) around the world. In creating ScratchJr, we redesigned the interface and programming language to make them developmentally appropriate for younger children, carefully designing features to match young children's cognitive, personal, social, and emotional development.

We see coding (or computer programming) as a new type of literacy. Just as writing helps you organize your thinking and express your ideas, the same is true for coding. In the past, coding was seen as too difficult for most people. But we think coding should be for everyone, just like writing.

As young children code with ScratchJr, they learn how to create and express themselves with the computer, not just to interact with it. In the process, children learn to solve problems and design projects, and they develop sequencing skills that are foundational for later academic success. They also use math and language in a meaningful and motivating context, supporting the development of early-childhood numeracy and literacy. With ScratchJr, children aren't just learning to code, they are coding to learn.

ScratchJr is a collaboration between the Developmental Technologies group at Tufts University, the Lifelong Kindergarten group at the MIT Media Lab, and the Playful Invention Company. Two Sigma led the implementation of the Android version of ScratchJr. The graphics and illustrations for ScratchJr were created by HvingtQuatre Company and Sarah Thomson.

If you enjoy using this free app, please consider making a donation to the Scratch Foundation (http://www.scratchfoundation.org), a nonprofit organization that provides ongoing support for ScratchJr. We appreciate donations of all sizes, large and small.

This version of ScratchJr works only on tablets that are 7-inches or larger, and running Android 4.2 (Jelly Bean) or higher.

Terms of Use: http://www.scratchjr.org/eula.html\",\n \"scoreText\": \"3.6\",\n \"score\": 3.5888324,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.scratchjr.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/org.scratchjr.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/org.scratchjr.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/org.scratchjr.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/org.scratchjr.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Frontline Education\",\n \"appId\": \"com.frontline.frontlinemobile\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.frontline.frontlinemobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/kA96CEwWc2MRmGVabKwNxjMRbuOCfpV3utOyNQn8E9mZaby6S0uQTCM5MGxO6XTG4DY\",\n \"developer\": {\n \"devId\": \"Frontline Education\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Frontline%20Education\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Frontline Education mobile app is a quick and easy way to access the new Frontline Insights Platform while on-the-go. Employees will be able to check leave balances, create absences, access the time clock, and receive web alerts right on their mobile phone.

This app is available for districts and their employees that have added the Frontline Insights Platform.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.383929,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.frontline.frontlinemobile\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.frontline.frontlinemobile/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.frontline.frontlinemobile/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.frontline.frontlinemobile/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.frontline.frontlinemobile/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Psychological Assessment Test\",\n \"appId\": \"com.testgames.psyhologytests\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.testgames.psyhologytests\",\n \"icon\": \"https://play-lh.googleusercontent.com/z4ITX-gWlo6hGgz1MLc1gKAGYfJZRS1oV5vcDexb7Yapjx7EiRRSWf-Yr0nutlLD_MC3\",\n \"developer\": {\n \"devId\": \"DevSect\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/DevSect\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"We developed these personality tests and quizzes for people who want to know themselves better. By answering the questions you can understand your inner world more deeply, get right answers to the questions that are important to you, and become more confident in yourself.

We have done a lot of work to collect a lot of different tests in one place especially for you. These personality tests were compiled with help of experienced psychologists and professional career counselors.

Taking this is psychological assessment test will give you the opportunity to:

- Find out your level of logical thinking with the help of brain games.
- Find out your professional destination by taking the career test
- Find out your personality type
- Get to know yourself in this logic quiz
- Have fun and train your brain with brain games

These personality test and quiz for adults not only give you the way to figure out who you are, but also help you train your brain.
You'll be able to discover your hidden abilities and talents.

By taking this quiz, you'll find out:

- How young your brain is.
- How creative and imaginative you are
- Find out what sort of thinking you have
- How you see the world around you.
- How logical you are.

Personality test helps you figure out what you really like to do, find your purpose, and maybe even discover new talents.

Take the career test seriously.
It is very important for people who are not sure if their current job is what they really dreamed about.
If you're going into a job you're not excited about, take the career aptitude test sooner and find your true calling.

Our psychological assessment test are designed for those:

- Who wants to know their abilities and IQ level
- Who loves logic puzzles
- Who wants to change their life for the better
- Who likes to train their brain and solve complex quizzes
- Who's bored right now

Install the psychological assessment test right now.
Try it yourself and make your own life better:)\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2102804,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.testgames.psyhologytests\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.testgames.psyhologytests/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.testgames.psyhologytests/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.testgames.psyhologytests/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.testgames.psyhologytests/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Miga Town: My TV Shows\",\n \"appId\": \"com.miga.mytvshows\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mytvshows\",\n \"icon\": \"https://play-lh.googleusercontent.com/vI1ghb9MAeQWztMjSnJXcCFaM1ogqWsE3wUOHHAwuUW7GKrB2YSmp4ed-4thl1K5-N0g\",\n \"developer\": {\n \"devId\": \"XiHe Digital (GuangZhou) Technology Co., Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/XiHe%20Digital%20(GuangZhou)%20Technology%20Co.%2C%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Let’s produce distinctive TV programs and/or films!

Have a tour in a brand new scene at the TV station and conduct a live broadcasting match or an outdoor interview. Enjoy a real experience of a TV presenter or a journalist. Show your unique culinary skills in a variety show and gain audience’ favor.

Please, unveil all your creative ideas in different studios, as you may interview stars, celebrities and fashion icons in talent talk shows or start a new program with your friends. Thousands of changes enable a freewheeling program mix.

Features
--Five scenarios: Home, talk show live, press recording studio, variety studio, streets

--Home - move into the most luxurious room and play your favorite role!

--Talk show live - invite stars/icons at your choice, and talk about something crazy

--Press recording studio - this is the best place to utter a sound for news happening all around the world, and do live broadcast for various matches and/or games.

--Variety Studio - it’s a variety of cooking competition. Different judges have different tastes. Can you satisfy them all?

--Streets - Let’s get on the streets for random interviews and collect more data for the program.

--Give full play to children’s creativity
--Tens of billions of customized modes
--No third-party advertising
--No time limit or score ranking list

contact us:support@xihegame.com\",\n \"scoreText\": \"3.7\",\n \"score\": 3.716263,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.miga.mytvshows\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mytvshows/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mytvshows/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mytvshows/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mytvshows/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Dogo — Puppy and Dog Training\",\n \"appId\": \"app.dogo.com.dogo_android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/app.dogo.com.dogo_android\",\n \"icon\": \"https://play-lh.googleusercontent.com/EENcSXVu3Gp_7by6yKaqAmy_A_88bzEtaQ56OnYeFrZZQkq7vdiT-KQRlaSqXqu8Wd8\",\n \"developer\": {\n \"devId\": \"Dogo\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Dogo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Dogo App is a positive dog training app with more than 4.000.000 parents and their 5.000.000 happy dogs.

Dogo helps dog parents to train their dogs at home and build a stronger relationship, and you will have tools such as dog clicker & puppy whistle to support the puppy & dog training.

Dogo is revolutionizing puppy and dog training. The app offers professionally tailored programs for dog parents that are curated by experienced dog trainers and veterinarians. Users can also exchange their experiences with other dog parents and share videos of their pets. In addition, your smart pet will learn obedience with our Dog Clicker!

WITH DOGO APP YOU CAN
★ Choose what to teach your pup from the library of +100 dog tricks with video instructions.
★ Ask help & talk with real dog trainers professionals.
★ Send a training video to the Dogo trainer and get personal feedback on your dog’s performance.
★ Use our built-in dog clicker or puppy whistle to mark a behavior, the precise moment for which your doggo is rewarded, and reduce puppy training time.
★ Read our knowledge-based articles about dog obedience training, puppy behavior, nutrition, and health.
★ Pass personalized training programs for your puppy.

WHY USE DOGO APP?
★ Train a dog or puppy: teach important skills with the dog clicker.
★ Solve behavior issues: say goodbye to barking, chewing, biting, etc.
★ Try +100 guided dog training courses, tricks, commands, games & exercises.
★ Watch step-by-step video instructions for every training exercise.
★ Use daily personalized training recommendations.
★ Set reminders for your pup's potty and training schedules.
★ Track & monitor your pup's training progress.
★ Strengthen your friendship. Bond with your best friend.
★ Easy to use Dog Clicker & Puppy Whistle.
★ Dog health reminders - Dogo informs you about your dog's health and upcoming vaccinations and grooming appointments. All in one place with the dog medication reminder!

ABOUT Dogo App
Dogo App is a training app for dog parents. It includes all the necessary commands like a dog clicker, different sounds, and the possibility to create an individual schedule for your pet.

We have multiple training programs to choose from (Puppy Program, Basic Obedience, Impulse Control, Little Helper, Pleasant Walks, Potty Training, Puppy Bites, Stay Active, Strengthen Your Friendship, and more). In addition, dog parents can access +100 exclusive guided videos for all skills and behaviors (leash training, sitting, come, down, stay, puppy potty training, welcoming a newly adopted pet, puppy games, house training, stopping puppy biting, calm around other dogs, staying on a place, high-five, etc.), learn tricks, play games and enjoy the dog life with your pup.

All you need to socialize, train, and bond with your dog is now on one app.

TALK TO US
We will do our best to make your Dogo experience as pleasant as possible. If you need any help, don't hesitate to get in touch with our customer service at support@dogo.app.

DOGO SUBSCRIPTION

You can try Dogo for 7 days with a free trial. After the free trial period ends, you will need to subscribe to Dogo.

You can subscribe to Dogo by choosing from the following plans:

– 1 month

– 12 months

The subscription automatically renews unless auto-renewal is turned off at least 24 hours before the end of the current period.

You can also find us on:
Web: https://dogo.app/
Facebook: facebook.com/dogoTrain/
Instagram: instagram.com/dogoapp
TikTok: tiktok.com/@dogoapp

Terms & Privacy
https://dogo.app/terms-of-service/
https://dogo.app/privacy/\",\n \"scoreText\": \"4.5\",\n \"score\": 4.4900093,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=app.dogo.com.dogo_android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/app.dogo.com.dogo_android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/app.dogo.com.dogo_android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/app.dogo.com.dogo_android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/app.dogo.com.dogo_android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Al Quran MP3 - القرآن الكريم\",\n \"appId\": \"com.islamicworld.qurankareem\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.islamicworld.qurankareem\",\n \"icon\": \"https://play-lh.googleusercontent.com/-uCh3_Ey8iOq_011eoUIGkVnKTDtLpIm9s9XWchrJ-8-F9eluIzG740DscHmD90Z6OGp\",\n \"developer\": {\n \"devId\": \"Mobotech.mobo\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Mobotech.mobo\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Read & Listen Quran e Kareem (القرآن الكريم) with Translation in All Languages!

Quran e Kareem with Translation in English, Urdu, Malay, Indonesian, French, Italian, Bangali, Chinese, Persian, Dutch, Persian, Turkish, Spanish, Hindi, German, Japanese, Korean, Portuguese, Russian, & Swedish.

Quran Kareem MP3 is latest Android App, which features the entire Quran e Kareem with translation, transliteration, and audio recitation (mp3 tilawat) of each chapter surah by surah and ayah by ayah of the Holy Quran. Here are the features of Quran Kareem MP3 app:

1 – Quran Translations in 19 Languages. This mp3 Quran Al Kareem application is available in 19 popular languages. So besides listening the Quran e Kareem in MP3, you can read it in English, Urdu, Malay (Quran Bahasa Melayu), Indonesian (Terjemahan Al Quran Bahasa Indonesia), , Italian, Bangali (Quran Bangla) , Chinese, Persian, Dutch, Persian, Turkish, Spanish (Corán en Español), Hindi, German, Japanese, Korean, Portuguese, Russian, & Swedish. You can read:
-\\tMP3 Quran with translation in English
-\\tMP3 Quran with translation in Urdu
-\\tMP3 Quran with translation in Malay ( Malaysian Language)
-\\tMP3 Quran with translation in Indonesia (Indonesia Language)
-\\tMP3 Quran with translation in French (Coran en Français)
-\\tMP3 Quran with translation in Italian
-\\tMP3 Quran with translation in Bengali (Quran Bangla)
-\\tMP3 Quran with Translation in Chinese
-\\tMP3 Quran with translation in Persian
-\\tMP3 Quran with translation in Dutch
-\\tMP3 Quran with Translation in Turkish
-\\tMP3 Quran with translation in Spanish (Corán en Español)
-\\tMP3 Quran with Translation in Hindi
-\\tMP3 Quran with Translation in German
-\\tMP3 Quran with Translation in Japanese
-\\tMP3 Quran with translation in Korean
-\\tMP3 Quran with translation in Portuguese
-\\tMP3 Quran with translation in Russian
-\\tMP3 Quran with translation in Swedish

In addition, you can read Quran in Further Quran English Translation is given in 6 Different versions i.e. Quran International English Translation, Quran English Daryabandi, Quran English Maududi, Quran English Pickthal, Quran English Shakir, and Quran English Yousaf Ali translation..

2 - Audio Recitation - You can listen audio recitation of complete Quran in voice of Qari Al Sudais, Qari Mishari Rashid Alafsay, and Qari Abdul Basid Abdus Samad

3 – Video Quran Majeed – Besides the simple text, there is also option to listen and view the full Quran recitation with Audio Urdu Translation. The voice and reciter in Video Quran is Qari Syed Sadaqat Husain. Listen that heart trembling recitation of Quran e Kareem.


4 – Transliteration – Transliteration enables you to read Quran Pak in Arabic by simply its Transliteration in English.

5 - Settings - Settings tab enables you to customize application according to your choice in which you can change font style and size. In setting, you can also change the Reciter among three popular Qaris of World.

This is a beautiful Quran with Translation and all of you are requested to install and share the Message of Quran whenever you receive Notification. Jaza k Allah and spread the word of Allah especially Ayah oh the day\",\n \"scoreText\": \"4.5\",\n \"score\": 4.54,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.islamicworld.qurankareem\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.islamicworld.qurankareem/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.islamicworld.qurankareem/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.islamicworld.qurankareem/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.islamicworld.qurankareem/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Miga Town: My Apartment\",\n \"appId\": \"com.miga.myapartment\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myapartment\",\n \"icon\": \"https://play-lh.googleusercontent.com/seAZmBfhnmDJBTFBCUfIcRyH-LOAQG0XPHNG0QcOFfJN3PxDBVEXIgILNnKXZnbXew\",\n \"developer\": {\n \"devId\": \"XiHe Digital (GuangZhou) Technology Co., Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/XiHe%20Digital%20(GuangZhou)%20Technology%20Co.%2C%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"In this new community, you are able to visit each and every one of your neighbors and friends.

It's an intriguing place where you can decorate your new house at any time, and choose household supplies of the most suitable styles and sizes in the household stores downstairs. MOVE INTO YOUR NEW APARTMENT

More enjoyable scenes and customized gameplay for you to create a better story!

About MIGA KIDS

MIGA KIDS provides child games featuring digital dollhouses for children all over the world. We insist on the idea of expressing ourselves and holding on to our original aspiration, and endeavor to produce exhilarating games during the learning of game design. Moreover, we seek to produce value beyond games in the future by virtues of more experience.

We have created toys that could not possibly exist in our childhood.

Please visit www.miga-kids.com to learn more information about us.

We will be more than happy to receive your opinion and advice, please mail to
support@xihegame.com\",\n \"scoreText\": \"3.4\",\n \"score\": 3.4490292,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.miga.myapartment\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myapartment/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myapartment/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myapartment/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myapartment/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Plantum - Plant Identifier\",\n \"appId\": \"plant.identification.flower.tree.leaf.identifier.identify.cat.dog.breed.nature\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/plant.identification.flower.tree.leaf.identifier.identify.cat.dog.breed.nature\",\n \"icon\": \"https://play-lh.googleusercontent.com/YxAdHAx1O159pb1mxb-iuzR8fQ6FnUJGKDXbRC25uJbRDd-3O1tQseIpBhWHJEmJfZ4\",\n \"developer\": {\n \"devId\": \"AIBY Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/AIBY%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Recognize plants with a tap of your finger! Learn more about flowers!

Want to become a professional gardener? Do you ever see a flower and wonder what it is? Would you like to have a personal botany expert on call when needed? Here comes your plant identifier!

►HOW TO USE

● Simply focus your camera on the object of your interest and snap a picture.
● Get a description of every plant, mushroom, rock, and insect.
● Add the new green pet to My Plants.
● Set care reminders.
● Run a health check with our plant disease identifier.
● You can also upload photos from your phone.

Explore the wonderful world of nature with the smart plant identifier app!

►ADVANCED FEATURES

● Our plant identifier will help you recognize over 15,000 natural objects, with up to 95% accuracy — snap a leaf, flower, tree, mushroom, rock, mineral, or insect.
● Our recognition algorithm has been significantly improved for you to get the most precise plant identification ever!
● Name search — find out species easily by entering their names.
● Filters — discover the greenery that suits you best.
● Enjoy a clear and beautiful interface.

►PLANT CARE TIPS

Get exhaustive information on how much water, light, and fertilizer your plant needs to stay healthy. With Plantum, you'll have all your questions answered — everything you need to know about plant care is right here in the app (and a bit more).

►CARE REMINDERS

Don’t keep all care recommendations in your head at once; it will end up badly, and you’ll forget something important. Set timely reminders for watering, misting, feeding, and rotating in the app — and see your green pets grow happily and healthily.

►DIAGNOSE A PLANT

You don’t need to be a garden and plant care expert to know what’s wrong with your plant. Take photos of the symptoms, check them in our plant disease identifier, and get a detailed description of the condition, as well as proper treatment and prevention recommendations.

►PROFESSIONAL PLANT CARE

With Plantum, you have everything you need to provide your garden with the best care in one place:
● Pot Meter — measure the volume of your pot and see if it fits your green pet.
● Light Meter — find out how much sun you can provide for your beauties.
● Water Calculator — estimate the optimal amount of moisture and watering frequency for your green pet.
● Weather Tracker — adjust your care routine based on the local weather conditions and be aware of the changes that can affect your outdoor crops.
● Vacation Mode — share your plant care schedule with your family or friends so they can look after your green pets while you're away.

►PLANT BLOG

Our app’s initial goal was to provide accurate flora and tree identification, and now we can do so much more! Apart from the extensive greenery database with information about different species, we offer plenty of entertaining and useful articles about flora as well as gardening and plant care tips.

Plantum is an excellent hobbyist tool with a striking mix of technology and nature. The magic of plant identification will reveal the secret of a tree by its leaf, help recognize all mysterious seedlings in your garden and save you from pulling a flower by mistake. And if you travel often, you can keep a record of all the flora you encounter on your trips.

Get Plantum, take advantage of plant identification, and start on the path to becoming a true nature expert today. Everything you need is one tap away!

Want to learn more about the app? Find detailed information at https://myplantum.com/.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.30009,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=plant.identification.flower.tree.leaf.identifier.identify.cat.dog.breed.nature\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/plant.identification.flower.tree.leaf.identifier.identify.cat.dog.breed.nature/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/plant.identification.flower.tree.leaf.identifier.identify.cat.dog.breed.nature/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/plant.identification.flower.tree.leaf.identifier.identify.cat.dog.breed.nature/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/plant.identification.flower.tree.leaf.identifier.identify.cat.dog.breed.nature/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"ScanSolve - AI Homework Helper\",\n \"appId\": \"com.cchukwuma.scansolve\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.cchukwuma.scansolve\",\n \"icon\": \"https://play-lh.googleusercontent.com/oYeW52iNe3KwOdB379lz10cInJR4wMcbfv3lMLMi69sg43AolJrqG5CTBnqrN6-NYHk\",\n \"developer\": {\n \"devId\": \"OdinStudio\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/OdinStudio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Solve any problem with a snap! Our innovative app lets you snap a picture of any question, from tricky puzzles to tough quizzes, and get the correct answer instantly. But that's not all – our app also provides detailed explanations for each answer, so you can fully understand the solution. With our cutting-edge AI technology, you'll never struggle with a problem again.

Contact us directly at odinakastudio@gmail.com\",\n \"scoreText\": \"3.6\",\n \"score\": 3.594203,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.cchukwuma.scansolve\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.cchukwuma.scansolve/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.cchukwuma.scansolve/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.cchukwuma.scansolve/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.cchukwuma.scansolve/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"AnkiDroid Flashcards\",\n \"appId\": \"com.ichi2.anki\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.ichi2.anki\",\n \"icon\": \"https://play-lh.googleusercontent.com/4aLlAwUKGg5Keo8zz-pPI1QS9KnjSsa3vKX2NINqq5Fv1jfPK3bl6ghLaZ371OcH9A\",\n \"developer\": {\n \"devId\": \"AnkiDroid Open Source Team\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/AnkiDroid%20Open%20Source%20Team\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Memorize anything with AnkiDroid!

AnkiDroid lets you learn flashcards very efficiently by showing them just before you would forget. It is fully compatible with the spaced repetition software Anki (including synchronization), which is available for Windows/Mac/Linux/ChromeOS/iOS.

Study all sorts of things wherever and whenever you want. Make good use of idle times on bus trips, in supermarket queues or any other waiting situation!

Create your own flashcard decks or download free decks compiled for many languages and topics (thousands available).

Add material through the desktop application Anki or directly through Ankidroid. The application even supports adding material automatically from a dictionary!

Need support? https://docs.ankidroid.org/help.html (much preferred over comments in reviews here :-) )

★ Key features:
• supported flashcard contents: text, images, sounds, mathjax
• spaced repetition (supermemo 2 algorithm)
• text-to-speech integration
• thousands of premade decks
• progress widget
• detailed statistics
• syncing with AnkiWeb
• open source

★ Additional features:
• write answers (optional)
• whiteboard
• card editor/adder
• card browser
• tablet layout
• import existing collection files (via Anki Desktop)
• add cards by intent from other applications like dictionaries
• custom font support
• full backup system
• navigation by swipe, tap, shake
• fully customisable
• dynamic deck handling
• dark mode
• 100+ localisations!
• All previous AnkiDroid versions can be downloaded from the website\",\n \"scoreText\": \"4.7\",\n \"score\": 4.682226,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ichi2.anki\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.ichi2.anki/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.ichi2.anki/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.ichi2.anki/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.ichi2.anki/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Math Scanner - Math Solutions\",\n \"appId\": \"com.math.photo.scanner.equation.formula.calculator\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.math.photo.scanner.equation.formula.calculator\",\n \"icon\": \"https://play-lh.googleusercontent.com/rcR2OJ1edLyd10psGHkHy00_dkHyeq4THArKCpJ8DxY5JRG2DVglnHPT68zo51IJrYo\",\n \"developer\": {\n \"devId\": \"Pic Frame Photo Collage Maker & Picture Editor\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Pic%20Frame%20Photo%20Collage%20Maker%20%26%20Picture%20Editor\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Math Scanner by Photo - Solve My Math Problem Maths will give you the answer to any math question by simply taking a photo of it. With millions of users and many problems solved, math way is the world's smartest math calculator app. With a smart calculator, you just need to enter the formula and the equation calculator will give you answers automatically. Simply point your camera toward a problem and photo calculator will magically show the result with detailed step-by-step instructions. The calculator will give you the answer to any math question by simply taking a photo of it. The calculator is a great way to check your homework, study and learn math. Supports arithmetic, integers, fractions, decimal numbers, roots, algebraic expressions, linear equations/inequalities, quadratic equations/inequalities, absolute equations/inequalities, systems of equations, logarithms, trigonometry, exponential and logarithmic functions, derivatives and integrals, graphs and many more.

Features of Math Scanner - Solve My Math Problem:

# Calculate math problems with the camera.
# Math scanner with no internet required.
# Step by step solutions for easy learning.
# Smart calculator with graphing and tables.
# Can solve simple to the advanced math question.
# Addition, subtraction, multiplication, division, algebra, percentage, EMI, interest, etc can be solved.
# Click a photo of any mathematical problem & solve that problem for you.

Math scanner - solve my math problem you can scan the problems and get quick and accurate math answers. This solve math by camera app will assist you with all the problems when you are doing homework. Photo calculator solver is a valuable tool for a parent helping with his kid 's math homework and attempting to remember middle-school algebra, photo calculator, take a photo to solve math. Our problem solver is designed to help you with your math homework. In addition to homework answers, we also show you how to get there step-by-step. Let me help you with your apps math homework today.

Solve math by camera Calculator is a useful and easy to use a calculator with a basic calculator, scientific calculator and also an equation solver and a great maths homework solver which can solve maths problems more efficiently, quickly and accurately by the camera. This is cymath answers for math help with math solver online to photo math solver. How to solve math problems is photomath apps to solve my problem solving app. That is answer my problems with math solution app or math problems with answers. A photomath android or math answer app to solve any math equation solver.

Math scanner - solve my math problem the photomath camera calculator is solver camera about math solving website or mathematics solver app for homework answers app. You can mathematics resolver and calculator for mathway offline. That is my script calculator to scan problems by photo or word problem solver app. This is calculator vault download algebra calculator photo with a financial calculator app. Will give you currency converter or currency calculator for money converter. This is BMI calculator with maths questions answering app to google maths solver in math question solver.

Camera calculator solver can simply snap photo calculator and solver instantly delivers the photo calculator answers for math solution while also providing step by step solution. You can mathematics apps and math homework answers to solve the sum app. A photomath with solution offline with photo math trigonometry calculator for math quiz games. For math education and math word problem solver with math photo scanner to math tutor app. Any other problems such as calculus, equation systems, complex math, graphing, table of values, and more solutions.

Download and give us a review of Math Scanner - Solve My Math Problem.\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9398496,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.math.photo.scanner.equation.formula.calculator\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.math.photo.scanner.equation.formula.calculator/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.math.photo.scanner.equation.formula.calculator/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.math.photo.scanner.equation.formula.calculator/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.math.photo.scanner.equation.formula.calculator/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Sweet Home Stories - My family\",\n \"appId\": \"com.playtoddlers.sweethomestories.free\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.playtoddlers.sweethomestories.free\",\n \"icon\": \"https://play-lh.googleusercontent.com/Edj8jBfBKPQVRRoLvMaYxXFiFFYZ3nzIKX4KdrCH4V-CG6TV2DVWgYC8ToRXL81gG5Q\",\n \"developer\": {\n \"devId\": \"SUBARA\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/SUBARA\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Wake up and get ready! There are lots of things to do in Sweet Home Stories! A fun and safe educational doll house game for kids, about daily life in a household, where everyone is welcomed and the only rule is to use your imagination to create amazing stories with your new family.
 
On this cozy playhouse, you are in charge of everything: hanging laundry, mopping floors, or making breakfast with this adorable family. With 7 different rooms, including dozens of different activities and hundreds of items available to explore and play, there's no time to be bored.
 
Designed for children aged 2-8, Sweet Home Stories will foster their imagination and creativity while learning and reinforcing daily routines and improving their language skills through story creation.
 
 
CREATE YOUR OWN FAMILY HOUSE STORIES!
 
Join a family of 6 lovely characters in their day to day life and create your own home stories. Play, explore and have fun doing funny chores in this cozy house: Make tasty meals, diaper the little baby, dress the kids, brush their teeth in the morning, or read to them before sleeping at night.
 
 
DISCOVER AND PLAY WITH EVERYTHING!
 
There is a whole new adventure every time you play with this playhouse. With tons of toys, different equipment and thousands of possible interactions in 7 different rooms, full of surprises and chores to do. Remember, there are no rules, so don't be afraid to interact with everything you see!
 
 
REINFORCE DAILY ROUTINES
 
Parents can play Sweet Home Stories together with kids, to have some fun and healthy laughter with them or helping them to learn new routines and vocabulary. Do you want to encourage them to tidy up their rooms? Suggest them to it in the game, and then apply it to their daily life. Brushing their teeth every day? Remind them to it in the game when the characters wake up. While playing, kids can learn basic home rules and explore daily routines without noticing.
 
 
 
KEY FEATURES:

· 7 rooms, representing different areas of a household: A living room, a kitchen, the children's room, the parents' room, a bathroom, the front yard and the backyard.
· Every room is filled with items you'd expect to find in a real house.
· A happy family with 6 different characters: A mom, a dad, two kids, a little baby, and their lovely cat.
· Hundreds of items available for explore and play.
· Dozens every day chores: Preparing meals, putting kids to sleep, clothing, growing veggies in the garden, possibilities are truly unlimited.
· Without rules and goals, just fun to create your own stories.
· Set the time of the day at any moment to represent different routines, from waking up to bedtime.
· Kid safe environment for children aged 2 to 8, no third-party ads, pay once play forever.
 
Specifically designed to be played by children from 2 years of age, but detailed enough to captivate and amuse children up to 8 years. Sweet Home Stories will foster their imagination and creativity and will keep them fascinated for hours for less than the price of a cup of coffee.
 
The free trial includes 3 rooms so you can test the endless possibilities of this game. Once you are sure, you can buy the full version through a single purchase within the application, which will unlock the 7 rooms forever.


About PlayToddlers
 
PlayToddlers’ games encompass different areas of toddler’s personal growth and have been specifically designed to be used by babies and kids, with a simple and attractive interface that allows them to use the application by themselves, improving their development and self-esteem.\",\n \"scoreText\": \"3.5\",\n \"score\": 3.5391924,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.playtoddlers.sweethomestories.free\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.playtoddlers.sweethomestories.free/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.playtoddlers.sweethomestories.free/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.playtoddlers.sweethomestories.free/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.playtoddlers.sweethomestories.free/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Brightspace Pulse\",\n \"appId\": \"com.d2l.brightspace.student.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.d2l.brightspace.student.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/c0pmpsPg0vXWp9zH8wLF4VoujteCnZWOE1hvE9xPXDo7s0r0U3fDlHK-YqeSJeTofQ\",\n \"developer\": {\n \"devId\": \"D2L Corporation\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/D2L%20Corporation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Help instructors and learners stay connected anytime, anywhere, with the Brightspace Pulse App. The app allows you to visualize upcoming activities, manage your time, and stay on top of coursework. 
-See all important dates and deadlines for each of your courses, plus add your own 
-Stay up to date about course-related updates such as Announcements, Activity Feed, Grades, Quizzes, and Assignments, all through push notifications 
- Review course content off-line without a data connection, including video and audio content 
- Participate in Activity Feed discussions 
-Seamlessly log in to D2L Brightspace via browser to complete additional tasks \",\n \"scoreText\": \"3.9\",\n \"score\": 3.8553193,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.d2l.brightspace.student.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.d2l.brightspace.student.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.d2l.brightspace.student.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.d2l.brightspace.student.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.d2l.brightspace.student.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Memrise: speak a new language\",\n \"appId\": \"com.memrise.android.memrisecompanion\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.memrise.android.memrisecompanion\",\n \"icon\": \"https://play-lh.googleusercontent.com/eooMtOtVjJzq7fCS4G--Iy3jY8QvFEzdsoWMcO5Z_mJOilep2Wu_aZLJjTP9SOF_9jU\",\n \"developer\": {\n \"devId\": \"Memrise\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Memrise\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Unlike other language learning apps, Memrise is built around mastering specific conversations.

1) Set your level and import your streak from other apps.
2) Pick which conversations you want to master
3) Learn practical vocab and phrases
4) Listen to native speakers, get used to their accents and tempo
5) Practice speaking with your AI tutor, MemBot so you’re confident when you do the real thing.

Never get stuck learning a language but not knowing what to say.

- Helping 65 million learners speak confidently
- 190,00 4.6 star ratings
- Featured in BBC World Service, Forbes, The Verge, The Financial Times, Android Authority and more

Example conversations you’ll actually have:
Beginner: Chatting about your holiday with your friends
Beginner: Chatting with friends while studying abroad
Intermediate: Order at a restaurant
Intermediate: Greeting the receptionist …and hundreds more

Why Memrise?

Speak with our AI language tutor
Get unlimited speaking practice (and feedback) from MemBot, our AI language tutor. Build up confidence in private before speaking with natives for real.

Hear how the locals actually speak
Watch 30,000+ conversations between real natives, so you can confidently understand their accents and listen to words and phrases they actually use.

Learn words relevant to your life
Pick conversations that reflect your interests so you can show off your personality.

--

What other learners are saying

- Voloúre ★★★★★ "Best app for getting experience listening and interacting with native speakers. Listening to conversations by native speakers is so much better for actually being able to understand people"

- Beth Williams ★★★★★ "My Fiancé is Portuguese so I wanted to learn their language to communicate easily. Over the year I can now string small sentences together. I don't think I could have done it without the help of Memrise."

Serious about language learning? Build your confidence faster with Memrise Pro

Memrise Pro ✓ Unlock all vocab lessons ✓ 30,000 native speaker videos ✓ Unlimited speaking practice ✓ Ad free

Compare with our Free Plan - Limited vocab lessons - Limited native speaker videos (2 per day) - Limited speaking practice (2 conversations per day) ✕ Not Ad free

Download our app for free and start learning with Memrise today: Learn French 🇫🇷, Spanish (Spain) 🇪🇸, Spanish (Mexico) 🇲🇽, German 🇩🇪, Korean 🇰🇷, Japanese 🇯🇵, Japanese (no script) 🇯🇵, Turkish 🇹🇷, Italian 🇮🇹, Chinese (simplified) 🇨🇳, Dutch 🇳🇱, Portuguese (Portugal) 🇵🇹, Portuguese (Brazil) 🇧🇷, Russian 🇷🇺, Swedish 🇸🇪, Norwegian 🇳🇴, Polish 🇵🇱, Danish 🇩🇰, Slovenian 🇸🇮, Icelandic 🇮🇸, Yoruba 🇳🇬, Mongolian 🇲🇳, English (UK) 🇬🇧and English (US)!

------
*PLEASE READ: A Memrise Pro subscription is required in order to access all our learning features. These features may vary depending on your device's language and language pair. Once purchased, subscriptions will automatically renew unless cancelled before the end of the current payment period. Subscriptions can be managed or cancelled in your Google Play Store account. In-app Permissions – To enable some of the features of the Memrise app we may need to ask for your permission. For example, we'll ask to access your microphone if you'd like to practice your pronunciation skills. You can change permissions at any time in your settings.

Privacy Policy: https://www.memrise.com/privacy/
Terms of Use: https://www.memrise.com/terms/safa
\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5690722,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.memrise.android.memrisecompanion\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.memrise.android.memrisecompanion/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.memrise.android.memrisecompanion/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.memrise.android.memrisecompanion/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.memrise.android.memrisecompanion/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Question.AI - AI Math Solver\",\n \"appId\": \"com.qianfan.aihomework\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.qianfan.aihomework\",\n \"icon\": \"https://play-lh.googleusercontent.com/f4_fW12KAPPg_WYCzMbGUPb5cEHWVb_6W-AbRs10hAl7Ecg5jMK9bNtM46sklWYb_vU\",\n \"developer\": {\n \"devId\": \"D3 DIMENSION TECHNOLOGY\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/D3%20DIMENSION%20TECHNOLOGY\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Are you tired of struggling with math problems and study questions? QuestionAI is here to help! With just a simple snap of your camera, you can effortlessly search for answers to your study questions. Our AI technology allows you to scan any problem and receive accurate answers in no time.

Why do countless students choose QuestionAI as their trusted learning companion?

【Easy to Use】
Simply take a photo of your problem, QuestionAI will scan the image and offer you solutions step-by-step. It's a quick and effortless way to find answers to your study questions, especially math. It's like having a knowledgeable tutor right at your fingertips. You can directly ask about any unclear parts in the answer. Whether it's a complex math equation, a challenging theory, or a confusing concept, our AI Learning Assistant is ready to provide you with instant answers and expert guidance.

【Support for All Subjects & Grades】
QuestionAI is not limited to math alone. We support for a wide range of subjects. From math and history to literature and foreign languages, our app is a one-stop solution for all your academic needs. QuestionAI is suitable for students of all levels. Whether you're in middle school, high school, or pursuing higher education, QuestionAI can adapt to your needs and support your study.

【High Quality of Answers】
What sets QuestionAI apart is its unparalleled accuracy and speed. Our advanced AI technology ensures that you receive precise solutions rapidly. You can trust our app to deliver reliable information whenever you need it. Experience the speed, accuracy, and convenience of QuestionAI as it helps you excel in your study.

【Free of Charge】
Not only is our AI learning tool accessible at all times, but it also comes with no limitations on usage, complete free of charge. Whether you're burning the midnight oil or need a quick study session during the weekend, our tool is available 24/7 to cater to your learning needs. Study at your own pace, explore various subjects, and enhance your knowledge without worrying about usage limits or hidden fees.
【AI-powered assistance for effortless writing 】
With our innovative technology, you no longer have to worry about writer's block or struggling to articulate your thoughts. QuestionAI will analyzes your writing prompts, provides intelligent suggestions, and helps you craft compelling and well-structured content. It's like having a writing assistant that understands your voice and helps you refine it. It's a game-changer for busy individuals who need to meet deadlines without compromising on quality.

So why spend countless hours grappling with complex math problems when you can have instant access to solutions? Say goodbye to endless searching and welcome a new era of instant learning. Download QuestionAI today and unlock a world of knowledge with a simple snap. It's time to take your academic journey to new heights with our powerful, intuitive, and indispensable learning app.

Contact us:
Email:feedback@questionai.net
Discord:bit.ly/QuestionAI_DC
Website: www.questionai.com
Instagram:@Question.ai.official
YouTube:@QuestionAI-Official
Facebook:bit.ly/QuestionAI_FB\",\n \"scoreText\": \"4.7\",\n \"score\": 4.747573,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.qianfan.aihomework\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.qianfan.aihomework/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.qianfan.aihomework/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.qianfan.aihomework/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.qianfan.aihomework/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Learn Digital Marketing\",\n \"appId\": \"digitalmarketing.digital.marketing.dm.ads.learn.socialmedia.onlinemarketing\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/digitalmarketing.digital.marketing.dm.ads.learn.socialmedia.onlinemarketing\",\n \"icon\": \"https://play-lh.googleusercontent.com/ECndPthlBc3Go5DC6zcDLedPHjHfx13zOW6Enl8sTqpX_sgUfqTyyk45OVWjPVgTvtA\",\n \"developer\": {\n \"devId\": \"Coding and Programming\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Coding%20and%20Programming\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Do you want to build a career in Digital Marketing or want to learn Growth Hacking?

On this e-learning app for Digital Marketing, you have access to the most up to date tutorials and lessons on Digital Marketing. Whether you are a beginner at Digital Marketing or at advanced stages of Digital Marketing, you will love online learning with the Digital Marketing app.

Why learn from "Learn Digital Marketing app?
🔔 Courses reviewed by developer experts from Google
🔔 Built by a team of certified Digital marketing professionals
🔔 Fun, bite-sized interactive lessons
🔔 Interactive evaluations while learning
🔔 Voice instructions for learning
🔔 Course Completion Certificate
🔔 Free courses included
🔔 Store your progress - learn from mobile or using our web app
🔔 Most advanced and in-demand topics on Online Marketing


Included Courses
📖 Basics of Digital Marketing & Online Marketing
📖 Growth Hacking
📖 Google Ads Measurement
📖 Google Shopping Ads
📖 Python
📖 Google Video Ads
📖 Social Media Marketing
📖 Search Ads for Google platforms

Whether you want to become a certified digital marketer or want to become a growth hacker or want to learn social media marketing, this app by "Programming Hub" is the only app you'll ever need.

On the app, you will be able to take different courses on digital marketing & online marketing for free. You will know who the course is meant for and how much salaries you can expect on completing the course.

You will learn how to build and grow an online business, whether a blogging business or an online product business. You will learn about the importance of branding on social media channels like Facebook, Twitter & Instagram and the need for SEO to help your website with organic search ranking on Search engines.

All in all - The app covers everything that you'll ever need to become a digital marketing guru.


Support Us
The app needs your support to get going. Please email us with your feedback. If you like our app, please rate us on the play store.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.7610064,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=digitalmarketing.digital.marketing.dm.ads.learn.socialmedia.onlinemarketing\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/digitalmarketing.digital.marketing.dm.ads.learn.socialmedia.onlinemarketing/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/digitalmarketing.digital.marketing.dm.ads.learn.socialmedia.onlinemarketing/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/digitalmarketing.digital.marketing.dm.ads.learn.socialmedia.onlinemarketing/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/digitalmarketing.digital.marketing.dm.ads.learn.socialmedia.onlinemarketing/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Desmos Graphing Calculator\",\n \"appId\": \"com.desmos.calculator\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.desmos.calculator\",\n \"icon\": \"https://play-lh.googleusercontent.com/AcmdHoyslp6AnrSMvDMg1o3tmhIuy0wbd8mN-usvDzhO4hiTHMLIavweYOPKmlpglrY\",\n \"developer\": {\n \"devId\": \"Desmos Inc\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Desmos%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"At Desmos, we imagine a world of universal math literacy and envision a world where math is accessible and enjoyable for all students. We believe the key is learning by doing.

To achieve this vision, we’ve started by building the next generation of the graphing calculator. Using our powerful and blazingly-fast math engine, the calculator can instantly plot any equation, from lines and parabolas up through derivatives and Fourier series. Sliders make it a breeze to demonstrate function transformations. It's intuitive, beautiful math. And best of all: it's completely free.

Features:

Graphing: Plot polar, cartesian, or parametric graphs. There’s no limit to how many expressions you can graph at one time - and you don’t even need to enter expressions in y= form!

Sliders: Adjust values interactively to build intuition, or animate any parameter to visualize its effect on the graph

Tables: Input and plot data, or create an input-output table for any function

Statistics: Find best-fit lines, parabolas, and more.

Zooming: Scale the axes independently or at the same time with the pinch of two fingers, or edit the window size manually to get the perfect window.

Points of Interest: Touch a curve to show maximums, minimums, and points of intersection. Tap the gray points of interest to see their coordinates. Hold and drag along a curve to see the coordinates change under your finger.

Scientific Calculator: Just type in any equation you want to solve and Desmos will show you the answer. It can handle square roots, logs, absolute value, and more.

Inequalities: Plot cartesian and polar inequalities.

Offline: No internet access required.

Visit www.desmos.com to learn more and to see the free online version of our calculator.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.477679,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.desmos.calculator\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.desmos.calculator/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.desmos.calculator/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.desmos.calculator/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.desmos.calculator/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Bible App for Kids\",\n \"appId\": \"com.bible.kids\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.bible.kids\",\n \"icon\": \"https://play-lh.googleusercontent.com/DaP712q_P-ayHZ5MpqmzvCOwxhGAsTXI7WjcMwHZyqJadtDuCnWS6TlnZTYRI-7VBJ0\",\n \"developer\": {\n \"devId\": \"Life.Church\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Life.Church\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Bible App for Kids is the newest member of the YouVersion family of apps. Available now for Android smartphones and tablets, the Bible App for Kids is always completely free!

Through interactive adventures and beautiful animations, kids explore the big stories of the Bible. The Bible App for Kids is a delight-filled experience designed to encourage kids to return again and again. It’s the beginning of a lifelong love of God’s Word.

The Bible App for Kids features:
* Easy, kid-friendly navigation
* Colorful illustrations and touch-activated animations
* Engaging, interactive content that brings the Bible to life
* Fun facts and activities designed to help kids remember what they learn
* Special challenges that let kids earn rewards

From YouVersion in partnership with OneHope.

YOUR PRIVACY ON ANDROID
* The Bible App for Kids requests read/write access to your SD card because that's where the app stores the stories you choose to download to your device.
* The Bible App requests access to a device's account list to aid in sending Push Notifications to older versions of Android.
*Location: Our analytics package uses approximate location to help us learn where our app is popular. The information is only used on an aggregate level, not on an individual level.
* We do not sell any personal information you provide us, nor will we share it without your consent. You can read our privacy policy at http://youversion.com/privacy.

CONNECT WITH YOUVERSION
* Like us on Facebook: http://facebook.com/youversion
* Follow us on Twitter: http://twitter.com/youversion
* Catch up on the latest on our blog: http://blog.youversion.com
* Sunday School Curriculum, Church Resources, and activities: https://bibleappforkids.com/

The Bible App for Kids is available in Afrikaans, Arabic, Belarusian, Bengali, Bulgarian, Burmese, Chinese (Simplified, Traditional, Hong Kong), Czech, Danish, Dutch, English, English (UK), Estonian, Farsi, Finnish, French, Georgian, German, Greek, Hebrew, Hindi, Hungarian, Indonesian, Italian, Japanese, Kannada, Khmer, Korean, Lithuanian, Malay, Myanmar, Malayalam, Marathi, Mongolian, Nepali, Norwegian, Polish, Portuguese (Brazil), Portuguese (Portugal), Punjabi, Russian, Sinhala, Slovak, Spanish (Spain), Spanish-LA, Swahili, Swedish, Tamil, Telugu, Thai, Turkish, Ukrainian, Urdu-PK, Vietnamese, Zulu\",\n \"scoreText\": \"4.6\",\n \"score\": 4.5830436,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.bible.kids\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.bible.kids/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.bible.kids/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.bible.kids/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.bible.kids/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"All Languages Translator app\",\n \"appId\": \"com.freevoicetranslator.languagetranslate.speakandtranslate\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.freevoicetranslator.languagetranslate.speakandtranslate\",\n \"icon\": \"https://play-lh.googleusercontent.com/f6NKcKQDtCkF2DX2TGgN7mhtPKgQqItbxTTz0WOlkqn_6_IizdKZ7UXB6Aed77Wb30WD\",\n \"developer\": {\n \"devId\": \"Tool App Hub\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Tool%20App%20Hub\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Translate all languages app, access all features i.e. Speak and translate, photo translator etc. No need to learn a new language when you can translate. Download all language translator app & translate now.

Top features of translate all languages app:
- Advanced text translation algorithm
- Improved OCR Camera translator
- Super fast all language translate App
- Speak in your native language via voice translator
- Floating widget for chat translator
- State of the art object translator with dictionary app
- Text to speech with voice translate app
- Globally recognizable free language translator app
- Supports more than 100 real time languages
- Import images from gallery & translate

Picture translator app - All languages translate:

Offline language translation app - photo translator allows you to translate now any sentence, text or phrase into 100+ languages. All languages translator app convert text by typing, using your voice or scanning text with your camera. Speak and translate text, voice, speech, and words into multiple languages via chat translation.

Camera translation - Chat translator

Voice translator all languages turn your camera translate into ai translation tool & photo translation. Get an instant translation with ease using conversation translation. The translated text will appear directly over the original text in the image translation for easy comparison.

Image translator - Text translator

Translate all languages offline with camera translator. All language translator app offers to say goodbye to language barriers & hello to seamless communication with translate languages & photo translator. Translate now let you connect with people from all over the world.

Speak and translate - Object Translator:

Dictionary app is built with multiple features for learning. Voice translator all languages is best for travelers and visitors of the world. English to Spanish translation has now become quite easy with real time translation app can translate language with voice translation.

Translate to English - Chat translation:

Live translation helps you understand any languages with Translate all languages app. Audio to text translator can translate through multi conversation translator.

Voice translation - All language translator app:

Don’t worry if you have a slow internet connection. Our offline language translate feature even works without an internet connection. Chat translator is your ultimate language companion. With real-time advanced translation algorithm, Speak and translate app for android can connect with anyone, anywhere, in any language.

Voice translator app - Image translator:

With all languages translator App, you can simply scan anything and find its real name in any language with live translation. Dictionary app used to recognize with object translator instantly and translate now it into any language you want. Document translation app help those people who travel abroad or a new place. Camera translation & picture translator app enables you to travel anywhere in the world with confidence by keeping it in your phone.

Accessibility Service - All language translate app:

Camera translator - voice translator app is an accessibility service API to make, text translator - chat translation easier for users to speak and translate text in their native language. All language translator app free & photo translator neither requires users’ personal information nor breaches their private security.

Try translate all languages app & photo translation now!\",\n \"scoreText\": \"4.1\",\n \"score\": 4.0989013,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.freevoicetranslator.languagetranslate.speakandtranslate\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.freevoicetranslator.languagetranslate.speakandtranslate/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.freevoicetranslator.languagetranslate.speakandtranslate/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.freevoicetranslator.languagetranslate.speakandtranslate/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.freevoicetranslator.languagetranslate.speakandtranslate/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Montessori Preschool, kids 3-7\",\n \"appId\": \"com.edokicademy.montessoriacademy\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.edokicademy.montessoriacademy\",\n \"icon\": \"https://play-lh.googleusercontent.com/PTjNw4tAL7DbReHeligF82GyiKw2bIik7BNk2zha1nu0hUoe5Xl5QATBJfn2xt-Ga2Y\",\n \"developer\": {\n \"devId\": \"EDOKI ACADEMY\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/EDOKI%20ACADEMY\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Looking for an app for your child to whizz through PreK and Kindergarten? Montessori Preschool covers phonics, reading, writing, numbers, colors, shapes, nursery rhymes, coloring and even coding!

Designed by certified Montessori teachers with years of classroom experience, it is a fun child-centred app, perfect for children from 3 to 7.

Math
Our math curriculum covers learning to count, recognize numbers, trace them… from zero to 1 million. Introduction to addition and subtraction using Montessori materials are also available.

Early Literacy
From sounds to phonics to reading.
In a Montessori classroom, early literacy starts before learning to read. Children are exposed to sounds and train their ear to identify them before putting a name on a letter. In the Early Literacy class, children can start with fun sound games like “I spy” and move all the way to reading comprehension.

Logic and coding
The app also offer pre-coding and reasoning games.

Nursery Rhymes
Younger children love our latest additions: Wheels on the bus and Head, shoulders, knees & toes and now Old MacDonald sing alongs.

Shapes & Colors
A key element of preschool; learn the names of all the shapes and colors but in a fun, interactive way!

Nurse's station
Help the school nurse take care of the school's children and animals. Children have to recognize the patients' symptoms and give them the right treatment (problem solving and logic with a LOT of fun).

Arts & creativity
Our Arts class includes an introduction to colors (primary and secondary) as well as many drawing/coloring options and 4 games to learn the basics of music.

AR/3D
Children can play with the school's hamster and rabbit in Augmented Reality or 3D, depending on your device.

Practical Life
Because children this age love to reproduce everyday activities done by adults, Maria Montessori included a range of activities like dusting, taking care of plants, cleaning a mirror or washing clothes.

Chinese
Our cute Chinese classroom offers numbers, songs and a few words in Chinese.

Other languages available: Chinese (Traditional and simplified), Spanish and French

FEATURES:
- A comprehensive Montessori 3-7 years old environment to learn by doing
- Regular updates and new content to make the app forever captivating!
- An enchanting digital classroom to make learning fun and simple for children at every stage
- 10 broad areas of learning grounded in the fundamentals of Montessori: self-correction, autonomy, self-confidence and adaptability
- A fun “reward“ system for increased motivation
- Parents/teachers benefit from a tailor-made dashboard that tracks each child’s progress and suggests the next activity.

Whether you are a newcomer to the world of Montessori, or a seasoned student, Montessori Preschool is sure to take each learner on an enthralling journey!

Choose an option: monthly or yearly
• Account will be charged for renewal within 24-hours prior to the end of the current period; monthly or yearly.
• Subscriptions may be managed by the user and auto-renewal may be turned off by going to the user's Account Settings after purchase.
• Any unused portion of a free trial period, if offered, will be forfeited when the user purchases a subscription to that publication, where applicable.

PRIVACY
Read our Privacy Policies: https://www.edokiacademy.com/en/privacy-policy & our Terms of Use: https://www.edokiacademy.com/en/terms.

ABOUT US
Edoki Academy’s mission is to provide children with enjoyable early learning activities using the latest technologies. Our team members, many of whom are young parents or teachers, strive to produce tools that motivate and inspire children to learn, play, and progress.

Contact us: support@edokiacademy.com\",\n \"scoreText\": \"3.9\",\n \"score\": 3.94,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.edokicademy.montessoriacademy\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.edokicademy.montessoriacademy/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.edokicademy.montessoriacademy/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.edokicademy.montessoriacademy/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.edokicademy.montessoriacademy/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"TinyTap: Kids' Learning Games\",\n \"appId\": \"tinytap.kids.learning.games\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/tinytap.kids.learning.games\",\n \"icon\": \"https://play-lh.googleusercontent.com/qow-7EwyLCPMF7_L44Q4gOwhh5b4lwVibBQnmVXWx8tqOwXCI_qSdgGyIUStOHIAfAD_\",\n \"developer\": {\n \"devId\": \"TinyTap\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/TinyTap\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Tiny Tap app is for parents who want to turn their kid’s screen time into an independent learning experience. Join the millions of parents worldwide who use Tiny Tap as their favorite everyday kids’ learning tool.

*** 250,000 educational games for kids aged 2-8 ***

Worried about your kid's screen time?
Subscribe now to get unlimited access to:


TONS OF KIDS GAMES MADE BY TEACHERS
● 150,000+ interactive learning games
● Personalized game recommendations
● Practice key skills and subjects according to their age and needs
● An abundance of subjects


AD-FREE, SAFE SPACE FOR KIDS
● Curated content made by teachers, therapists, and educators worldwide
● Including games from Oxford University Press


KID-FRIENDLY NAVIGATION
● Encouraging independent play
● Giving you more time to get things done


PARENT’S DASHBOARD
● Track your kid’s progress and don’t miss out
● See how they do in reference to other kids in their age group

Start our free trial to let your kid reach new milestones while having fun! Cancel any time before the trial ends!**
Follow us on Instagram https://www.instagram.com/tinytapit/


SUBSCRIPTION DETAILS:
● Subscribe to TinyTap yearly plan and get a free trial!
● You can cancel anytime during the trial period – there is no cancellation fee.
● Payment will be charged to your Google Play Account at confirmation of purchase
● You can use the subscription on any device
● The subscription is automatically renewed unless auto-renew is turned off at least 24-hours before the end of the current period
● The account will be charged for renewal within 24-hours prior to the end of the current period, and identify the cost of the renewal
● Subscriptions may be managed by the user and automatic renewal may be turned off by going to the user's Google PlayStore Settings after purchase
● Cancellation will not go into effect until the end of the billing cycle
Privacy Policy: https://www.tinytap.com/site/privacy/
Terms & Conditions: https://www.tinytap.com/site/terms_and_conditions/\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6996098,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=tinytap.kids.learning.games\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/tinytap.kids.learning.games/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/tinytap.kids.learning.games/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/tinytap.kids.learning.games/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/tinytap.kids.learning.games/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Baby Shark World for Kids\",\n \"appId\": \"kr.co.smartstudy.bbsworld_android_googlemarket\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.bbsworld_android_googlemarket\",\n \"icon\": \"https://play-lh.googleusercontent.com/yLThBIM8eU-Z3AnAiTqajNMoNz1EDnDjYDRHEPqJFxUfY1jMRpKvFKc0-690tZVI4ak\",\n \"developer\": {\n \"devId\": \"The Pinkfong Company\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/The%20Pinkfong%20Company\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to YouTube star, Baby Shark's creative world of fun kids videos, games, songs, and activities!

Baby Shark World for Kids, special games & songs app forbaby, kids, preschoolers!
Baby Shark & Pinkfong invite kids to a fun world of 5,000+ songs, videos and learning games for kids!
Discover interesting & educational themes for kids on the Shark Family, Phonics and Numbers, Colors and Shapes, Dinosaurs and more at Baby Shark World for Kids!
Kids-friendly and safe activities such as Baby Shark Talking game and high-quality nursery rhyme videos like Baby Shark remix song will help preschoolers, toddlers, and babies boost their creativity and learn basic skills.

Make learning easy and fun with Baby Shark, Pinkfong and friends!
*Available Languages English, Spanish, Portuguese, and Japanese.

Fun Baby Shark Pinkfong kids songs videos
Baby Shark and Shark Family, 8 bit Baby Shark
Pinkfong & Hogi Dance Dance, 3D Baby Shark
Tyrannosaurus Rex, Here We Dance
Police car, Animal songs and more.

Educational games and songs for kids
Shark ABC and Fun with Phonics
Magic Number World, School Bus Counting game
2x~9x Times Tables Song
Shark's Color Bus, Where Did my Color go?
Trace Shapes and Color Circus
Tracing Alphabets and Monkey Talking game
Bubble Word game and more.

Songs and activities for kids' healthy habits
Brush kids' teeth
Wash Your hands
Read with Pinkfong & Hogi
Put the Toys away and more.

Other special themes
Halloween, Christmas
Fairy Tales, Space
Our Body, Bedtime Songs & Stories
Youtube Star, Bebefinn
Valentine day with Baby Shark and more.

New & free songs, videos and toddler learning games will be updated regularly!

-----------------

Star, Download & Save favorite contents
""Star"" your favorite content and come back to replay them whenever you want!
Star up to 500 contents & archive in my 'Favorites' section.
Come back to play your starred videos and games.
You can also download videos to watch them offline.

Safe Environment for babies
The app contains professionally-made, safe content for all children.
Use the Kids Lock feature to prevent kids from logging out the app.

Baby Shark is now the most-viewed video on YouTube with over 10 billion views!
Join us on our fun, academic adventure now!


-
• Pinkfong Plus Official Website: https://fong.kr/pinkfongplus/

• About Pinkfong Plus Subscription:
- Join Pinkfong Plus membership and get unlimited access to Pinkfong's best apps!
- Watch videos and play games ad-free.
- Share membership with up to 6 family members.
- Sync devices such as smartphones and tablets using one account.

• Apps Available under Pinkfong Plus:
- Baby Shark World for Kids, Pinkfong Baby Shark, Baby Shark ABC Phonics, Baby Shark Car Town, Pinkfong Dino World, Pinkfong 123 Numbers, Pinkfong Tracing World, Pinkfong Shapes & Colors, Baby Shark Jigsaw Puzzle Fun, Pinkfong Numbers Zoo, Pinkfong Baby Shark Phone, Pinkfong Baby Shark Storybook, Baby Shark Coloring Book, Pinkfong My Body, Pinkfong Police Heroes Game, Pinkfong Guess the Animal, Baby Shark Pizza Game, Baby Shark Makeover Game, Pinkfong Word Power, Pinkfong Mother Goose, Pinkfong Learn Korean, Pinkfong Super Phonics, Pinkfong Fun Times Tables, Pinkfong Baby Bedtime Songs, Pinkfong Birthday Party, Pinkfong Coloring Fun, Pinkfong Hogi Star Adventure + more!

More available apps will be updated soon.

Click the ""More Apps"" button on the home screen or visit Google Play to download the apps!

-

Privacy Policy:
https://pid.pinkfong.com/terms?type=privacy-policy

Terms of Use of Pinkfong Integrated Services:
https://pid.pinkfong.com/terms?type=terms-and-conditions

Terms of Use of Pinkfong Interactive App:
https://pid.pinkfong.com/terms?type=interactive-terms-and-conditions
\",\n \"scoreText\": \"3.9\",\n \"score\": 3.91,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=kr.co.smartstudy.bbsworld_android_googlemarket\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.bbsworld_android_googlemarket/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.bbsworld_android_googlemarket/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.bbsworld_android_googlemarket/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.bbsworld_android_googlemarket/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Blackboard Learn\",\n \"appId\": \"com.blackboard.android.bbstudent\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.blackboard.android.bbstudent\",\n \"icon\": \"https://play-lh.googleusercontent.com/MInjRtQiNuVZwZzuJwUnruIZs4hkUtpG-38NPihOt7RcGv8mhkosJ5VVekEb3gcUFWc\",\n \"developer\": {\n \"devId\": \"Anthology Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Anthology%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Welcome to Blackboard's mobile solution. An app that helps you stay up-to-date with everything in your course.
Students can:
•\\tView updates to your courses and content
•\\tGet notifications on course events and changes
•\\tTake assignments and tests
•\\tView grades for courses, assignments and tests
•\\tand more
Instructors can:
•\\tManage course content and assessments
•\\tGet alerts on submissions ready for grading
•\\tMark assignments
•\\tSend course announcements
•\\tCreate discussion boards threads and reply to comments
•\\tand more
We love feedback! If you have any questions or comments use the in-app feedback to help improve the application.

Note: This application functions as a collaborative tool between our app software and your institution's Blackboard Learn server. Blackboard cannot guarantee that the content created by instructors or other users will be compatible with this app. Access must be enabled by your institution. Features and functionality may at times be limited if your institution has not updated the appropriate software or experiences server outages.

Downloading or using this app indicates consent to the terms and privacy information at https://www.anthology.com/trust-center/terms-of-use.\",\n \"scoreText\": \"3.6\",\n \"score\": 3.584352,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.blackboard.android.bbstudent\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.blackboard.android.bbstudent/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.blackboard.android.bbstudent/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.blackboard.android.bbstudent/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.blackboard.android.bbstudent/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Course Hero: Homework Helper\",\n \"appId\": \"com.coursehero.coursehero\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.coursehero.coursehero\",\n \"icon\": \"https://play-lh.googleusercontent.com/e3zXsRHvfr078kzYA56-7TH9oWtAj5DAQuTOyN4X-G0kg_6e8HVCEU0F0F_AOJwM9A\",\n \"developer\": {\n \"devId\": \"Course Hero\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Course%20Hero\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"

Homework Helper For Textbook Answers

Need fast homework help? Find homework answers to your questions from our expert tutors who are available online 24/7.

Learn multiple approaches to ensure you understand the concepts and textbook answers. Quality homework answers or your money back! Utilize tools to study smarter with a free math solver, math answer scanner, and the largest online library of course notes and study guides.

Math Answer Scanner & Problem Solver


- Use our math answer scanner and solver in two easy steps
- Snap a photo of the math question and get answers with explanations instantly — totally free!

Homework Answers


- Educator-verified explanations help build confidence and improve your problem-solving skills
- Solutions, hints, and step-by-step videos will help you understand and retain textbook concepts
- Study time is anytime - solutions and explanations are available 24/7

Get Better Grades Guaranteed!


- Earn better grades when you study with over 100 million course-specific study notes and materials
- Access course notes, study guides, test prep, and more from students and educators at 16,000 schools
- Search for your school and course or get help from study resources at other schools
- Once we learn about the subjects you're studying and the courses you're following, we'll even send notifications when we have new and helpful resources

Homework Help from Online Tutors


- School notes and study documents for all your classes
- Our expert homework helpers help you get answers to learn math including geometry, algebra, calculus, trigonometry, statistics, and more!
- Get homework help from online tutors for science, chemistry, organic chemistry, biology, social studies, history, economics, and more!

Your Study Library


- Save study resources, Q&As, and more to your library to stay organized this year
- Your library is accessible via the app and via the Course Hero site in your browser so you can always find what you're looking for
- Never misplace your study materials again!

Learn Various School Subjects


- Math
- Physics
- Biology
- Psychology
- Computer Science
- Business
- Accounting
- Economics
- Health
- Engineering
- Chemistry
- Foreign Languages
- Music
- and More!

Skip asking ChatGPT or AI programs for homework help - Course Hero has the resources to help you pass your classes and own the study hour!

With the Course Hero Android App you can:
- Maximize your study time and earn better grades!
- Study millions of course-specific documents: course notes and study guides.
- Get fast high-quality homework help from online tutors 24/7.
- Study right away or save materials to your library to read later.
- Have easy offline access to resources you've previously viewed via the app.
- Get notifications for new class resources—based on your previous searches.

People without a Premier subscription are still able to search and view previews of more than 100 million course-specific documents: course notes, study guides, and Q&As. They can also get homework help from Course Hero tutors and get instant math solutions using the math solver. For full access to Course Hero's high-quality study documents, users must upgrade to a Premier membership.

For Customer Support, please visit: https://support.coursehero.com/hc/en-us/. We're happy to help!

Privacy Policy: https://www.coursehero.com/privacy-policy/
Terms of Use: https://www.coursehero.com/terms-of-use/\",\n \"scoreText\": \"4.3\",\n \"score\": 4.323797,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.coursehero.coursehero\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.coursehero.coursehero/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.coursehero.coursehero/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.coursehero.coursehero/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.coursehero.coursehero/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Scientific Calculator App\",\n \"appId\": \"com.calculatorx.simple.calculator.scientific\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.calculatorx.simple.calculator.scientific\",\n \"icon\": \"https://play-lh.googleusercontent.com/nHFxTrjk1b8PRpn-KGIus8q6_tiMBACe7ROAZ4pF1vwANnsarFZISdTh9W-rAp6dAQ\",\n \"developer\": {\n \"devId\": \"Attractive Apps Valley\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Attractive%20Apps%20Valley\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Scientific Calculator: Calculator App making it easier for users to make Addition➕, Division➗, Multiplication✖ & Percentage Calculator.
Welcome to the most popular Android Calculator App "Scientific Calculator". Calculator Pro is compatible with Samsung, Oppo, Vivo, Realme, OnePlus, Xiaomi and other all android devices.

Scientific Calculator Pro - a perfect Simple Calculator for Android. Easy to use and beautifully designed Basic Calculator App with big buttons provides you with essential functionality of Calculator Plus.

Simple Calculator App for your everyday Calculations purposes. Whether you need to basic calculate tips, discounts, or ratios quickly and easily, Scientific Calculator is the best free Calculator Pro App for you. With its smart and user-friendly interface, it's the best Simple Calculation tool for everyday use.

This Simple Calculator Plus will do the math for you. All-in-one Maths Calculator App for you.
Regular, Scientific, and Mortgage Calculators, as well as currency and unit converters and much more, are all here in one place.

Calculator Pro Simple Calculator App provides simple and advanced mathematical functions in a beautifully designed Scientific Calculator app.

• Perform Basic Calculation such as addition, subtraction, multiplication, and division with Percentage Calculator
• Do scientific operations such as trigonometric, logarithmic, and exponential functions with Scientific Calculator Pro

Simple Calculator Calc Pro allows you to easily handle all Calculations necessary for everyday life. You can add or remove the functions and constants you need in this Scientific Pro Calculator App, Calculate anything. With all the Scientific Calculations capability, this Scientific Calc Calculator Plus app is the perfect choice for work and school

1. Simple Calculator Pro: Edit history and view previous results in the regular Calculator Plus.
2. Scientific Calculator Pro: Find trigonometric functions, logarithms, and more additional features in the Scientific Calculator Plus.
3. Currency converter in Basic Calculator: Daily updated exchange rates in the universal currency converter.
4. Loan/Mortgage in Simple calculator: Know the exact amount of the next instalment with the loan/mortgage Calculator Pro.
5. Converters: Freely convert units of length, area, volume, speed, time, and mass in the unit converter
6. Area Calculator: Basic Calculate your Area accurately and know more details about the Area
7. Power Calculator: Get the accurate power
8. Weight Calculator Pro: Stay fit by knowing your Weight
9. Percentage Calculator: Know the exact discount amount you are going to get
10. Speed Basic Calculator: Find the difference between two Speeds

Free Calculator App has a lot of functions with simple Scientific Calculation, which makes sure that this Stylish Calculator plus is a complete calculator pro package. My Calculator Pro App can easily perform calculations necessary for everyday life. All-In-One Scientific Calculator Pro for Android has a best user experience with it’s Percentage Calculator feature making users to perform Addition➕, Division➗, and Multiplication✖ & many more functions.

Use free version Scientific Calculation Percentage Calculator App:

- As a simple Basic Calculator to calculate your daily expenses and bills.
- To calculate tips and discounts quickly with the tip calculator pro.
- To check calculations for mistakes and verify the results.
- When shopping to calculate the total sum easily.
- To maximize productivity with memory buttons and save your time.


My Calculator Plus is the best and Basic Calculator App for Android that comes with accurate calculations and practical functions for quick calculation.

Whether you need a Scientific calculator, Simple Calculator App with history, Calculator Plus widget, or an advanced Calculator Pro with history, Percentage Calculator has got you covered. Get your hands on the best free Scientific Calculator App with no ads and start calculating!\",\n \"scoreText\": \"4.1\",\n \"score\": 4.059406,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.calculatorx.simple.calculator.scientific\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.calculatorx.simple.calculator.scientific/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.calculatorx.simple.calculator.scientific/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.calculatorx.simple.calculator.scientific/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.calculatorx.simple.calculator.scientific/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Scientific calculator plus 991\",\n \"appId\": \"advanced.scientific.calculator.calc991.plus\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/advanced.scientific.calculator.calc991.plus\",\n \"icon\": \"https://play-lh.googleusercontent.com/HiUrjTu-w-LiJDteqNvPIJpfhHxS_TcN8il_vNAfWXOnL8_4DB2UEjLs_HLP17utYYw\",\n \"developer\": {\n \"devId\": \"Tools for student\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Tools%20for%20student\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Scientific calculator 300 plus, 991 is the calculator for students and engineering student. Calculator 991 plus provides powerful functions in a real calculator 991 300 . It makes advanced calculator 991 become the most useful calculator for university and school.

Application includes some calculators inside:
- Basic calculator 300 plus
- Advanced calculator 115 plus
- Scientific calculator 991
- Scientific calculator 991 plus
- Graphing calculator 84 plus

Let's see some special features:

◉ Basic calculator 300 plus and 115 plus: supports from basic mathematics to advanced math functions: percentage, powers, roots, trigonometric, logarithms calculator. Fraction calculation 991 supports convert fraction to decimal, mixed fraction and solve fractions problems.

◉ Advanced calculator 115 plus: combines of hyper calculator and simple scientific calc. This calculator is a multi-functional advanced calculator 991 with all features in one app. Such as linear algebra, calculus, complex numbers, display result in rectangular and polar coordinates, matrix and vector.

◉ Scientific calculator 991 plus: includes smart equation solver. Equation solver can solve quadratic, cubic equations, systems of equations. Caluculator solves any polynomial. Smart scientific calculator 991 has exponent calculator contains scientific calculations such as derivative, integral, square root calculation, factorial calculation, pi calculation, equation solver.

◉ Scientific calculator 991: supports calculate with infinity number of digits, prime factors, random numbers, combinations, permutations, GCD and LCM. This calculator 991ex is a real engineering simulator. Scientific calculator has features of 500 es, 500 ms, 300 es plus, 991 es plus. Calculator keyboard layout same as calculator 300 es plus, 991 ex and es plus.

◉ Graphing calculator 84 plus supports function graph, polar, parametric and implicit function. Graphing calculator 84 can draw tangent, tracing, derivative, root, min and max. It simulates for graphing caluculator 83 and t1 84, 84 plus.

◉ Integral calculator 991 plus provide powerful calculator to calculate integrate, derivative, differentiation and integration.

◉ This scientific calculator 991 includes CAS (computer algebra system), which can perform symbolic calculation.

◉ Some other features: math formula, physics formula, unit conversion, theme, font and programming.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7434554,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=advanced.scientific.calculator.calc991.plus\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/advanced.scientific.calculator.calc991.plus/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/advanced.scientific.calculator.calc991.plus/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/advanced.scientific.calculator.calc991.plus/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/advanced.scientific.calculator.calc991.plus/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"HelloTalk - Learn Languages\",\n \"appId\": \"com.hellotalk\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.hellotalk\",\n \"icon\": \"https://play-lh.googleusercontent.com/7qdnFZdc3mFs7sWXauLyBvJRDqIqENpH_8dlsNAVBqiaKSJ3yJS7-n3zz-qw29F74Q\",\n \"developer\": {\n \"devId\": \"HelloTalk Learn Languages App\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/HelloTalk%20Learn%20Languages%20App\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Practice languages with native speakers on HelloTalk! We recently introduced HelloTalk Live and Voiceroom - interactive language and culture events to help you master languages through the content you love!

HelloTalk, the original language exchange app, connects you with native speakers to practice languages (English, Japanese, Korean, Spanish, French, Mandarin Chinese, Portuguese, German, Italian, Russian, Arabic, Turkish, Hindi, Indonesian, Thai, Vietnamese and 150+ more) for FREE!

HelloTalk equips you with learning tools such as translation and instant captions so you can learn by chatting with native speakers. Learn languages from locals around the world through livestreams and Voicerooms. Connect with expert hosts to discuss interesting topics with language partners in the learning community!

Why HelloTalk?
The language exchange community
HelloTalk is a learning community made up of 40 million members from more than 150 countries around the world 🌎. Find the perfect language partner based on language, region, age, and more. With built-in learning tools such as translation, corrections, and instant captions, HelloTalk lets you communicate without barriers!

Core features - Moments posts
Share Moments about language, culture, or travel to connect with native speakers. Discover new places, explore cultural traditions, and create an immersive learning experience from the comfort of home.

Live
Tune in to free livestreams hosted by expert teachers to learn about language, culture, and more! Take a back seat and learn, or jump on stage for 1-on-1 practice with Live hosts. Practice languages and meet friends from around the world with supportive and educational livestreams on HelloTalk!

Join a Voiceroom
Voicerooms are interactive audio events to practice languages with others in the HelloTalk community. Create a Voiceroom to discuss your interests, and meet awesome people from around the globe. Voicerooms are a great way to meet like-minded language partners - turn on the mic, speak up, and learn new expressions from others in the HelloTalk community 🙌

1-on-1 Language Lessons
Find the perfect language tutor with HelloTalk Lessons. Search the learning community for qualified tutors by language, lesson type, and kick start your learning journey with your own personalized language class!

Learning by interacting is the most direct way to learn a new language! We connect language learners worldwide to create a fun, supportive, and educational learning community.

What the world is saying about HelloTalk ❤️ ❤️ ❤️🌟🌟🌟
Editor's Choice - Google Play
“One of the best apps to help you learn a new language.” - 9to5Mac
"When you're ready to experiment with a foreign language, HelloTalk provides an excellent opportunity for interaction with other speakers." –PCMag
"HelloTalk, which connects native speakers with an apprentice, also offers language exchanges to its 20 million users in more than 150 languages." -Forbes

START PRACTICING LANGUAGES RIGHT AWAY!!!
Learn English and practice spoken English
Learn Japanese, practice spoken Japanese, and chat with Japanese
Learn Korean, practice spoken Korean, and chat with Koreans
Learn Spanish and practice spoken Spanish
Learn French and practice spoken French
Learn German and practice spoken German

Please note, HelloTalk is not a dating app. Although you can meet people from all over the world, HelloTalk is designed for language learning. Dating is not allowed in the learning community.

Learn more about the HelloTalk app:
Facebook: https://www.facebook.com/Hellotalk/
Twitter: https://twitter.com/hellotalkapp

Send any feedback to hellotalk8@gmail.com
- Privacy Policy: https://www.hellotalk.com/privacy-policy
- Terms of Use: https://www.hellotalk.com/terms-of-service\",\n \"scoreText\": \"4.3\",\n \"score\": 4.341957,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.hellotalk\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.hellotalk/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.hellotalk/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.hellotalk/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.hellotalk/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Lumosity: Brain Training\",\n \"appId\": \"com.lumoslabs.lumosity\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.lumoslabs.lumosity\",\n \"icon\": \"https://play-lh.googleusercontent.com/MrYF2bh1BuqkzlWeWVKmrMZKfo0AyvVtO-OwaeB4cPFPtZBcJ3e5ibYPB19Ew5NR6ian\",\n \"developer\": {\n \"devId\": \"Lumos Labs, Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Lumos%20Labs%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Lumosity’s cognitive training program is a fun, interactive way to train your brain and learn about how your mind works. Used by over 100 million people worldwide, Lumosity’s program consists of games designed to exercise memory, speed, flexibility and problem-solving.

Begin with a free 10-minute Fit Test to set your baseline scores, and see how you compare with others your age.

THE APP INCLUDES
•40+ activities ...and counting.
•Challenges for memory, speed, logic, problem-solving, math, language, and more.

WORKOUT MODES
•Carefully curated sets of games made for you.
•Personalized challenges based on your training habits and preferences.

DETAILED TRAINING INSIGHTS

•Information about your game strengths and weaknesses as you progress through your training.
•Analysis of your game play to help understand your cognitive patterns.

THE STORY BEHIND LUMOSITY®

We’re a team of scientists and designers exploring new ways to challenge the brain and advance cognitive research. We take common cognitive and neuropsychological tasks, or create entirely new, experimental challenges. Then, working with experienced designers, we transform these tasks into games and puzzles that challenge core cognitive skills.

We also work with 40+ university researchers worldwide. We give qualified researchers free access to Lumosity training and tools, helping them investigate new areas in the cognitive sciences.

We invite you to train with us and join in our mission to advance the understanding of human cognition.

The app is available in English, Spanish, Portuguese, French, German, Japanese and Korean. To access the app in one of these languages, change your device setting to the desired language.

GET HELP: http://www.lumosity.com/help
FOLLOW US: http://twitter.com/lumosity
LIKE US: http://facebook.com/lumosity

LUMOSITY PREMIUM PRICING & TERMS
With Lumosity Premium, you will work out with a personalized training program, unlock in-depth insights about how you play, and receive tips for better game accuracy, speed and strategy. We offer the following Premium subscriptions:
Monthly: $11.99 USD/month
Yearly: $59.99 USD/year

These prices are for United States customers. Pricing in other countries may vary, and actual charges may be converted to your local currency depending on your country of residence.

Lumosity Premium subscriptions are charged through your Google Play account upon confirmation of purchase. Your subscription will automatically renew at the price and period selected above unless you turn off auto-renewal at least 24 hours before the end of the current period. You will be charged for renewal within 24 hours prior to the end of the current period. You may manage your subscription and turn off auto-renewal in your Google Play account settings after purchase. Refunds are not provided for the unused portion of any term, and any unused portion of a free trial period will be forfeited when a purchase is made.


Privacy Policy:
https://www.lumosity.com/legal/privacy_policy
CA Privacy:
https://www.lumosity.com/en/legal/privacy_policy/#what-information-we-collect
Terms of Service:
https://www.lumosity.com/legal/terms_of_service
Payment Policy:
https://www.lumosity.com/legal/payment_policy\",\n \"scoreText\": \"4.5\",\n \"score\": 4.544022,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.lumoslabs.lumosity\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.lumoslabs.lumosity/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.lumoslabs.lumosity/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.lumoslabs.lumosity/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.lumoslabs.lumosity/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Talking Ginger Coloring\",\n \"appId\": \"com.outfit7.coloring\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.outfit7.coloring\",\n \"icon\": \"https://play-lh.googleusercontent.com/YLZznEIJR3OX6x9VjeGF2O7EjF8N9HVYgId9389pqaPBhLzY5jTsw_2M6qhW0fKkRKw\",\n \"developer\": {\n \"devId\": \"Outfit7 Limited\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Outfit7%20Limited\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Fun & Learning
Relaxing painting exercises with Talking Ginger are designed to be fun, but can also enhance concentration, boost the imagination and encourage learning through play.

Unique coloring book
Ginger, Tom, and Angela are waiting to be brought to life with color. There are hundreds of pictures to choose from with cute cats, dogs and lots of other animals too!


No Ads
A calm and relaxing space with no ads, allowing kids to focus on coloring.

Drawing and coloring games
Games make drawing fun and can encourage learning and focus, too. Coloring a calm meadow can be relaxing, staying within the lines can be a challenge - and art is for the imagination!

Fun for everyone to enjoy
Families can play together and laugh with Talking Tom. Cute animal drawings will delight everyone, and parents and little ones can all join in.

This app contains:
- Links that direct customers to Outfit7’s websites and other apps;
- The option to make in-app purchases;

Terms of use: https://talkingtomandfriends.com/eula/en/
EEA privacy policy: https://talkingtomandfriends.com/eea/en/
US privacy policy: https://talkingtomandfriends.com/privacy/en/
Brazil privacy policy: https://talkingtomandfriends.com/privacy-brazil/en/
Rest of the world privacy policy: https://talkingtomandfriends.com/privacy/en/
Customer support: support@outfit7.com\",\n \"scoreText\": \"3.6\",\n \"score\": 3.6,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.outfit7.coloring\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.outfit7.coloring/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.outfit7.coloring/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.outfit7.coloring/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.outfit7.coloring/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Learn Like Nastya: Kids Games\",\n \"appId\": \"mobi.ka.lln.gp\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/mobi.ka.lln.gp\",\n \"icon\": \"https://play-lh.googleusercontent.com/ZWO2m22bnq-4a5bD9NAU4RUQ7zgOIxBAaxeWuGB52TsWkSby2kX6-vKR7MyvPokHFA\",\n \"developer\": {\n \"devId\": \"Preschool & Kindergarten Learning Kids Games\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Preschool%20%26%20Kindergarten%20Learning%20Kids%20Games\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn Like Nastya is an educational and entertainment app for preschoolers inspired and endorsed by the children’s beloved YouTube vlogger Like Nastya. Our toddler app uses essential day-to-day topics to help children explore the world around them and get ready for school by practicing through play such learning components as ABCs, phonics, vocabulary, number sense, logics, reading comprehension, social interactions, and more!

We know how easily young kids get bored and distracted, that’s why we have gathered an outstanding crew of children’s psychologists, education experts and instructional designers to make playing with Nastya a fun and captivating journey. The activity path on the app is carefully timed and organized to hold a child’s attention and lead them from one delightful toddler learning game to another: stories are followed by quizzes, memory card games or coloring pages; nursery rhymes are accompanied by math and logic activities and puzzle games for kids; letter tracing, draw-and-count games for preschoolers, and phonics cards are offered after the video lessons. And it’s so much more interesting to play in Nastya’s company ​​— her animated character will guide little ones through the topics, give them helpful hints and rejoice at their achievements.

Here’s a brief overview of what you’ll find on the Learn Like Nastya toddler app:
All the topics are built around a certain important aspect of a child’s life and their immediate environment. In our first release, the following topics are available to explore:

- Family
- Friends
- Feelings and Emotions
- Pets
- Cats
- Dogs
- Homes
- Rooms in a House
...to be continued in the next updates.

Each topic consists of several sections dedicated to different skill-building or entertainment activities. We’ve worked hard to create a wide range of diverse toddler learning games. And it looks like we’ve nailed it — check it out for yourself! The soon-to-be school students are offered:

- Animated video lessons to find out new things;
- Nursery rhymes to dive into the topic and get musical;
- Interactive picture books to enjoy amusing stories;
- Letter tracing to learn the ABCs and strengthen fine motor skills;
- Puzzle games for kids to develop hand–eye coordination;
- Matching and sorting math games to practice in logical thinking;
- Quizzes to refresh knowledge and learn numbers;
- Phonics cards to remember letter-sound correspondences;
- Memory card games to boost memory retention;
- Draw-and-count games for preschoolers to create cheery pictures and learn numbers;
- Coloring pages to have fun and develop visual skills;
- Themed painting games to get even more artistic and creative.

At any point, children can change the current game and switch to something that’s more appealing to them.

Upon completing activities, the player is rewarded gems they can use to dress up Nastya in cute and stylish outfits. Visit Nastya’s Wardrobe to choose some new smashing clothes for her!

We are having a lot of joy creating the Learn Like Nastya world and hope that parents and their children will find it entertaining, engaging and empowering!


Subscription details:
We offer a monthly and a yearly subscription plan. Each plan goes with a 3-day trial period. No cancellation fees.\",\n \"scoreText\": \"4.2\",\n \"score\": 4.1707315,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=mobi.ka.lln.gp\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/mobi.ka.lln.gp/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/mobi.ka.lln.gp/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/mobi.ka.lln.gp/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/mobi.ka.lln.gp/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"CDL Prep\",\n \"appId\": \"com.jeffreydiaz.android.app.cdlprep\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.jeffreydiaz.android.app.cdlprep\",\n \"icon\": \"https://play-lh.googleusercontent.com/iqABDQPRfQtAXhcHJUDa-1wFgUOktAQjMpZCwKro_yd_EWIrxAOptMyrXnDsiMheJ7k\",\n \"developer\": {\n \"devId\": \"Jeffrey Diaz\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Jeffrey%20Diaz\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"CDL Prep is the best way to prepare for the Commercial Drivers License General Knowledge, and various endorsement exams. CDL Prep contains questions on the following topics: General Commercial, Air Brakes, Combinations, Hazmat, Passenger, Tanks, School Bus, and Doubles/Triples.

Features:
1. Over 500 questions to practice with.

2. Exam Mode - 60 minutes to answer 50 randomly chosen questions, or 40 minutes to answer 20 to 30 questions on endorsement topics. At the end, review your score and any incorrect answers.

3. Practice Mode - Answer questions and receive instant feedback if you answered incorrectly.

4. Answer Randomization - Answers to questions will not always be in the same position.

5. Performance tracking - Review your performance on every question. Red = You have an average score less than 70%, Orange = You have an average score between 70-89%, Green = You have an average score of 90% and above.

Please send any feedback or request to: CDLPrepApp@gmail.com. Thank you and good luck on your exams!\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6878047,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.jeffreydiaz.android.app.cdlprep\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.jeffreydiaz.android.app.cdlprep/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.jeffreydiaz.android.app.cdlprep/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.jeffreydiaz.android.app.cdlprep/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.jeffreydiaz.android.app.cdlprep/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Bloomberg Connects\",\n \"appId\": \"org.bloomberg.connects.docent\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/org.bloomberg.connects.docent\",\n \"icon\": \"https://play-lh.googleusercontent.com/HoB1fmlukF87UgLyB7gKOBrmwmFjoFy9CkC3XLQdtiuIjMJ8njmvqLqTcb0WXWM9fQ\",\n \"developer\": {\n \"devId\": \"Bloomberg Consulting LLC\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Bloomberg%20Consulting%20LLC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"With the free Bloomberg Connects app, explore interactive guides to over 200 museums, galleries, sculpture parks, gardens, and cultural spaces from the palm of your hand. From behind-the-scenes guides to artist and expert-curated video and audio content, Bloomberg Connects makes it easy to discover arts and culture, anytime, anywhere.

• Plan and Discover: Map out your visit in advance with our planning tools, then use the lookup numbers onsite for quick information about an unexpected find.

• On-Demand Content: Use the app onsite or on its own to bring exhibitions and collections to life with exclusive multimedia content created by our museum collaborators.

Free to download and free to use, the app was created by Bloomberg Philanthropies to help make the art and offerings of cultural organizations more accessible – not just to those visiting in person, but to people around the world.

Use the app to discover museums and cultural spaces in 25+ cities worldwide including — Brooklyn Museum, Central Park Conservancy, The DuSable Black History Museum, The Frick Collection, Georgia O'Keeffe Museum, Guggenheim Museum, Hammer Museum, ICA/Boston, Jewish Museum, The Met, MoMA, New York Botanical Garden, The New York Public Library, Noguchi Museum, The Phillips Collection, Serpentine, Sir John Soane’s Museum, Storm King Art Center, Tate, Yorkshire Sculpture Park and more.

Bloomberg Connects benefits our partners – over 200 museums, galleries, gardens, and cultural spaces, with more joining every month – by providing a pre-built, easy-to-use app interface that can be customized to their content and mission.

For more arts and culture inspo, follow us on Instagram, Facebook (@bloombergconnects), and Twitter (@bbgconnects).

Have feedback? Let us know: feedback@bloombergconnects.org\",\n \"scoreText\": \"4.2\",\n \"score\": 4.22,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.bloomberg.connects.docent\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/org.bloomberg.connects.docent/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/org.bloomberg.connects.docent/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/org.bloomberg.connects.docent/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/org.bloomberg.connects.docent/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Plant Lens Plant identifier\",\n \"appId\": \"app.plant.identification\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/app.plant.identification\",\n \"icon\": \"https://play-lh.googleusercontent.com/m2G11L14MtAyl86pDz11eGjmd502GeOrOwphSIsC3q9Mvc2-TwMHW48nBqSVoOkjOIk\",\n \"developer\": {\n \"devId\": \"Identify World Plants Inc\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Identify%20World%20Plants%20Inc\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Have you ever wondered the flower’s name on your way home?  Simply take a picture of the plant you’ve found in nature, at the gardening store or wherever you are, anywhere in the world, and Plant Lens will tell you what plant it is in seconds.

Even the most expert botanist would fail to recognize every plant they came across. Plant Lens is capable of identifying 60,000+ plant species with accuracy of 92%, better than most botanists. And the more visual information you give to Plant Lens about the plant you are observing, the more accurate the identification will be. With our machine-learning algorithm, Plant Lens is learning and improving continuously.

Plant Lens is available to download for FREE!

Features
🌸Identify various plants by pictures, more than 60,000 species.
🌺Keep track of all the plants, trees, and flowers in your own personal collection.
🌿Your photos showing on the map creates a personal plant map.
🌻Explore plant world with an identifier and mobile
encyclopedia.


Try snapping a plant, flower or tree for free and have your photos instantly recognized by our always-growing algorithm. Plant names, location & more fascinating information on the world around is now free!

Use Plant Lens for
🌸Flower identification🌸
🌲Identify trees🌲
🍁Identify leaves🍁
🍄Mushroom Identification🍄
Identify Succulents, Cactus & more

With curiosity to nature, Plant Lens help you explore more details about plants. Whether you are a gardener, plant fancier, backpacker children or teacher, Plant Lens is a good helper & identifier.

Download and get close to the plant world. Plant Lens enables you to identify plant species in nature easily.\",\n \"scoreText\": \"3.4\",\n \"score\": 3.4254386,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=app.plant.identification\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/app.plant.identification/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/app.plant.identification/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/app.plant.identification/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/app.plant.identification/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Miga Town: My School\",\n \"appId\": \"com.miga.myschool\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myschool\",\n \"icon\": \"https://play-lh.googleusercontent.com/OyETHZxz_OoaHtV_WcNc7WFtNvUI56Z6aR7XD35euxFbcR9eFg8GIuQT0AO2-LHj27Q\",\n \"developer\": {\n \"devId\": \"XiHe Digital (GuangZhou) Technology Co., Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/XiHe%20Digital%20(GuangZhou)%20Technology%20Co.%2C%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Discovery
Classroom: find your seat, pick up your textbook, and ready to learn something new.

Student Affairs Office: the teachers are carefully dealing with all kinds of student affairs. Can you find out their secrets?

Integrated classroom: put on protective clothing and conduct chemical experiments; write the most popular song in the exclusive music classroom.

Playground: head to the playground and coach your own football/basketball team. Let’s cheer for the players!

Auditorium: after years of study, you're about to graduate. There are a lot of wonderful performances at the graduation ceremony. Come and see!

Features
- Role-play in 5 places

- Be a student or teacher, or even other occupations

- Your voice can be changed by the analog microphone

- Discover more hidden secrets

- Unlimited gameplay, triggering your imagination


--Give full play to children’s creativity
--Tens of billions of customized modes
--No third-party advertising
--No time limit or score ranking list

contact us:support@xihegame.com\",\n \"scoreText\": \"3.5\",\n \"score\": 3.506536,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.miga.myschool\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myschool/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myschool/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myschool/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myschool/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Solar System Scope\",\n \"appId\": \"air.com.eu.inove.sss2\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/air.com.eu.inove.sss2\",\n \"icon\": \"https://play-lh.googleusercontent.com/lBOSK-x849g-IDTbtME3g86vS3ThnZkf_NrF2ZZ80k3t0IsIXHkaBkBcFX_j2pI_Kpg\",\n \"developer\": {\n \"devId\": \"INOVE, s.r.o.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/INOVE%2C%20s.r.o.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Solar System Scope is a fun way of Exploring, Discovering and Playing with the Solar System and Outer Space.

Welcome to the Space Playground

Solar System Scope (or just Solar) contains many views and celestial simulations, but most of all - it brings you closer to the furthest reaches of our world and lets you experience lots of fantastic space sceneries.

It aspires to be the most illustrative, easy to understand and simple to use space model.

3D Encyclopedia

In Solar’s unique encyclopedia you will find the most interesting facts about every planet, dwarf planet, every major moon and more – and everything is accompanied by realistic 3D visualizations.

Solar’s encyclopedia is available in 19 languages: English, Arabic, Bulgarian, Chinese, Czech, French, German, Greek, Indonesian, Italian, Korean, Persian, Polish, Portuguese, Russian, Slovak, Spanish, Turkish and Vietnamese. More languages are coming soon!

Nightsky Observatory

Enjoy Stars and constellation of the night sky as viewed from any given location on Earth. You can point your device at the sky to see all objects in their proper place, but you can also simulate Night sky in the past or in the future.

Now with advanced options that let you simulate ecliptic, equatorial and azimuthal line, or grid (among other things).

Scientific Instrument

Solar System Scope calculations are based on up-to-date orbital parameters published by NASA and let you simulate celestial positions at any given time.

For Everyone

Solar System Scope is well suited for all audiences and ages: It is enjoyed by space enthusiasts, teachers, scientists, but Solar is successfully used even by children of 4+ years of age!

Unique Maps

We are proud to present a very unique set of planetary and moon maps, that let you experience a true-color space as never before.

These accurate maps are based on NASA elevation and imagery data. Colors and shades of the textures are tuned according to true-color photos made by Messenger, Viking, Cassini and New Horizon spacecrafts, and the Hubble Space Telescope.

Basic resolution of these maps is for free – but if you would like the best experience, you can check out the highest quality, which is available with In-App purchase.

Join our vision

Our vision is to build the ultimate space model and bring you the deepest space experience.
And you can help - try Solar System Scope and if you like it, spread the word!

And don’t forget to join the community and vote for new features on:
http://www.solarsystemscope.com
http://www.facebook.com/solarsystemscopemodels\",\n \"scoreText\": \"4.5\",\n \"score\": 4.540943,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=air.com.eu.inove.sss2\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/air.com.eu.inove.sss2/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/air.com.eu.inove.sss2/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/air.com.eu.inove.sss2/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/air.com.eu.inove.sss2/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Reading Eggs - Learn to Read\",\n \"appId\": \"com.blake.readingeggs.android\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.blake.readingeggs.android\",\n \"icon\": \"https://play-lh.googleusercontent.com/uowgJd3eSITmBxBq31T6Nc2JFccSmUBMurU6Tc0yDNkiPQMc6VnfQlfFnwM4HRh56R8\",\n \"developer\": {\n \"devId\": \"Blake eLearning Pty Ltd\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Blake%20eLearning%20Pty%20Ltd\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Reading Eggs is the multi-award winning learning program that helps children learn to read. Based on scientific research and designed by experienced elementary teachers, it’s proven to help kids learn to read using interactive reading games, guided reading lessons, fun activities, and over 3,500 digital story books.

Reading Eggs has already helped over 20 million children worldwide learn to read. Each subscription includes full access to:
• Reading Eggs Junior (ages 2–4): Toddlers build pre-reading skills such as phonemic awareness and alphabet knowledge with fun activities, games, videos, and read-aloud books.
• Reading Eggs (ages 3-7): Children take their first steps in learning to read, covering phonics, sight words, spelling, vocabulary, and comprehension.
• Fast Phonics (ages 5–10): A systematic, synthetic phonics program to help emergent and struggling readers build key phonics skills.
• Reading Eggspress (ages 7-13): Continues the learning journey by helping children learn to read for meaning and enjoyment.
• Mathseeds (ages 3–9): Develops essential early numeracy skills, covering numbers, measurement, shapes, patterns, and more.

ABOUT THE READING EGGS LEARN TO READ APP

TRUSTED: used in over 12,000 schools and trusted by elementary educators.

SELF-PACED: children are matched to the perfect level and progress with self-paced, one-on-one lessons.

HIGHLY MOTIVATING: the reward system consists of golden eggs, collectable pets, and games, motivating children to keep learning.

RESEARCH-BASED: based on scientific research and the most up-to-date learning principles on the most effective way children learn to read.

COMPREHENSIVE: Reading Eggs is a complete learn to read system for children aged 2–13 and covers the five essential components of reading: phonics, phonemic awareness, vocabulary, fluency, and comprehension.

PROVEN RESULTS: 91% of parents report a noticeable improvement within weeks!

SEE REAL PROGRESS: see instant results and receive detailed progress reports, which show you exactly how your child is improving.

Users must log in with their account details to access Reading Eggs.

Min requirements:
• Wireless internet connection
• An active trial or subscription

Not recommended for low-performance tablets. Also, not recommended for Leapfrog, Thomson or Pendo tablets.

Note: Teacher accounts are currently supported on desktop only. Go to www.readingeggs.com/schools.

For assistance or feedback email: info@readingeggs.com


MORE INFO
• Each subscription provides access to Reading Eggs Junior, Reading Eggs, Fast Phonics, Reading Eggspress and Mathseeds
• The first month of a monthly subscription is free
• Subscriptions renew automatically; your Google Play Store account will be charged unless you cancel at least 24 hours before the end of the current period
• Cancel anytime in your Google Play Store account settings


Privacy Policy: https://readingeggs.com/privacy/
Terms and Conditions: https://readingeggs.com/terms/\",\n \"scoreText\": \"3.5\",\n \"score\": 3.4803922,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.blake.readingeggs.android\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.blake.readingeggs.android/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.blake.readingeggs.android/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.blake.readingeggs.android/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.blake.readingeggs.android/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Bug Identifier Bug Finder\",\n \"appId\": \"com.insectidentifier.insectid\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.insectidentifier.insectid\",\n \"icon\": \"https://play-lh.googleusercontent.com/ZSq380B8QvJPq05ACMWGCgNpppSx3GsFY4_bcbC6mf1adNmHclc2OHE65PmFBeh4x9A\",\n \"developer\": {\n \"devId\": \"Identifier Studio\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Identifier%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Suddenly one day in your home or garden appeared strange bugs, you do not know they are harmful to the garden, or children but do not know what bug is this? Bug identification insect finder is an application that will help you identify bugs immediately or help you know what bug is this with just one simple operation.

Explore the magical world of insects with the Bug Identifier Insect Identification Insect Finder app in a snap. Whenever you want to know what bug is this or you are looking to learn more about a certain type of insect. Simply point your phone's camera at something you want to identify insects or upload a photo from your photo library, all that's left is to wait a moment. Bug Identifier Insect Identification Insect Finder app bug id will give you accurate results help you know what bug is this, identify insects, bug id, insect identify, insect id, bug bite identifier app, insects and bugs.

This Bug Identifier Insect Identification Insect Finder app the all-in-one insect identifier, spider identifier, bug finder, identify bugs, identify insects, bug app finder, insect identify, insect id, bug bite identifier app, insects and bugs. With a friendly interface, users can easily use with simple operations and accurate results. The rich data warehouse makes it easy to learn and discover more things about insects that you never knew with bug identification bug finder bug snap bug id.

Bug Identifier Insect Identification Identify Bugs Key Feature:
- Instantly identify any bugs, butterflies and many other insects from a photo or camera.
- High quality database maintained by collaborators around the world with bug app finder bug snap, identify insects.
- Keep track of identified species in your personal collection with bug identification spider identifier insect finder bug id, insect id, bug bite identifier app, insects and bugs.
- Bug identification spider identifier bug finder bug bite identifier app bug snap anywhere, anytime.
- Intuitive interface with friendly tips by bug app finder bug id, insect id.
- An impressive accuracy rate for photo identification.
- Rich learning source about insect with bug identification spider identifier insect finder identify insects insects and bugs.

Whether you are a teacher, a student or just an ordinary person who wants to know what bug is this? learn more or identify bugs, insect identifier, bug app finder, insects and bugs, spider identifier this application will help you get the results you want in the easiest way. Insect identify bug identifier app insect id with a second.

Create a collection of insects, bug finder, bug snap, identify bugs
Save your insect identifier, create your personal bug collection of insect identifier. Now you can record your stories while touring the forest, or surprise moments with bugs and insects, bug app finder, spiders, or bees, insect identify, bug identifier app, bug bite identifier app with the images you have taken. You will have your own bug finder insect identifier collection and insect identify bug identifier app.

Discover and learn more special bugs with bug identifier app
There are more than 1 million species of insects, bug snap and spiders identified in the world and many more are still waiting to be discovered.
Insects provides an individual so much ignored - and often misunderstood - window into our fragile ecosystem, consisting of the perfect balance of millions of components. In many ways, insects allow us to exist comfortably by providing a plethora of benefits including consumables, insect population control and answers to lingering questions of science - Understanding is a small step towards understanding the very world we live in. Easy to use with bug identifier app.

Download and experience our Bug Identifier Insect Identification app right away!\",\n \"scoreText\": \"4.2\",\n \"score\": 4.2038836,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.insectidentifier.insectid\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.insectidentifier.insectid/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.insectidentifier.insectid/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.insectidentifier.insectid/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.insectidentifier.insectid/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Open English\",\n \"appId\": \"com.openenglish.learningplatform\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.openenglish.learningplatform\",\n \"icon\": \"https://play-lh.googleusercontent.com/CiQRyDFN5z_XajKdf-idiJ-Kt_abvsgamIcmzCkoviLbQvAmeTIq0RFKIEyPVhn2XRY\",\n \"developer\": {\n \"devId\": \"Open English\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Open%20English\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"EXCLUSIVE APP FOR STUDENTS. Find the most effective method to learn English at your fingertips with a 360 methodology that will allow you to acquire all the skills you need to speak the language fluently. Dare to meet your goal, and be part of a community with more than a million students.

Once you are a student, download the App and live a unique study experience every day, from your cell phone or tablet, with a course that will allow you to learn easier and faster from the place you prefer. You will have access to your learning platform with:

• Unlimited classes 24/7.
• Certified native teachers.
• Dynamic lessons and practices.
• Native common expressions.
• Interactive videos.
• Personalized monitoring of your progress.
• Exclusive community for students.

Learning English is in your hands!

HOW DOES OPEN ENGLISH WORKS?
Our course is 100% online, it consists of 8 levels, and you will start at the corresponding level after taking the leveling test.

Everything that you need to learn English throughout the course can be found on the learning platform.

- Classes with native teachers: traditional or casual, you will find them every 30 minutes, and you can book them with just one click.
- Lessons: in this section, you will learn mainly about grammar, and as you solve it, you will unlock others to keep moving forward.
- Practice: interactive activities with modern and updated content to learn English. It includes videos and advanced speech recognition tools.
- Access Interactive Videos, Common Expressions, News, and a Professional English section where you can learn specific vocabulary related to your career.
You will also find a game component, which will allow you to "travel" around the world while you learn English, make your process more fun, and stay motivated to meet your goal. Earn miles, earn badges, and be part of leagues in which you will compete with other students.

WHY IS OPEN ENGLISH THE MOST EFFECTIVE METHOD?
Because we are for you 24 hours a day, 7 days a week, giving you the tools you need to achieve your goal of speaking English fluently at your own pace. Our platform is available to you to learn as much as you want with our native teachers and our interactive activities. In addition, we always accompany you throughout the process so that you never abandon your goal.

HOW AND WHEN IS MY LEVEL CERTIFIED?
Once you pass all the units and levels of the course, you will be able to obtain your Open English certificate. For this, at each level, you will develop an academic evaluation that will measure your reading, listening, comprehension, and oral expression skills. In each of them, our teachers will provide you with feedback for improvement.

Remember that you can also follow us on our social networks to learn more about Open English, and start fulfilling your goal of learning English.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4135804,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.openenglish.learningplatform\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.openenglish.learningplatform/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.openenglish.learningplatform/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.openenglish.learningplatform/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.openenglish.learningplatform/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Hooked on Phonics Learn & Read\",\n \"appId\": \"com.BigYellowTaxi.HookedPhonics\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.BigYellowTaxi.HookedPhonics\",\n \"icon\": \"https://play-lh.googleusercontent.com/ixFCbI5vzdF2yuD5ueX8LsHLm8spgkpEQ_amIeNg7ODmlyIiLMoD8fo_PQBZuull5A\",\n \"developer\": {\n \"devId\": \"Hooked on Phonics\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Hooked%20on%20Phonics\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn to Read Program:

More than 5 million children have learned to read with Hooked on Phonics over the past 35+ years. We utilize cutting edge research and guidance from leading educational experts to teach early reading skills most effectively. Machine-learning algorithms give children more practice in areas where they are struggling, and parents gain better insight into how their children are progressing with robust reporting features.

• Perfect for preschool, kindergarten, 1st grade and 2nd grade readers (ages 3-8)
• Correlates to Federal reading proficiency standards into 2nd grade
• More than 250 songs, award-winning videos, interactive games, reading lessons, & ebooks
• Earn virtual awards and achievement certificates
• 100+ ebook library with stories to complement every lesson
• Use on multiple devices – pick up where you left off, no matter where you are
• Add multiple readers and track their progress individually

Hooked on Phonics contains 42 progressive lessons featuring leveled learning activities that cover key building blocks of reading: short vowels, simple plurals, simple compound words, beginning and ending consonant digraphs and blends, two-syllable words, and sight words. Each lesson concludes with a story specially written with the words just learned. Your child will read this book, proudly, on their own.

If your child is in Pre-K, has not quite mastered the alphabet and letter sounds, or they are struggling with Step 1 of the Learn to Read program, the Pre-reader section may be a good place to start. The Pre-reader section is an exciting preschool learning program that introduces pre-readers to the alphabet and letter sounds – critical skills they’ll need to begin Step 1 of the Learn to Read program.

WHAT YOU GET WHEN YOU DOWNLOAD:

Hooked on Phonics is FREE TO TRY for 7 days. You’ll get access to the entire program from pre-reader to 2nd grade. Try it before you buy it, and experience the joy of your child reading their first book.

With a paid subscription, you will also have access to the Hooked on Spelling and Hooked on Math Apps at no additional cost (a $12/mo value). Simply download the apps and use your Hooked on Phonics login credentials!

Terms of use:
- Hooked on Phonics provides a 7-day free trial, which upon completion, becomes a monthly subscription charged to the user’s Google Play account.
- Subscriptions automatically renew unless auto-renew is turned off at least 24 hours prior to the end of the current period.
- Subscriptions may be managed by the user by going to the “subscriptions” section in the app store after purchase.


https://hookedonphonics.com/terms-of-service/

Practice Packs Mailed Home:
What sets Hooked on Phonics apart from other reading apps is the option to include complementary Practice Packs (additional purchase required) that help a child develop concepts of print, reinforce the lessons learned in the app, and give instructions for hands-on ideas for deeper learning at home. Built by education experts with feedback from our customers, the Practice Pack program includes 5 Pre-reader, and 15 Learn to Read packs that include workbooks, stickers, storybooks, and in the first Pre-reader pack, flashcards that are sent to the home, monthly. Users can customize how often they receive these shipments through their account dashboard to tailor the pacing to each family’s needs. Created in conjunction with the App, the Practice Packs allow children to engage in different modalities of learning, review the skills they’ve gained in the App, and practice hands-on skills—like writing and tracing—that can’t be mastered in a digital setting. The result is an immersive program of learning experiences that keeps kids highly engaged in learning to read.

Start your child on the path to becoming a confident lifelong reader, and download Hooked on Phonics now!\",\n \"scoreText\": \"4.1\",\n \"score\": 4.054755,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.BigYellowTaxi.HookedPhonics\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.BigYellowTaxi.HookedPhonics/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.BigYellowTaxi.HookedPhonics/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.BigYellowTaxi.HookedPhonics/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.BigYellowTaxi.HookedPhonics/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Sago Mini Daycare\",\n \"appId\": \"com.sagosago.Daycare.googleplay\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.Daycare.googleplay\",\n \"icon\": \"https://play-lh.googleusercontent.com/NED38se4gug8kFpJvD8Bw6ioLHLGeYkYeKTXihxMR4-9UIXgsECz4xANgGf64ijANqM\",\n \"developer\": {\n \"devId\": \"Play Piknik\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Play%20Piknik\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"*Try before you buy!* Play Daycare for free 6 times, no strings attached.

Help Dennis and Blueberry look after toddler versions of your favorite Sago Mini pals in Daycare! Between circle time, afternoon snacks, and plenty of activities to try, it’s going to be a busy day.

EXPLORE ACTIVITY CENTERS
Get creative at the painting center and make some masterpieces to hang on the wall, or try out some musical instruments and make up a song! Next, head over to the dress-up box and stage to put on a play. Ready for storytime? Gather on the carpet for circle time and listen to Dennis read one of his favorite books. Head outside for some fresh air with a game of hide-and-seek, or build a sandcastle at the playground.

DEVELOP EMPATHY WITH SAGO MINI FRIENDS
The Sago Mini toddlers may be little, but they have some big feelings! In Daycare, kiddos learn to identify emotions and develop empathy while taking care of toddlers like Robin, Jinja, Harvey, Jack, and other favorite characters. Tuck them in for an afternoon nap, get them ready for snack time, and cheer them up when they’re feeling blue!

IMAGINATIVE, OPEN-ENDED PLAYTIME
With no instructions and no rules to follow, how your child engages with the games is completely up to them. Act out stories, explore familiar daily routines, and interact with friendly characters – it’s all up to your child’s imagination.

• Explore a friendly daycare center with endless ways to play
• Meet new characters and uncover dozens of fun surprises
• Full of opportunities to create, build, and pretend
• Imaginative play encourages storytelling and creativity
• Perfect for preschoolers, ages 2-5
• Play without WiFi or internet – great for travel

Privacy Policy

Sago Mini is committed to protecting your privacy and the privacy of your children. We adhere to the strict guidelines set forth by COPPA (Children’s Online Privacy Protection Rule), which ensure the protection of your child’s information online. Read our full privacy policy here.

Terms of use: sagomini.link/termsofuse

Sago Mini is an award-winning company devoted to play. We make apps and toys for preschoolers worldwide. Toys that seed imagination and grow wonder. We bring thoughtful design to life. For kids. For parents. For giggles.

We love making new friends!
Instagram: @sagomini
Facebook: Sago Mini
Say hello@sagomini.com\",\n \"scoreText\": \"4.0\",\n \"score\": 3.99,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.sagosago.Daycare.googleplay\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.Daycare.googleplay/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.Daycare.googleplay/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.Daycare.googleplay/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.Daycare.googleplay/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Camera Math - Homework Hel\\u202ap\",\n \"appId\": \"com.crazylab.cameramath\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.crazylab.cameramath\",\n \"icon\": \"https://play-lh.googleusercontent.com/Ro3Thm3WTWnxKF0yuKE-kr7F_jtEyZDibgqmXCBXxgPIY4UJupzQ1blqpUdvqlyrUow\",\n \"developer\": {\n \"devId\": \"Crazysloth Pte. Ltd\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Crazysloth%20Pte.%20Ltd\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Attention students! Camera Math solves all your math problems. Yes, by all we mean word problems too. Simply take a photo of the question and Camera Math will automatically find the best solution to it.


Camera Math is an essential learning and problem-solving tool for students! Just snap a picture of the question of the homework and Camera Math will show you the step-by-step solution with detailed explanations.
Camera Math covers all levels of math including Arithmetic, Algebras, Trigonometry, Pre-Calculus, Calculus, and more.
【Features】
- Arithmetic: addition, subtraction, multiplication, division, fractions, decimals
- Algebra I: systems of equations, functions, real numbers, exponents, rational expressions
- Algebra II: linear equations, inequalities, graphs, matrices, polynomials and radical expressions, quadratic equations
- Pre-calculus: functions and graphs, lines and rates of change, sequences and series, polynomial and rational functions, exponential and logarithmic functions, analytic geometry
- Calculus: limits, derivatives, integrals
- Trigonometric: sine function, cosine function and tangent function
- Statistics: analyzing categorical data, displaying and comparing quantitative data, summarizing quantitative data
- Geometry: points, lines, planes, angles, parallel lines, triangles, similarity, trigonometry, quadrilaterals, transformations, circles and area

【Description】
Camera Math is a simple and efficient tool application for math problem solvers. Take a photo and search questions without any ads to get answers, and learn more efficiently for you.
Don’t know answers to the math questions, and no one around to help with math homework? Camera Math is your personal assistant for math homework. When you find a math problem that you don’t know how to solve, you can easily take a photo with Camera Math, and you’ll get the answer in a few seconds. Camera Math provides you with detailed explanations of the questions to help you learn math effortlessly.
At the same time, welcome to join our community group to talk with more people, provide us with feedback, ask for help from others, open to discuss with more topics and meet more new friends.
- Take a photo for your math problem in a snap, easy to use and efficient.
- Recognize math problems quickly and accurately. The homework solver is like a teacher on the spot.
- Cover diverse mathematical problems for students at all levels, whether it is an expression or a text problem.
- The whole network search provides diversified problem-solving methods, and provides you with at least two options for the same problem.
- Get detailed step-by-step solutions for solving math problems to deepen your understanding of math problems, help you deeply understand where you are wrong in order to improve math performance.
- The scientific calculator can support manual editing of mathematical questions in the math keyboard.
- Keep historical search records, review them at any time.

Twitter : https://twitter.com/CameraMath
Instagram : https://www.instagram.com/cameramath

Feel free to contact us if you have any questions support@cameramath.com
Terms of Use : https://cameramath.com/?n=pm.TermsOfUse
Privacy Policy : https://cameramath.com/?n=pm.PrivacyPolicy\",\n \"scoreText\": \"3.4\",\n \"score\": 3.419355,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.crazylab.cameramath\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.crazylab.cameramath/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.crazylab.cameramath/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.crazylab.cameramath/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.crazylab.cameramath/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"CA DMV Official Mobile App\",\n \"appId\": \"com.DMV.DMV\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.DMV.DMV\",\n \"icon\": \"https://play-lh.googleusercontent.com/YxGKBHPtgQje7PYKNe3s3bRSjFMngM-EOlXC4qflX5y_RS5zXU3YA8cxECegrGeSRwU\",\n \"developer\": {\n \"devId\": \"California Department of Motor Vehicles\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/California%20Department%20of%20Motor%20Vehicles\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get excited about saving time and taking care of DMV business with your smartphone! Prepare to take the written driver’s license exam with sample tests, apply for your REAL ID, renew your vehicle registration, access your MyDMV account, and more.\",\n \"scoreText\": \"3.8\",\n \"score\": 3.78,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.DMV.DMV\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.DMV.DMV/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.DMV.DMV/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.DMV.DMV/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.DMV.DMV/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"DMV Practice Test\",\n \"appId\": \"com.dmv.genie.practice\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.dmv.genie.practice\",\n \"icon\": \"https://play-lh.googleusercontent.com/o2Ts9py6p6id5z1G6Qj1IEzIVbkJtN5F5uVh6p3MlwbKFGKFyke3H6AQWHG7nJsh9w\",\n \"developer\": {\n \"devId\": \"Team Media Social\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Team%20Media%20Social\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Get ready for your car, motorcycle, or CDL learner's permit test or driver's license test with questions that are based on your state’s official driver’s manual.
Our users swear that most of the questions are very similar (in fact, often identical) to those on the real test. You’ll know exactly what to expect since our DMV practice tests have the same passing score as the actual test.
State specific
- With specific questions for each U.S. state, the app works for every DMV, DDS, BMV, MVA, RMV, DOR, MVC, MVD, DOT, and DOL in the country.
Our practice tests are an effective, interesting way to study for your DMV knowledge test (car, motorcycle or CDL).

This app is useful for the learner's permit test, the driver’s license test, and the senior citizen's refresher test. The written part of those tests is the same.

Why use DMV Practice Test?
Realistic
- Just like the actual test, our practice tests are based on the official 2022 DMV manual for your state.
Smart hints
- These help with tricky questions and steer you in the right direction
Review every question
- Learn from your mistakes.
Detailed explanations
- When you make a mistake, the app tells you right away if your answer is wrong and why. You understand and remember every wrong answer.
Personalized Challenge Bank
- A test that's automatically made up of your missed questions from all your practice tests.
New questions every time:
- To keep you focused, we randomize questions and answers each time you start a practice test.

What’s the Exam Simulator
As close as it gets to the actual DMV permit test or driver's license test experience:
- Has the same number of questions as the real thing.
- Stops as soon as you have reached the passing or failing score.
- Skip as many questions as you like.\",\n \"scoreText\": \"4.0\",\n \"score\": 3.96,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dmv.genie.practice\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.dmv.genie.practice/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.dmv.genie.practice/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.dmv.genie.practice/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.dmv.genie.practice/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"اپارات اصلی\",\n \"appId\": \"com.aparaatt\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.aparaatt\",\n \"icon\": \"https://play-lh.googleusercontent.com/HBWaLl2TeRb1_mfx15_UgkGU04sStF9JqpyhOSHLvIJZq002-k2Hfn8ja_BVo5mZWWE\",\n \"developer\": {\n \"devId\": \"Moshavere & Ravanshenasi\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Moshavere%20%26%20Ravanshenasi\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"🔸به نام خداوند بخشنده مهربان 🔸
برنامه آپارات ایکون ضبط ویدیو داره
سایت اپارات فیلم و سریال اطلاعات عمومی که داری رو خیلی میتونه بالا ببره
که میتونی آپارات جدید رو برای همیشه داشته باشی
یه اسم دیگه داره که جوان ها بهش میگن آپارات کودک که بنظرم اسم جالبیه
همه چیز قدیمیش خوبه مثل آپارات قدیمی که خیلی امکانات داره
از دیگر استفاده هایی که داره آپارات اسپرت هست که ورزشیه
بنظرم آپارات جدید فارسی میتونه خیلی پیشرفت کنه
چون آپارات جدید 2023 اپدیت کرده
اگه میخوای آپارات قدیم رو داشته باشی پیشنهادم به تو همین برنامه هستش
دوستان آپارات کودک قدیمی هم یه دسته نوستالژی هستش که شاملش میشه
آپارات کودک بدون اینترنت هم خیلی ها میخوان داشته باشن
اما آپارات کودک کودکان بهترین نوع آپارات قدیمی اصلی هست که مثل خودش نیست
اگه میخوای زبانش فارسی باشه پس آپارات قدیمی فارسی رو مد نظر داشته باش
اگه به ورزش علاقه داری آپارات اسپرت ورزشی رو میتونی بهش فکر کنی
راستی توی انگلیسی بهش میگن aparat که معنی نمایش ویدیو میده
یا به عبارت دیگه aparat video که همون معنا رو میتونه داشته باشه
با تشکر دوست خوب من\",\n \"scoreText\": \"4.1\",\n \"score\": 4.08,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.aparaatt\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.aparaatt/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.aparaatt/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.aparaatt/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.aparaatt/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Coin Value Identify Coin Scan\",\n \"appId\": \"com.beta.coin.identifier.identify.value\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.beta.coin.identifier.identify.value\",\n \"icon\": \"https://play-lh.googleusercontent.com/3vsvylvAnhJNp9YNF1cryHy12NJF4ckVVkvNpM9Rp4XFFfastAju13gAzt-LUQ61UpbZ\",\n \"developer\": {\n \"devId\": \"Betacoders\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Betacoders\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Quickly identify coins & stamps, learn their value, and save your collection


Are you a coin collector who finds interesting and rare coins on a regular basis?


Do you collect unique stamps from different countries?


Want a quick and easy way to accurately identify coins and stamps?


If you’re a coin collector, you need a reliable way to identify the coins you find so that you can assess their value. It can also be hard to keep track of all the coins in your collection and the total value of everything you own.


Coin collectors will love the functionality, utility, and ease-of-use.


the application is an powerful mobile app that utilizes AI-driven image recognition technology to accurately identify any coin or stamp in seconds!


The identification process is simple! All you have to do is take a quick photo of your coin or stamp (or upload it from your phone storage). Then crop your photo with simple editing tools to maximize clarity and accuracy. From there, the app will match your coin or stamp to information in the extensive database.


Each identification provides a detailed overview of the coin or stamp you’re identifying. This information includes the country of origin, the issue year of the collectible, and so much more. With this information, you’ll be able to learn the value of your coin or stamp easily and can make informed decisions about your collection over time.


You can record and save your collections right within the app, so you never lose track of your collection and always know the value of what you have.



With all of your collection data at your fingertips, it makes it incredibly easy to sell your collectibles and enjoy your collections.



Key Features:



Identify any coin or stamp with a quick photo

Record and save your collections right in the app

Keep track of the total value of all your coins and stamps


For coin and stamp collectors, the application is the perfect app to have in your pocket. It’s never been easier to identify any coin or stamp, keep track of your collections, and enjoy your hobby every day.


Download the application today to see what’s possible.\",\n \"scoreText\": \"4.0\",\n \"score\": 3.9719627,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.beta.coin.identifier.identify.value\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.beta.coin.identifier.identify.value/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.beta.coin.identifier.identify.value/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.beta.coin.identifier.identify.value/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.beta.coin.identifier.identify.value/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"ISS Live Now: View Earth Live\",\n \"appId\": \"com.nicedayapps.iss_free\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.nicedayapps.iss_free\",\n \"icon\": \"https://play-lh.googleusercontent.com/YTXT8e4TXfWcg828PxDsxUnCCHOyQUCpK9qjhtx48-SzhlzmVxkWJIrIe-kLR1J4oA\",\n \"developer\": {\n \"devId\": \"VKL Apps\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/VKL%20Apps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"See the Earth as the astronauts see it with a 24/7 video live stream from the International Space Station.

If you like space or astronomy then you will love ISS Live Now.

ISS Live Now gives you easy access to a live video feed of Earth from the International Space Station, which is orbiting about 400 kilometers (250 miles) above the planet. The app provides an exciting experience marked by thoughtful design and features numerous customization options.

With ISS Live Now, you can view amazing live HD video streams directly from the International Space Station’s cameras.

The app utilizes the native Android Google Map (ISS tracker), which allows you to follow the Space Station’s orbit around our planet. You can zoom, rotate, drag and tilt the map; choose between different types of maps (such as satellite or terrain); and view data such as the speed of orbit, altitude, visibility, latitude and longitude, and even what country the Station is above at any moment in time. All of these options are easily customizable from the settings menu.

You will have seven different sources of live video streaming, including:

1. Live HD camera: A wonderful HD video stream of our planet.
2. Live standard camera: It shows a live stream of the Earth and, from time to time, details about the ISS (like tests, maintenance and communication with Earth).
3. NASA TV: The television service of the United States government agency NASA (National Aeronautics and Space Administration). You can watch science and space documentaries, interview with scientists, astronauts, engineers and personalities such as Elon Musk.
4. NASA TV Media.
5. Spacewalk (recorded): Beautiful HD images of astronauts from cameras outside the ISS.
6. Inside the International Space Station: Take a video tour of each module inside the ISS, all explained by the astronauts.
7. Eventual channel: Temporary live cameras from NASA, the European Space Agency (ESA), the Russian Space Agency (Roscosmos) and the SpaceX.

You can also watch these live feeds on your television via Google Cast.

You even have the option to be notified when the next sunset or sunrise will occur, allowing you to watch it live directly from the International Space Station.

You will be able to receive notifications on time and watch live events such as arrival and departure of manned and unmanned spacecrafts (Soyuz, SpaceX Crew Dragon, Boeing CST-100 Starliner, Rocket Lab, Arianespace, Blue Origin, Northrop Grumman), spacewalks, launches (Falcon, SpaceX, Dragon, Progress, Cygnus, ATV, JAXA HTV Kounotori), dockings, undokings, rendevouz, capture, experiments, communications between NASA's/Roscosmos ground control and astronauts.

Do you want to see the ISS in the sky at night?
This is the easiest way to spot the Station. With the built-in ISS detector tool, ISS Live Now will tell you when and where to look for the Space Station. You’ll receive a notification a few minutes before it passes by your location.

You can also choose to be notified when the ISS is about to pass over your region during the day, allowing you to admire your country from space.

Explore the International Space Station with Google Street View

Thanks to Google, aspiring astronauts can now simulate the experience of floating on the International Space Station (ISS). The company worked with astronauts to provide a Google Street View of the low-orbit satellite, from its science labs to its beautiful Earth-facing Cupola window.

Note:
When the ISS (International Space Station) is on the night side of Earth, the video image is black, which is normal.

Sometimes, video is not available due to transmission issues, or because the crew is changing cameras. In such cases, you will usually have a blue or blank screen. In a few minutes the transmission should return, so, please be patient. This is not a problem with the app.\",\n \"scoreText\": \"4.8\",\n \"score\": 4.755809,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.nicedayapps.iss_free\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.nicedayapps.iss_free/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.nicedayapps.iss_free/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.nicedayapps.iss_free/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.nicedayapps.iss_free/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"AI Lawyer - Legal Assistant\",\n \"appId\": \"com.iceo.law.ai\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.iceo.law.ai\",\n \"icon\": \"https://play-lh.googleusercontent.com/rlSY7fSJBph9TM9XhLr-5rz8scWtwUFKJzJCQ5Ao51Q3ikwoWuSCKgxgZQxycwBBBrAR\",\n \"developer\": {\n \"devId\": \"App Uni\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/App%20Uni\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"AI Lawyer - Legal Assistant provides clear definitions of lawconcepts that anyone may comprehend. This AI Lawyer - Legal Assistant app differs from the standard dictionaries found in law textbooks in stationary stores. Anyone may quickly understand the law thanks to the clear writing and explanations in our free AI Lawyer - Legal Assistant app. To help you understand the meaning behind the jargon, each lawconcept and term is provided with an audio option.

law Words dictionary is a tool that helps people learn new words and lawconcepts quickly and retain that knowledge for a long time. Once you've installed the AI Lawyer - Legal Assistant, type the word you're looking for into the search box to get a detailed explanation of its usage.

The term "law" often refers to a set of regulations that are established and upheld by social or governmental institutions in order to control conduct. However, its exact definition is still up for debate. Both a science and an art have been used to describe it. Statutes can be created by a group of legislators or a single lawmaker; the administration can issue decrees and regulations; or judges can set precedent, mainly in common law jurisdictions. Private individuals have the power to enact legally binding agreements, such as arbitration clauses that substitute alternative dispute resolution procedures for traditional court action. A constitution, whether written or implied, and the rights enshrined within may have an impact on the laws as they are being made. The law influences politics, economy, history, and society in a variety of ways and mediates interpersonal conflicts.

If you have any question about law, you can ask AI.

Whether you are a Contracts law, Corporate law, Bankruptcy paralegal, Litigation paralegal, General practice law, Associate attorney, Immigration law, Intellectual property law, Family law, Personal injury attorney, Trademark paralegal, Litigation attorney, Associate general counsel, Employment law, Corporate attorney, or any other type of law, you can benefit from this course.

This free lawdictionary is really beneficial. Whatever your circumstance, this online AI Lawyer - Legal Assistant provides the terms you need to understand all aspects of terms and definitions in law.
We need your helpful suggestions in order to improve this app's functionality. Should you have any questions, email us. Download and rate! I appreciate the help.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.4473686,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.iceo.law.ai\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.iceo.law.ai/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.iceo.law.ai/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.iceo.law.ai/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.iceo.law.ai/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Moodle\",\n \"appId\": \"com.moodle.moodlemobile\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.moodle.moodlemobile\",\n \"icon\": \"https://play-lh.googleusercontent.com/WETi4kiHx6KfyGBDsZ1-jgPdAATt8n6Fq4tK05TOBe_z6NxsoWjrGkDyy8PIW29pvJw\",\n \"developer\": {\n \"devId\": \"Moodle Pty Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Moodle%20Pty%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"This official app will ONLY work with Moodle sites that have been set up to allow it. Please talk to your site administrator if you have any problems connecting.

If your site has been configured correctly, you can use this app to:

- Browse the content of your courses, even when offline
- Receive instant notifications of messages and other events
- Quickly find and contact other people in your courses
- Upload images, audio, videos and other files from your mobile device
- View your course grades
- and more!

Please see http://docs.moodle.org/en/Mobile_app for all the latest information.

We’d really appreciate your feedback on what else you want this app to do!

The app requires the following permissions:

- Record audio: For recording audio to upload to your site as part of a submission
- Read and modify the contents of your SD card: Contents are downloaded to the SD Card so you can see them offline
- Network access: To be able to connect with your site and check if you are connected or not to switch to offline mode
- Run at startup: So you receive local notifications even when the app is running in the background
- Prevent phone from sleeping: So you can receive push notifications anytime\",\n \"scoreText\": \"4.4\",\n \"score\": 4.3883495,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.moodle.moodlemobile\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.moodle.moodlemobile/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.moodle.moodlemobile/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.moodle.moodlemobile/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.moodle.moodlemobile/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Alison: Online Education App\",\n \"appId\": \"com.alison.mobile.flutter\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.alison.mobile.flutter\",\n \"icon\": \"https://play-lh.googleusercontent.com/LWJqeU9f-1FCKbGFWURkJzVIB6MzGZc_faGWV8uu7wbPo8hUWmvNMStfI_n5w5YYNa0\",\n \"developer\": {\n \"devId\": \"Alison eLearning\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Alison%20eLearning\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn Anything, Anywhere, Anytime For Free.

Earn globally recognised, CPD-accredited diplomas and certificates from over 4,000 courses. Join Alison’s community of 30 million+ learners from over 195 countries on the world’s largest free online learning and empowerment platform.

Are you looking to upskill?

Or looking for a career change?

Perhaps, you want to launch a side hustle?

Whether you’re a student, a recent graduate, an employee, an entrepreneur, or simply a lifelong learner – Alison gives you access to the tools you need to empower yourself and get closer to your dream future.

Learn across 9 categories: IT, Health, Language, Business, Management, Personal Development, Sales & Marketing, Engineering & Construction, and Teaching & Academics

WITH ALISON, YOU CAN
Tailor your learning based on your needs and interests
Build job-ready skills for in-demand roles
Grow industry-relevant knowledge and upskill
Showcase accredited Certificates and Diplomas on your resumé

WITH THE ALISON APP, YOU GET
Free access to 4,000+ mobile-friendly CPD-accredited courses
Course content suitable for use in areas with low internet connectivity
Personalized course recommendations
Flexible self-paced learning at your own convenience
To schedule study reminders and track your progress
Synced coursework progress across all your devices


POPULAR CERTIFICATE COURSES
Media Studies - Gaming, the Internet and Social Media
Teaching English as a Foreign Language (TEFL)
Fundamentals of Health and Social Care
JavaScript Application Programming
Learning Lean Six Sigma: White Belt
Basics of Motivational Interviewing
Anger Management and Conflict Resolution

POPULAR DIPLOMA COURSES
Diploma in Caregiving
Diploma in Business Administration
Diploma in Customer Service
Diploma in Mental Health
Diploma in Environmental Management
Diploma in Workplace Safety & Health
Diploma in Food Safety

Learn with expert-curated study material: Increase your knowledge by getting access to over 4,000 free courses with certificates created by subject matter experts. Who knows, you might just end up being more skilled than your boss (if you aren't already).

Pick up right where you left off: Whether you’re at the beach, in the mountains, or lazing in bed under a blanket, your learning never has to stop. Unless of course, you want to stop.

Explore our extensive directory of industry-relevant courses: Is there a new skill out there? We've got a course for it. With our ever-evolving course library, learn data science, animation, marketing, cybersecurity, real estate, interior design, creative writing, and much more. When there is solid proof of alien life on Earth, we'll have a course on how to talk to them too.

Share your achievements: Get your certificates and diplomas posted right to your doorstep. Hang it on your wall or just hang out with it, we won’t judge.

Take your career forward with Alison in just a few clicks - empower yourself today!

Alison is a for-profit social enterprise, dedicated to ensuring anyone can study anything, anywhere, at any time, for free online.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.656992,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.alison.mobile.flutter\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.alison.mobile.flutter/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.alison.mobile.flutter/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.alison.mobile.flutter/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.alison.mobile.flutter/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Miga Town: My Hospital\",\n \"appId\": \"com.miga.myhospital\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myhospital\",\n \"icon\": \"https://play-lh.googleusercontent.com/7PpVJY_jFPaMRhy1G2AR3TxaE2qhAW-eF4nH-gSFtATGsIYuNUlwxtyJEVFiqGHJ6lGB\",\n \"developer\": {\n \"devId\": \"XiHe Digital (GuangZhou) Technology Co., Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/XiHe%20Digital%20(GuangZhou)%20Technology%20Co.%2C%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Miga hospital--Experience your busy life in a medical center and you’ll have different career choices such as doctor, pharmacist and professor.

Designed with more interesting scenes and self-definedgame-play to create a more wonderful story!

To experience different careers!

You can select a role to play from more than 10 options such as a pediatrician, ophthalmologist or general surgeon derived from our real world. You can even become a nursing worker or restaurant owner in the game. You’ll experience joy, anger, sorrow and happiness in your own way here.

Explore the special Outdoor scenario to find treasures, but remember, you have to overcome different challenges and risks in this process.

Features
- Six scenarios: Entrance Floor, General Departments, Laundry, Baby Care Floor, Lab & Treatment Floor, Outdoor

- Entrance Floor: where the ambulance stops; a patient registers in the reception room; the emergency room is equipped with varieties of medical apparatus and instruments for diagnosis; anyone can buy a bunch of flowers in the flower shop for his or her visit to a patient.

- General Departments & General Nursing Floor: where Gastroenterology Department, Ophthalmology Department, Dental Department and general consulting rooms are located, which are equipped with more specialized diagnosis tools.

- Laundry: where cleaners are busy doing the laundry; let’s applaud for them.

- Baby Care Floor: which is equipped with necessary tools for baby care and common devices in the obstetrics and gynecology department.

- Lab & Treatment Floor: there are various tools in a real hospital, such as bandages, sickbeds, wheelchairs, etc. Mysterious ingredients are used in the lab to create capsules having among effects.

- Outdoor: don’t touch any discarded objects, for they may make you get into troubles. Please keep cautious.

--Give full play to children’s creativity
--Tens of billions of customized modes
--No third-party advertising
--No time limit or score ranking list

contact us:xihe@xihegame.com\",\n \"scoreText\": \"3.3\",\n \"score\": 3.2919464,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.miga.myhospital\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myhospital/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myhospital/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myhospital/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.miga.myhospital/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Stone Identifier Rock Scanner\",\n \"appId\": \"com.stoneidentifier.rockid\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.stoneidentifier.rockid\",\n \"icon\": \"https://play-lh.googleusercontent.com/xVGL1_A1DT64ArkRCCuc8X7eGRAyJjJpVBfdfdcFLgUsUpCPfvbHmTnbjQm0TCxAQyM\",\n \"developer\": {\n \"devId\": \"Identifier Studio\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Identifier%20Studio\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Any good rock hunter is sure to come across a rock that he has trouble identifying and wonder what crystal is this? Once you've determined what type of rock you have, take a close look at its color and composition. And rock identifier will help you identify it. To rock identifier, think like a geologist and examine its physical characteristics for clues. With Stone Identifier Rock Scanner application it will help you identify the most common rocks on earth or even crystals, gemstones, stone id, rock id...

Created with the intent of spreading love and light to all crystal enthusiasts. Start exploring, learning, and recording your geological surroundings with Stone Identifier Rock Scanner Rock id ! Use this app to discover the magic of crystals and gemstone identifier, rock identifier, gem identification app, stone id, mineral identifier, what crystal is this?

Rock identification has gotten easier with the Stone Identifier Rock Scanner Rock id App. Simply take or upload a picture of your rock, and Stone Identifier Rock Scanner can help you identify it in seconds including gemstone identifier gem identifier mineral identifier, stone id.

Detect the crystals by image gallery with rock identification Crystal identifier , search for different crystals by the extensive filters to hone down your search further. Want a blue crystal that corresponds to the Throat Chakra and aids meditation? No problem! Looking for a green crystal from South America with a vitreous lustre? We can show you loads! Looking to learn about a random new crystal? Use the dice button to pick one at random! We can show you more gemstone identifier gem identifier mineral identifier.

You can also use wishlist to build up your collection and quickly access them using the filters to only show ones you own.

Many crystals come in so many different colours and formations, it would be impossible to include every variation! We hope you enjoy the beautiful artwork we have created, and that you find our app helpful! This is not a fixed and exhaustive list of crystals, we're always looking to add, update and expand this app to make it as useful as possible.

Stone Identifier Rock Scanner Crystal identifier Key features:
- Identify many kinds of rocks with rock identifier Crystal identifier.
- Rock identification Crystal identifier is instantly identify rock with just a few second.
- An impressive accuracy rate for photo identification, gem identification app, stone id.
- Rich learning source about rocks with rock identifier crystal identifier.
- Beautifully-designed and user-friendly interface.
- Record your geological observations, easily build your own rock collection in the app.
- Added more content/resources for learning about geology - gemstone identifier gem identifier, stone id, what crystal is this?
- Create your own collection fast with the rock collection feature.

Whether you are a geologist, mineral explorer, hobbyist, student, teacher, or just want to learn more about rocks, the rock recognizer provides guidance and instruction on the easiest and most comprehensive stone.

Create a rock collection
Save your rock hunting treasure, create your personal rock collection of rock identification gem identifier rock id stone id. Now you can record your stories in stones and minerals, gemstones, crystals, gem identification app with the images you have taken. You will have your own rock collection with rock scanner gem identifier mineral identifier rock id what crystal is this?

Discover special stones
Interested in rough stones, natural gemstone identifier or crystal clusters, mineral identifier, gem identification app? Download this rock identification app to find out what you never knew about rocks around the world. Discover interesting information about stones, such as Healing Crystals, Falling Stones, Birthstones, Zodiac Gems, and what crystal is this?

Download and experience our rock identification application right away!\",\n \"scoreText\": \"3.9\",\n \"score\": 3.912088,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.stoneidentifier.rockid\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.stoneidentifier.rockid/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.stoneidentifier.rockid/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.stoneidentifier.rockid/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.stoneidentifier.rockid/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Pearson+\",\n \"appId\": \"com.pearson.plus\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.pearson.plus\",\n \"icon\": \"https://play-lh.googleusercontent.com/-sMQQEmO-NEpkgc6IjixLQ7PTTI4IM-UgBuLhsCIgNyfUefzTbJkaBh18ItoJ1oge1M\",\n \"developer\": {\n \"devId\": \"Pearson Education, Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Pearson%20Education%2C%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Pearson+ mobile app provides you access to all your Pearson eTextbooks in one place, as well as curated bite-sized video explanations of complex topics for your toughest college courses. Get started by logging in with the same username and password you created via the web-based version of Pearson+.

Feature highlights:
-- Anytime, anywhere access to eTextbook content and embedded media assets
-- Short video explanations of complex topics to help you succeed in the classroom
-- Ability to easily create and refer to your notes and highlights within the eTextbook 
-- Have your eTextbook read aloud to you with our audiobook feature (available for most eTextbooks)
-- Search across all the content in the eTextbook to easily find exactly what you need
-- Create your own flashcards or use pre-built ones to help you study
-- Personalize the reading experience to best meet your needs

For bug reports or general feedback, please reach out to us at PearsonPlusFeedback@pearson.com.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.724138,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.pearson.plus\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.pearson.plus/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.pearson.plus/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.pearson.plus/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.pearson.plus/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Miga Town: My Store\",\n \"appId\": \"com.miga.mystore\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mystore\",\n \"icon\": \"https://play-lh.googleusercontent.com/7zipJa9g6JgVNosaPu-g3WoUTmNyibgI0bnO3IE6DOgmiVn0qN1X9Ouxo_ZEFk875O8\",\n \"developer\": {\n \"devId\": \"XiHe Digital (GuangZhou) Technology Co., Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/XiHe%20Digital%20(GuangZhou)%20Technology%20Co.%2C%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"You can define the dress-up, hairstyle and magical makeup in the game depending on your preferences. Show your unique charm and write down your own story!

Creation

Show off all your creative ideas in the Miga Store . You can change your clothes, dye your hair into any color, or create your best friend and explore unknown places together with him/her. Tens of billions of changes allow you to make any combination you want.

Feature

- 6 scenes: Apartment, sports store, supermarket, clothing store, fashion store, hair salon

- Apartment: Two apartments in different styles may let you experience different moods

- Sports store: Head towards the sports supermarket to buy golf supplies or take part in the boxing training

- Supermarket: Spend some time on food and enjoy the enticing delicacies

- Clothing store: You can find a large collection of the latest clothes here to dress yourself up. Don't leave in a hurry. Take a photo to memorize this moment!

- Fashion store: Take time to pick out cute or cool glasses. Rich accessories are ready for you to choose

- Hair salon: More beautiful hair styles and more DIY tools are waiting for you to create your own characters

--Give full play to children’s creativity
--Tens of billions of customized modes
--No third-party advertising
--No time limit or score ranking list

contact us:support@xihegame.com\",\n \"scoreText\": \"3.2\",\n \"score\": 3.244737,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.miga.mystore\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mystore/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mystore/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mystore/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mystore/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"MindPal - Brain Training\",\n \"appId\": \"com.elektron.mindpal\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.elektron.mindpal\",\n \"icon\": \"https://play-lh.googleusercontent.com/9AaZjs8PkbI4MyNTiP4sjER-G3a0uTCaMDyNBEBYUKni8jXUO_f0Q7piC_TQv_g5Eg\",\n \"developer\": {\n \"devId\": \"Elektron Labs Inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Elektron%20Labs%20Inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"MindPal is your daily brain trainer that challenges your memory, attention, language, and problem solving skills. Enjoy a personalized daily workout of entertaining games based on the skills you'd like to improve.

MindPal includes 40 educational games that train 7 key cognitive areas: Memory, Attention, Language, Math, Flexibility, Speed, and Problem Solving.

Track your progress and compare your brain scores with others now!

FEATURES

- Over 35 games and 1000 levels to train your brain in different skills.
- Personalized daily workout based on your training goals.
- Expand your vocabulary and writing skills with word games.
- Improve your memory, attention, math, and problem solving skills.
- Track your performance and get smarter everyday!
- Get in-depth insights and compare your scores to other users.\",\n \"scoreText\": \"4.5\",\n \"score\": 4.535333,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.elektron.mindpal\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.elektron.mindpal/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.elektron.mindpal/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.elektron.mindpal/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.elektron.mindpal/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Ukulele by Yousician\",\n \"appId\": \"com.yousician.ukulele\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.yousician.ukulele\",\n \"icon\": \"https://play-lh.googleusercontent.com/SWXsrjcGc32Wwt126x5IFJxhRUq9ctmSSi6Nb3UG3GFqY0rvgNang4oVgrLcJiV9eOw\",\n \"developer\": {\n \"devId\": \"Yousician Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Yousician%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Play the songs YOU want on ukulele with Ukulele by Yousician! Learn ukulele the fast and easy way with fun step-by-step vids and instant feedback. Learn chords, tabs, strumming and more while you play your favorite songs! Install Ukulele by Yousician today and start playing for free.

WHY YOU’LL LOVE UKULELE BY YOUSICIAN
• Learn ukulele whenever and wherever you want. All you need is a uke and a mobile device!
• Start playing songs right away — even if you’re a complete beginner!
• Have fun with bite-sized lessons and interactive gameplay
• Get instant feedback while you play your uke
• Follow a learning path designed by pro music teachers
• Stay motivated and learn faster with personal progress tracking
• Compete with friends and millions of Yousicians in weekly challenges

PLAY UKULELE LIKE A PRO
• Learn and master skills like chords and strumming with step-by-step lessons
• Play your favorite songs on a real uke with interactive walkthroughs
• The app listens and gives you instant feedback
• Earn gold stars, level up and learn ukulele fast!

LEARN UKULELE WITH FUN GAMEPLAY
• Ukulele chords
• How to tune your ukulele
• How to read sheet music and ukulele tabs
• Strumming patterns
• Fingerpicking
• Music theory
• Songs by top artists in your favorite genres
• And tons more skills to play ukulele like a pro!

PLAY EVEN MORE WITH PREMIUM+
• Premium+ unlocks unlimited and uninterrupted playtime for ukulele and other instruments.
• Monthly and annual plans available.
• Prices may vary in different countries.
• Subscriptions renew automatically. You can disable auto-renew in your Yousician account on yousician.com.
• You can cancel your subscription in your Google Play store account.

ABOUT YOUSICIAN
Yousician is the world’s leading platform to learn and play music. With a combined 20 million monthly users across our award-winning apps, we’re on a mission to make musicality as common as literacy.

Check out our other apps:
• Yousician
• Piano by Yousician
• GuitarTuna, the #1 tuner app worldwide

Got ideas to make Yousician even better? Simply send your suggestions to: feedback.yousician.com
• https://yousician.com/privacy-notice
• https://yousician.com/terms-of-service

Ready to master the uke? Install Ukulele by Yousician and learn chords, songs and more today. Let’s play!\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5354333,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.yousician.ukulele\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.yousician.ukulele/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.yousician.ukulele/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.yousician.ukulele/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.yousician.ukulele/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"BurlingtonEnglish\",\n \"appId\": \"com.burlingtonenglish.burlingtonenglish\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.burlingtonenglish.burlingtonenglish\",\n \"icon\": \"https://play-lh.googleusercontent.com/2pr3gKo9cNXQbPCdAkkNLyEiiDNUST9JMGUenDUDQqJ_pdMC2x2bfE1-k_Hqo0DUF4M\",\n \"developer\": {\n \"devId\": \"Burlington Education Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Burlington%20Education%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"What is BurlingtonEnglish?

BurlingtonEnglish is a unique blended English program for adults. It offers comprehensive General English Courses as well as a wide range of Career Courses, and provides a complete language-learning solution. Students get any time-anywhere access to state-of-the-art online interactive courses.
Burlington’s cutting-edge speech technology, the SpeechTrainer®, provides individualized feedback and instruction in pronunciation.

With BurlingtonEnglish, students effectively improve their pronunciation, vocabulary and overall fluency, giving them the confidence to communicate successfully in any situation.

Special Features:

- SpeechTrainer®
Individualized Pronunciation Feedback and Instruction
This patented speech processing technology helps learners perfect their pronunciation and listening skills. The SpeechTrainer® analyzes students’ spoken English, adapts to a wide variety of accents to discern specific difficulties, and corrects mispronunciations through individualized training. This will help improve students’ pronunciation, comprehensibility, and confidence to successfully communicate in English.


- Mobile Vocabulary Practice
Vocabulary Practice Any Time, Anywhere!
Mobile Vocabulary Practice allows students to get additional vocabulary practice on the go. Students can access wordlists for their courses to reinforce their language learning whenever and wherever they are.

- Using Your Computer
Through a series of short animated videos, students develop basic digital literacy skills such as maneuvering the mouse and using the keyboard, as well as gain a basic understanding of a computer. It is designed for learners with limited English proficiency and limited-to-no digital literacy, using easy-to-follow visual demonstrations.

- Personalized, Data-Driven Learning!
Real-time feedback and reporting to track, monitor and measure progress encourage students and motivate them to learn.


And many more unique and exciting features!!!

This results-driven program, with 24/7 online access, is engaging for English language learners, and helps them to become more productive and successful members of the workforce and their communities.\",\n \"scoreText\": \"4.4\",\n \"score\": 4.45,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.burlingtonenglish.burlingtonenglish\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.burlingtonenglish.burlingtonenglish/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.burlingtonenglish.burlingtonenglish/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.burlingtonenglish.burlingtonenglish/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.burlingtonenglish.burlingtonenglish/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Baby Shark Coloring Book\",\n \"appId\": \"kr.co.smartstudy.babysharkcoloring_android_googlemarket\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.babysharkcoloring_android_googlemarket\",\n \"icon\": \"https://play-lh.googleusercontent.com/FJCXw245fo4k5_hdv32bjpZj8gEyNba81JugYwILCiQI-D8-Vi9xT_OTn41uVFCfE0mF\",\n \"developer\": {\n \"devId\": \"The Pinkfong Company\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/The%20Pinkfong%20Company\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Color Baby Shark, kids' favorite Youtube star!
Enjoy drawing games for kids featuring the Shark Family!

Baby Shark Coloring Book is a free coloring app for toddlers and kids aged 1 to 6 years old.

Paint Baby Shark, the Shark Family, and Pinkfong with beautiful rainbow brush and glitter pencil & Play fun mandala drawing game for kids!
Coloring game for kids includes 200+ pages featuring kids' favorite themes such as animals, cars, princesses, dinosaurs, and more!
Fun painting games for kids in Baby Shark Coloring Book will boost your kid's creativity and artistic sense.

Once your child finishes drawing, have your child open an exhibition in the Gallery Tab with the collection of beautiful paintings!

----------------

1. Enjoy fun 200+ coloring books for baby, toddler, preschooler!
- Bring sea animals to life! From Baby Shark to fish, crabs, dolphins and octopus -- draw and color them however you want!
- Discover new baby coloring activities updated every week.
- Artistic learning game for kids, which is also suitable for all ages.
- Choose your favorite coloring theme from the Shark Family to cute patterns!

2. Express your creativity with colorful art tools!
- Use various art tools including color pencils, crayons, glitters, and rollers, which can help boost your creativity.
- Paint with sparkling glitters.
- Use the paint palette for easy coloring.
- Use colorful brushes, crayons, sprays and stickers.

3. Make your own creative images in the Activity tab!
- You can draw and color your own beautiful mandala with few simple touches.
- Check fun educational games for kids!

Now let's dive into the world of painting for kids!


-
• Pinkfong Plus Official Website: https://fong.kr/pinkfongplus/

• About Pinkfong Plus Subscription:
- Join Pinkfong Plus membership and get unlimited access to Pinkfong's best apps!
- Watch videos and play games ad-free.
- Share membership with up to 6 family members.
- Sync devices such as smartphones and tablets using one account.

• Apps Available under Pinkfong Plus:
- Baby Shark World for Kids, Pinkfong Baby Shark, Baby Shark ABC Phonics, Baby Shark Car Town, Pinkfong Dino World, Pinkfong 123 Numbers, Pinkfong Tracing World, Pinkfong Shapes & Colors, Baby Shark Jigsaw Puzzle Fun, Pinkfong Numbers Zoo, Pinkfong Baby Shark Phone, Pinkfong Baby Shark Storybook, Baby Shark Coloring Book, Pinkfong My Body, Pinkfong Police Heroes Game, Pinkfong Guess the Animal, Baby Shark Pizza Game, Baby Shark Makeover Game, Pinkfong Word Power, Pinkfong Mother Goose, Pinkfong Learn Korean, Pinkfong Super Phonics, Pinkfong Fun Times Tables, Pinkfong Baby Bedtime Songs, Pinkfong Birthday Party + more!

More available apps will be updated soon.

Click the "More Apps" button on the home screen or visit Google Play to download the apps!

-

Privacy Policy:
https://pid.pinkfong.com/terms?type=privacy-policy

Terms of Use of Pinkfong Integrated Services:
https://pid.pinkfong.com/terms?type=terms-and-conditions

Terms of Use of Pinkfong Interactive App:
https://pid.pinkfong.com/terms?type=interactive-terms-and-conditions\",\n \"scoreText\": \"3.8\",\n \"score\": 3.82,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=kr.co.smartstudy.babysharkcoloring_android_googlemarket\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.babysharkcoloring_android_googlemarket/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.babysharkcoloring_android_googlemarket/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.babysharkcoloring_android_googlemarket/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.babysharkcoloring_android_googlemarket/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Bloomz\",\n \"appId\": \"net.bloomz\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/net.bloomz\",\n \"icon\": \"https://play-lh.googleusercontent.com/4AHvgfyaMatfj2IuNlV7JtJ3ZgdtkozW7EMfugvuYQYQ1C94UbwVjqMDHtnmCvu1bA\",\n \"developer\": {\n \"devId\": \"Bloomz\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Bloomz\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Bloomz is the FREE award-winning app that saves teachers lots of time in all parent communications, while creating a supportive classroom community.


“Make your life easier by consolidating all of your communications and coordination with parents.” – WeAreTeachers

“If you’re looking for ways to build relationships with and between families, check out Bloomz!” – The Cornerstone for Teachers


Bloomz makes it easy for teachers to securely share photos, classroom updates and reach parents instantly through messaging, as well as to coordinate events (like PT Conferences) and sign up for volunteers.


With Bloomz teachers can:

- Post class updates and share pictures, and see who’s viewing them
- Manage events and calendar, with built-in reminders
- Schedule Parent-Teacher Conferences in seconds
- Sign up volunteers in a few easy steps
- Message one or more parents, without sharing their cell phone number
- Send alerts notifications for urgent matters, to both phone and email in one click.
- Invite parents via email or class code for privacy


With Bloomz parents can:

- Sign up FREE and be notified via SMS/TEXT messaging
- Choose between push and email notifications, as well as their frequency
- Read posts in their preferred language with one-click translations (80 languages available)
- Communicate with other parents for play dates, carpooling and more


Awards:

- New Education Product of 2016 – EdTech Digest
- 2015 Awards of Excellence – Tech & Learning
- The National Parenting Center Seal of Approval
- Top 20 Most Promising K12 Technology – CIO Review
- People’s Choice Award – Stevie Awards\",\n \"scoreText\": \"3.9\",\n \"score\": 3.9418826,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=net.bloomz\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/net.bloomz/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/net.bloomz/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/net.bloomz/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/net.bloomz/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Miga Town: My Pets\",\n \"appId\": \"com.miga.mypets\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mypets\",\n \"icon\": \"https://play-lh.googleusercontent.com/Mgt7GuOYhM3MsPjM7JgQ2CoHf4_O1sivtIRD0ER8n0M-iqoDz15iVYThGNrFC2GrTw\",\n \"developer\": {\n \"devId\": \"XiHe Digital (GuangZhou) Technology Co., Ltd.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/XiHe%20Digital%20(GuangZhou)%20Technology%20Co.%2C%20Ltd.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Here you will get a different experience.What pet do you like best? More than 100 kinds of pets are available.Everyone can find their own fun.New stories will start here!

More interesting scenes and self-defined game-play help to create a more wonderful story!

Exploration
Cabin: It is full of cute animals. You can also re-arrange your favorite pet cabin.

Training ground: A professional training venue is provided to test the skills of animals. You can build a closer relationship with your favorite pets here.

Outdoor: Enjoy a wonderful time outdoors in the mysterious suburban park. Look around and you may find great surprises.

Shop: There are lots of pet products in the shop to meet your daily needs for pet care. The pet restaurant is also very interesting. Try to learn make some food for your pet.

Pet hospital: It is for hatching cool pets and helping sick pets regain their health.

Features
- Role-play in 5 places

- More than 120 animal images

- Play the role of a breeder or doctor, explore more roles

- Take pictures of any role in any scene

- Discover more little surprises and hidden secrets



--Give full play to children’s creativity
--Tens of billions of customized modes
--No third-party advertising
--No time limit or score ranking list

contact us:support@xihegame.com\",\n \"scoreText\": \"3.6\",\n \"score\": 3.6033332,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.miga.mypets\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mypets/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mypets/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mypets/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.miga.mypets/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"K12\",\n \"appId\": \"com.k12.onboarding\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.k12.onboarding\",\n \"icon\": \"https://play-lh.googleusercontent.com/4xE46jbwgVFoqYdkgow6nwfi6EQNZk8AiL4ep56HFGBeq1zEiYUPlavj3PbqynZ7Q3k\",\n \"developer\": {\n \"devId\": \"K12 inc.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/K12%20inc.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"At K12, we offer tuition-free online public schools and tuition-based private schools. Explore K12 on your smartphone or tablet. With the K12 app, finding the right school, enrolling your student, preparing for the first day, and monitoring your school student’s academic progress is even easier.*

Find a School
\\tSimply type in your zip code or state to see a list of K12-powered schools near you.
Enroll Your Student
Submit enrollment information and documents, and track and complete the
enrollment process in all one place.
Create Parent and Student School Accounts
\\tA mobile-friendly way to set up your parent and student school accounts.
Receive Alerts and Notifications
Each step of the way, you’ll receive real-time updates‒such as when your student’s
materials have shipped, when courses and teachers have been assigned, and more.
Prepare for the First Day of School
Easy-to-access videos and online orientation sessions help prepare you and your
student for the first day of school.
Monitor Progress
Parents can access information about your student’s grades, course programs, and
overdue assignments.*
View Daily Schedule
Stay up to date about your student’s online school experience with the schedule
viewing feature.*
Log Attendance**
Submit student’s daily attendance.*
Stay in Touch
Contact information for your school and teachers are conveniently indexed for you.
Re-Register
Parents can easily re-register students for the next term directly from the app.

The K12 app experience may vary by school. If you have questions, call 866.571.4316 for information.

Stay tuned! We are continually adding new app features.

*This feature is currently available for all MS and HS families, and many elementary families as well.

**Feature is only applicable to schools that require Learning Coach added attendance.

Most K12 app features are available for K12-powered online public schools and some K12-powered private schools at this time.

Please refer to K12’s Privacy Policy for more information regarding K12’s collection and use of your information.\",\n \"scoreText\": \"3.6\",\n \"score\": 3.6218905,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.k12.onboarding\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.k12.onboarding/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.k12.onboarding/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.k12.onboarding/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.k12.onboarding/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"ClassTag—Classroom Engagement\",\n \"appId\": \"com.classtag\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.classtag\",\n \"icon\": \"https://play-lh.googleusercontent.com/JEJAHPmRA2yPqshcKEwSE408tH_cKLYuDqonEuLUlfXCn9HsGwnMNEgaN9_xejBFxBQ\",\n \"developer\": {\n \"devId\": \"ClassTag\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/ClassTag\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"For teachers, ClassTag is a FREE all-in-one classroom communication platform that reaches every family, even the hard to reach ones, while helping teachers get supplies without paying out of pocket.


=> 3 REASONS WHY YOU SHOULD GET THE CLASSTAG COMMUNICATION APP:
* EVERYTHING YOU NEED TO REACH AND ENGAGE FAMILIES IN ONE PLACE
- Parents and guardians receive messages based on their preference via email or SMS. They receive all communications right away, without the need to download an app.
- Automatically translate ​messages into more than 100 languages.
- Parent teacher conferences, calendars, paperwork, volunteering, newsletters and more features at your fingertips.

* ​NO MORE EXCUSES - EVERY FAMILY IS REACHED
- See which families are reading and responding to messages and which families aren’t. This data is automatically added to a communication log and shows you who needs an extra nudge.

* FUND YOUR CLASSROOM
- Teachers receive $100 in funding on average by simply building their communities on ClassTag.
- Create wish lists that families and the community can participate in funding. This spares you from conducting laborious fundraising or buying all the supplies you need and want out of your own pocket.

For families, ClassTag is an amazing FREE tool for effortless participation in their child’s education. No more lost flyers in the backpack and missed deadlines. Simple, effective, available on the go and customized for your needs.


=> TIME TO TAKE ACTION:

Join millions of educators and families already using ClassTag to manage parent-teacher communication.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.69606,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.classtag\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.classtag/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.classtag/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.classtag/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.classtag/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Cake - Learn English & Korean\",\n \"appId\": \"me.mycake\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/me.mycake\",\n \"icon\": \"https://play-lh.googleusercontent.com/R9Xf7kEuaNi5qpA5WDoDd5mQ9syK-HB5LvXoYf3PNAeFbOYh5o2oUjQBwIWXq_Of5Tg\",\n \"developer\": {\n \"devId\": \"Cake Corp.\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Cake%20Corp.\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"An incredible English & Korean learning app used by 100 million people worldwide. Master your English & Korean using free videos and audio content updated daily! We currently only support English for learning Korean. But don't worry! More languages will be added soon!

You can learn real English expressions selected by English experts.
Practice your speaking and revise what you learned with quizzes.
Practice and repetition will make memorizing the expressions simple!
Continuous learning with Cake will definitely help improve your English & Korean skills.

It's fun.
- Learn with your favorite celebrity, artist, and vlogger videos.
- It's also full of exciting original content made by us.

You can learn real native English.
- Learn real English used in vlogs, movies, and TV shows.
- Become familiar with different accents and pronunciations.
- You can learn how to express one sentence in many different ways.

Cake will help you improve your speaking.
- Watch videos with subtitles, and repeat after each line.
- Get your pronunciation checked by our AI.
- Practice speaking like in a real conversation.

Learn step-by-step.
- Select a topic of your choice and study step-by-step with our 'class' feature.
- Study using the 'classes' created by English experts.
- You can practice speaking and listening like in real conversations.

Repeat and revise.
- Review what you learned using fun quizzes.
- Save the sentences you like, and test yourself.

Just 10 minutes a day.
- Achieve your daily study goals, and feel accomplished.
- The more accomplished you feel, the more motivated you'll feel to keep learning!

Cake's exclusive features
- Daily expression clips: New expressions are added daily, and are organized by topic.
- Original lectures: English & Korean lectures created by Cake
- Classes: Enables you to study step-by-step by combining lectures, videos, and quizzes into several courses.
- Quizzes: Listening, key expressions, reviews, and many more revision quizzes.
- Speak: Practice listening and speaking with audio learning.
- Today's conversation: Practice listening and speaking with a unique conversation every day.
- Save sentences and words: Practice and repeat sentences and words of your choice.

Improve your learning with Cake Plus.
Get unlimited hearts and enjoy the app with no ads.
Access exclusive Cake Plus content, and save as many words and sentences as you want.
Real English expressions selected by English experts!
Use Cake daily and watch your English improve!\",\n \"scoreText\": \"4.8\",\n \"score\": 4.811607,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=me.mycake\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/me.mycake/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/me.mycake/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/me.mycake/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/me.mycake/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Baby Shark Pizza Game for Kids\",\n \"appId\": \"kr.co.smartstudy.bbspizzagame_android_googlemarket\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.bbspizzagame_android_googlemarket\",\n \"icon\": \"https://play-lh.googleusercontent.com/XuCIn7T9RYVKEEvuED6dHvJTVg941VN9-zroEpEMfX2xx7Kl0gi01nPVcsC0zyOAsCU\",\n \"developer\": {\n \"devId\": \"The Pinkfong Company\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/The%20Pinkfong%20Company\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Ta-da! A foodie Baby Shark Ollie's restaurant is back!
With new food to cook and more tools to play with, team up with Baby Shark and be the best kid chef in making creative pizza and pasta for toddlers!

'Baby Shark Pizza Game for Kids' is a free cooking app for toddlers and preschoolers under 5 years old! With this fun cooking pizza game for kids, you can make the tastiest pizza and pasta that you've imagined!

1. Let's start a toddler-friendly cooking game with Baby Shark!
2. Get creative with making pizza and pasta games for babies and kids!
3. Enjoy a mini-driving game for toddlers with Baby Shark to deliver pizza to hungry customers!


[Be Creative]
- Come up with your pizza dough and pasta recipes using strawberries, chocolate, and even jelly beans! Kids’ go-to food is here in free restaurant games for kids!
- Mix various pizza sauces to create the unique flavor and color of your pizza!
- Cheese, Pepperoni, Marshmallows, and Jelly beans! Load up with pizza and pasta toppings that are only available in kids' creative learning app!

[Watch Reactions]
- Be careful not to burn it! The master chef Baby Shark Ollie will help you keep the pizza and pasta from burning!
- Don't miss out on the unique fun reactions to your creative and colorful dishes!
- Learn to recognize different tastes, including sweet, spicy, and salty. The reactions will change with new food combinations!

[Pizza Delivery On The Way!]
- Enjoy mini racing game for preschool kids and babies!
- When you're done making the pizza and pasta, hop onto the delivery skateboard and deliver it safely to starving William!
- Jump and avoid the obstacles while driving on the road.

[Highly Recommended Creative Learning App for Kids under Five]
- Toddlers and preschoolers can become chefs and cook their favorite dishes with this kids game!
- Baby Shark will help develop creativity skills for toddlers with colorful and unique pizza toppings and pasta ingredients!
- This free cooking game for kids will increase understanding and interest in the cooking process for toddlers !

Are you ready to join food-making games for toddlers with Baby Shark?
Enjoy an exciting free restaurant game for boys and girls with Pinkfong Baby Shark!

-
• Pinkfong Plus Official Website: https://fong.kr/pinkfongplus/

• About Pinkfong Plus Subscription:
- Join Pinkfong Plus membership and get unlimited access to Pinkfong's best apps!
- Watch videos and play games ad-free.
- Share membership with up to 6 family members.
- Sync devices such as smartphones and tablets using one account.

• Apps Available under Pinkfong Plus:
- Baby Shark World for Kids, Pinkfong Baby Shark, Baby Shark ABC Phonics, Baby Shark Car Town, Pinkfong Dino World, Pinkfong 123 Numbers, Pinkfong Tracing World, Pinkfong Shapes & Colors, Baby Shark Jigsaw Puzzle Fun, Pinkfong Numbers Zoo, Pinkfong Baby Shark Phone, Pinkfong Baby Shark Storybook, Baby Shark Coloring Book, Pinkfong My Body, Pinkfong Police Heroes Game, Pinkfong Guess the Animal, Baby Shark Pizza Game, Baby Shark Makeover Game, Pinkfong Word Power, Pinkfong Mother Goose, Pinkfong Learn Korean, Pinkfong Super Phonics, Pinkfong Fun Times Tables, Pinkfong Baby Bedtime Songs, Pinkfong Birthday Party + more!

More available apps will be updated soon.

Click the "More Apps" button on the home screen or visit Google Play to download the apps!

-

Privacy Policy:
https://pid.pinkfong.com/terms?type=privacy-policy

Terms of Use of Pinkfong Integrated Services:
https://pid.pinkfong.com/terms?type=terms-and-conditions

Terms of Use of Pinkfong Interactive App:
https://pid.pinkfong.com/terms?type=interactive-terms-and-conditions\",\n \"scoreText\": \"3.9\",\n \"score\": 3.93,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=kr.co.smartstudy.bbspizzagame_android_googlemarket\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.bbspizzagame_android_googlemarket/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.bbspizzagame_android_googlemarket/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.bbspizzagame_android_googlemarket/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.bbspizzagame_android_googlemarket/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"English to Spanish Translator\",\n \"appId\": \"com.learn.engspanish\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.learn.engspanish\",\n \"icon\": \"https://play-lh.googleusercontent.com/GKTybDuYV_ArCRZvV89YrtJJj9MMsYk3nzHZnBeZ9Go63P19DwB9o41GfNPesAkJOg\",\n \"developer\": {\n \"devId\": \"Happy English\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Happy%20English\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"English - Spanish language Translator App Free: Translate easily English to Spanish and Spanish to English in seconds, you can just speak and our AI will translate it automatically.

Free English to Spanish keyboard translator app! ​

Free English to Spanish Translator app has an AI voice-based translator feature. You can translate English to Spanish, and Spanish to English by just talking to your phone. It picks up the English or Spanish words and phrases you are saying and automatically translates them.

- It is that Simple - English to Spanish Voice Translator Free

Simple and efficient English to Spanish Translator. Use voice translator free, or just copy any paragraph, paste it in the translator, and within seconds you receive text translations.

Are you reading a Spanish or English book and struggling with words? We are here to help you! Use our text and voice translator free, and get a Spanish to English translation or English to Spanish translation.

Voice Translator App

Unique options in the English to Spanish translator free of charge. You can use a voice translator, text translator, type and paste options, and receive results instantly. When you receive English to Spanish translation or Spanish to English translation, you can share it with ease! Use our text and audio or voice translator app - the simplest way to get Spanish translation. Voice translator is a convenient feature - it helps you to translate regular conversations.

Practice Spanish and English Pronunciation

In the English to Spanish translator app, there is a speak button for pronunciation. You can practice both Spanish and English pronunciation. For the best pronunciation practice, we have voice input and voice output!

If you’re looking for the best way to translate English to Spanish, this text and voice translator free of charge is the way to go. With the English voice translator to Spanish, speaking in Spanish has never been easier.

Start learning today! The exclusive tool that will help you learn to speak Spanish and translate it with ease!

Exceptional bilingual voice translator app offers the possibility to translate words using your voice and to listen to the pronunciation. English to Spanish translator is available for listening and learning. Discover new words, sentences, dialogues, and Spanish grammar explanations. Exams and quizzes will make your learning journey fun and efficient.

---------------------
Great Features:
---------------------
✔️ Audio Translator - Voice translation app
✔️ Text Translator
✔️ Spanish Conversation Practice
✔️ Pronunciation - Practice Spanish and English Pronunciation
✔️ Bilingual Translation
✔️ Check the previous translation in the search history
✔️ Fast results - get instant translation
✔️ Share the translation easily
✔️ Create a list of favorite words you learned
✔️ English to Spanish dictionary
✔️ It is a perfect application to learn to speak both languages
✔️ Traductor de ingles a español gratis
✔️ Diccionario inglés español
✔️ Aprender a hablar inglés
✔️ Great for students, tourists, and travellers! Ease of usage will help you to be bilingual from the first day of app usage.

What are you waiting for? Translate smoothly and learn effortlessly with this free English to Spanish translator app!
\",\n \"scoreText\": \"4.5\",\n \"score\": 4.5055294,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.learn.engspanish\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.learn.engspanish/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.learn.engspanish/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.learn.engspanish/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.learn.engspanish/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Programming Hub: Learn to code\",\n \"appId\": \"com.freeit.java\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.freeit.java\",\n \"icon\": \"https://play-lh.googleusercontent.com/3E-AjwKJC4YA0_bXkQSW2KzGQeIZWh-8qeaeJ5kYdvHA8rz29KJ1-rCD6QX3vYKAGKj0\",\n \"developer\": {\n \"devId\": \"Coding and Programming\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Coding%20and%20Programming\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Coding and programming app to learn to code with HTML, Javascript, C, C++, C#, Swift, Python, R Programming, Java, Artificial Intelligence, CSS, etc. for free with a one-stop app - “Programming Hub: Learn to code”

This coding and programming app is created using research and in collaboration with Google experts and offers a perfect path to learn programming. You will learn to code like an expert, and also enjoy it like a game. It's easy, it's fast and it's fun!

✅ Google Play's Editor's Choice\\u2028\\u2028🏆

✅ Google Play's "Best of the Best" of 2017!\\u2028\\u2028😻👯

✅ Recognized and backed by Google launchpad accelerator💪

✅ No Ads 👿

With a huge collection of 5000+ programs (code examples), 20+ courses and the fastest compiler in the world, all your programming needs are bundled in a single app for your daily practice.

What all programming languages you can learn with this coding tutor app?\\u2028\\u2028

👨🏻\\u200d💻Learn Java - Java is an object-oriented, general purpose, high-level programming language. Today Java is being used to develop a range of software like web applications, J2ME Apps, Embedded Space, Android, Big Data analytics, etc.

👨🏻\\u200d💻Learn C Programming - C programming is a powerful general-purpose language. If you are new to programming then C Programming is the best language to start your programming journey.

👨🏻\\u200d💻Learn C++ - C++ is used nearly everywhere for everything from systems programming, numerical and scientific computing, web development, writing compilers, console games, desktop applications and so on.

👨🏻\\u200d💻Learn HTML - HTML is the standard markup language for creating web pages and web applications. HTML is most commonly used as the format for online documents i.e web pages.

👨🏻\\u200d💻Learn Javascript - JavaScript is a web programming language that is run by most browsers. With Programming Hub, you can find Javascript tutorials to become a Javascript expert.

👨🏻\\u200d💻Learn R Programming: R is a programming language and software environment for statistical analysis, graphics representation, and reporting.

Here are other reasons why you should choose Programming Hub as a single app for your coding learning needs. With the “Programming Hub: Learn to code” app, you can -

👨🏻\\u200d💻Learn CSS\\u2028
👨🏻\\u200d💻Learn VB.net\\u2028
👨🏻\\u200d💻Learn C# (C Sharp)
👨🏻\\u200d💻Learn Python 2.7
👨🏻\\u200d💻Learn Python 3
👨🏻\\u200d💻Learn Linux Shell Scripting
👨🏻\\u200d💻Learn R Programming
👨🏻\\u200d💻Learn Swift
👨🏻\\u200d💻Learn SQL
👨🏻\\u200d💻Learn Jquery
👨🏻\\u200d💻Learn Assembly 8086

**************************
APP FEATURES
**************************

While we make coding learning easy and fun, here are features that would make us your single choice to learn programming languages -

🚀Programming Courses: To make your learning more interesting, our experts have created bite-sized and interactive courses which will help you learn programming like never before. It's the best place to learn new concepts.

🚀Programming & Coding Examples: 5000+ programs in 100+ programming languages and counting, programming hub has one of the largest collection of pre-compiled programs with output for practice and learning.

🚀Compiler: The fastest compiler in the world on Android with support to compile and run over 20+ programming languages.

Other Features to improve your programming learning experience includes\\u2028

1. Concept-based illustrations to easily learn to code in a fun way\\u2028
2. Interactive learning experience\\u2028
3. Periodic Updates with new programming examples and course content\\u2028


Instead of giving us a lower rating, please mail us your queries, issues or suggestions at hello@programminghub.io. We will be happy to solve them for you :)

Visit our website: www.programminghub.io

Terms of Service: Terms

Privacy policy: Privacy\",\n \"scoreText\": \"4.7\",\n \"score\": 4.7425933,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.freeit.java\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.freeit.java/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.freeit.java/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.freeit.java/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.freeit.java/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"LingoDeer - Learn Languages\",\n \"appId\": \"com.lingodeer\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.lingodeer\",\n \"icon\": \"https://play-lh.googleusercontent.com/z1Ry7krk6GNAm3UAw9PC4Fcv3shGTJNOB_MoUkV49wHir57Jc9fFJRUjSaX64Zq7wvQ\",\n \"developer\": {\n \"devId\": \"LingoDeer - Learn Languages Apps\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/LingoDeer%20-%20Learn%20Languages%20Apps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Want to learn a new language, such as Japanese, French, Spanish or Korean on your own? Give LingoDeer a try!

Courses offered for English speakers:
Korean, Japanese, English, French, Spanish, German, Chinese, Thai, Russian, Portuguese, Italian, Arabic and Vietnamese.

What can LingoDeer do for you?
※ Learn to read and write a language with a unique alphabet system, such as Korean or Japanese
※ Learn to form sentences in your own words by following a structured course
※ Learn the essential vocabulary and grammar from beginner to intermediate levels (A1-B1)
※ Improve listening and improve pronunciation with HD recordings by native speakers
※ Reinforce learning with various review activities: flashcards, quizzes, target trainings and more
※ Track your progress and statistics
※ Download lessons to learn offline

What makes LingoDeer different? Its teaching power.

Instead of relying on users to figure things out, LingoDeer offers a structured, clear and motivating path toward fluency.

By providing the best structured curricula among apps and clear explanations on grammar, LingoDeer enables users to form sentences in their own words, not just memorize and repeat after a phrasebook.

As a result, users gain a clear sense of progression through following this path and are able to maintain long-term motivation.

What’s more, the variety of activities supported in LingoDeer gives users the flexibility to personalize their study. From speaking exercises about food allergies, to drilling words with flashcards or 5-min pop quizzes during lunch breaks, let LingoDeer surprise you with every session.

If you don’t know where to start with learning a new language, start with LingoDeer.

PLEASE NOTE: 
You will need a LingoDeer membership in order to access all courses and features. 

Support:
Found a bug? Let us know and help us make LingoDeer better!
Email: hi@lingodeer.com
https://m.me/lingodeer\",\n \"scoreText\": \"4.5\",\n \"score\": 4.509508,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.lingodeer\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.lingodeer/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.lingodeer/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.lingodeer/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.lingodeer/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Pydroid 3 - IDE for Python 3\",\n \"appId\": \"ru.iiec.pydroid3\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/ru.iiec.pydroid3\",\n \"icon\": \"https://play-lh.googleusercontent.com/VMax81pKL_PLsuXzlLQNJQnZdFVGG5bECoDt_4D4ycbFvfsQfREW3k26ERC92ZYkSg\",\n \"developer\": {\n \"devId\": \"IIEC\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/IIEC\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Pydroid 3 is the most easy to use and powerful educational Python 3 IDE for Android.

Important notice: in case of tensorflow problems please install "keras==2.6" in pip. This problem was introduced in keras after Pydroid 3 have been released and we are working on a fix.

Features:
- Offline Python 3 interpreter: no Internet is required to run Python programs.
- Pip package manager and a custom repository for prebuilt wheel packages for enhanced scientific libraries, such as numpy, scipy, matplotlib, scikit-learn and jupyter.
- OpenCV is now available (on devices with Camera2 API support). *
- TensorFlow and PyTorch are also available. *
- Examples available out-of-the-box for quicker learning.
- Complete Tkinter support for GUI.
- Full-featured Terminal Emulator, with a readline support (available in pip).
- Built-in C, C++ and even Fortran compiler designed specially for Pydroid 3. It lets Pydroid 3 build any library from pip, even if it is using native code. You can also build & install dependencies from a command line.
- Cython support.
- PDB debugger with breakpoints and watches.
- Kivy graphical library with a shiny new SDL2 backend.
- PyQt5 support available in Quick Install repository along with matplotlib PyQt5 support with no extra code required.
- Matplotlib Kivy support available in Quick Install repository.
- pygame 2 support.

Editor features:
- Code prediction, auto indentation and real time code analysis just like in any real IDE. *
- Extended keyboard bar with all symbols you need to program in Python.
- Syntax highlighting & themes.
- Tabs.
- Enhanced code navigation with interactive assignment/definition gotos.
- One click share on Pastebin.

* Features marked by asterisk are available in Premium version only.

Quick manual.
Pydroid 3 requires at least 250MB free internal memory. 300MB+ is recommended. More if you are using heavy libraries such as scipy.
To run debug place breakpoint(s) clicking on the line number.
Kivy is detected with “import kivy”, “from kivy“ or "#Pydroid run kivy”.
PyQt5 is detected with “import PyQt5”, “from PyQt5“ or "#Pydroid run qt”.
The same for sdl2, tkinter and pygame.
There is a special mode "#Pydroid run terminal" to ensure your program runs in terminal mode (this is useful with matplotlib that automatically runs in GUI mode)

Why are some libraries premium-only?
These libraries were extremely hard to port, so we had to ask another developer to do that. Under agreement, his forks of these libraries are provided to the premium users only. If you would like to develop free forks of these libraries - contact us.

Take a part in development of Pydroid 3 by reporting bugs or providing feature requests to us. We appreciate that.

As Pydroid 3 main goal is to help user learn Python 3 programming language, our first priority is porting scientific libraries (so system-related libraries are ported only when they are used as dependencies of some other educational package).

Legal information.
Some binaries in Pydroid 3 APK are licensed under (L)GPL, email us for the source code.
GPL pure Python libraries bundled with Pydroid 3 are considered to be coming in the source code form already.
Pydroid 3 doesn’t bundle any GPL-licensed native modules to avoid automatic import of them. The famous example of such library is GNU readline, that can be installed using pip.
Samples available in the application are free for educational usage with one exception: they, or their derivative works, cannot be used in any competing products (in any way). If you are unsure, whether your app is affected by this restriction, always ask for a permission via email.
Android is a trademark of Google Inc.\",\n \"scoreText\": \"4.3\",\n \"score\": 4.2844443,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=ru.iiec.pydroid3\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/ru.iiec.pydroid3/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/ru.iiec.pydroid3/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/ru.iiec.pydroid3/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/ru.iiec.pydroid3/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Pinkfong Shapes & Colors\",\n \"appId\": \"kr.co.smartstudy.shapescolors_android_googlemarket\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.shapescolors_android_googlemarket\",\n \"icon\": \"https://play-lh.googleusercontent.com/h95-0mjJOy9p-TMAJ7w5xnPmPL285uy4g5vIepohCY19fzvN0VRc7vpo35WP4huqBvQU\",\n \"developer\": {\n \"devId\": \"The Pinkfong Company\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/The%20Pinkfong%20Company\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learn about different colors, shapes, and sizes with kids' best friend, Pinkfong Baby Shark!
Watching educational videos and playing games will help your kids learn colors, shapes and sizes in a fun way!

'Pinkfong Shapes and Colors' is an educational, interactive app featuring fun activities and videos for kids, toddlers and preschool children.
Learn how to make decisions & solve complex problems with 10 different learning steps.

App's Main Features :

1. Fun Animated Songs
- Learn to differentiate shapes, colors and sizes with 10 animated sing-along videos!
- All songs are written and composed by kids' education experts and beautifully animated with our original characters.

2. Various Learning Games
- Compare the colors and sizes of balloons, match the colors of the icecream, and give the bears a ride!
- Follow 10 steps of activities and choose your own difficulty level.
- Every time kids start the same game, the specific components change to go through all the main shapes and colors.
- Improve toddlers' basic skills and logical thinking.

3. Available in 5 Languages
- Kids can enjoy all videos and games in 5 langues, including Korean, English, Spanish, Japanese and Chinese!

4. Adorable Prize Collection
- Prizes will make children & toddlers play and learn with a sense of achievement.
- Learn shapes / colors / size and collect all the adorable prizes such as teddy bears, robots, and lots more!

Playing and learning is always fun with Pinkfong!


-
• Pinkfong Plus Official Website: https://fong.kr/pinkfongplus/

• About Pinkfong Plus Subscription:
- Join Pinkfong Plus membership and get unlimited access to Pinkfong's best apps!
- Watch videos and play games ad-free.
- Share membership with up to 6 family members.
- Sync devices such as smartphones and tablets using one account.

• Apps Available under Pinkfong Plus:
- Baby Shark World for Kids, Pinkfong Baby Shark, Baby Shark ABC Phonics, Baby Shark Car Town, Pinkfong Dino World, Pinkfong 123 Numbers, Pinkfong Tracing World, Pinkfong Shapes & Colors, Baby Shark Jigsaw Puzzle Fun, Pinkfong Numbers Zoo, Pinkfong Baby Shark Phone, Pinkfong Baby Shark Storybook, Baby Shark Coloring Book, Pinkfong My Body, Pinkfong Police Heroes Game, Pinkfong Guess the Animal, Baby Shark Pizza Game, Baby Shark Makeover Game, Pinkfong Word Power, Pinkfong Mother Goose, Pinkfong Learn Korean, Pinkfong Super Phonics, Pinkfong Fun Times Tables, Pinkfong Baby Bedtime Songs, Pinkfong Birthday Party + more!

More available apps will be updated soon.

Click the "More Apps" button on the home screen or visit Google Play to download the apps!

-

Privacy Policy:
https://pid.pinkfong.com/terms?type=privacy-policy

Terms of Use of Pinkfong Integrated Services:
https://pid.pinkfong.com/terms?type=terms-and-conditions

Terms of Use of Pinkfong Interactive App:
https://pid.pinkfong.com/terms?type=interactive-terms-and-conditions\",\n \"scoreText\": \"4.1\",\n \"score\": 4.1485147,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=kr.co.smartstudy.shapescolors_android_googlemarket\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.shapescolors_android_googlemarket/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.shapescolors_android_googlemarket/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.shapescolors_android_googlemarket/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/kr.co.smartstudy.shapescolors_android_googlemarket/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"English to Spanish Translator\",\n \"appId\": \"com.traductor.englishtospanishtranslator\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.traductor.englishtospanishtranslator\",\n \"icon\": \"https://play-lh.googleusercontent.com/XicpYGUrdutOFj2q2mUOFNO2nfECYGWOu6qbI52MPmkzPRobB1JEMDpW9Hm__q2ofwG0\",\n \"developer\": {\n \"devId\": \"Translation and Voice Typing Apps\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Translation%20and%20Voice%20Typing%20Apps\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"🏆 ★★★★★ 🏆
#1 EngEspEng: Spanish to English Translator app and English to Spanish Translator app

Features of Spanish to English Translator App:
✓ 1. Spanish to English Converter / Spanish to English Translator.
✓ 2. English to Spanish Converter / English to Spanish Translator.
✓ 3. Voice typing in Spanish. Voice Translation from Spanish to English.
✓ 4. Voice typing in English. Voice Translation from English to Spanish.
✓ 5. Easily share the translated text to other apps.
✓ 6. One click share translated text to WhatsApp or FB Messenger.
✓ 7. Spanish to English Dictionary (or) English to Spanish Dictionary.
✓ 8. Consumes very less memory.
✓ 9. Super fast.

✓ Easily translate Spanish text to English using our free Spanish to English Translator App. You can also perform English to Spanish Translation.

✓ Using inbuilt voice recognition technology, you can type your text using your voice and then translate the text. This convenient feature allows you to translate regular conversations. You can translate your Spanish voice to English and English voice to Spanish.

✓ Using inbuilt speak functionality, you can listen to words or sentences. Click on speaker and app will read Spanish words / sentences. App will also read English words / sentences.

✓ Use it as a Dictionary. You can type your words in Spanish and get the exact word in English. You can type your words in English and get the exact word in Spanish.

Usage Guide
1) I have copied a text, how can I translate?
A) Click on 'Paste' button and our Spanish to English Translator app will translate the text.

2) How to change language?
A) Click on swap button (2 arrows) on the top of the screen. Clicking swap button changes the translation direction between "Spanish to English" and "English to Spanish"

3) I want to say some text and translate?
A) Click on 'Mic' button and say the text. Once you are finished with voice typing, click on 'Translate' and Spanish to English Translator app will translate the text.

4) How do I use it as Spanish to English Translator?
A) Enter text in the first text box and click 'Translate' and our app will translate your Spanish text to English.

5) How do I use it as English to Spanish Translator?
A) Clicking on 'Swap' button changes the translation direction. Once you set the direction from English to Spanish, enter text in the top text box and click 'Translate' to translate from English to Spanish.

Spanish to English Translator App uses the below permissions:
1. Storage access: This is for storing history of Spanish to English Translator and English to Spanish Translator

Thank you for using our Spanish to English Translator app!

pro-tip: You can use this app as English to Spanish Translator app too.

For any issues/queries/feedback/suggestions regarding our Spanish to English Translator app, please reach us at support@honeysha.com, we will be happy to get in touch with you.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.680441,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.traductor.englishtospanishtranslator\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.traductor.englishtospanishtranslator/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.traductor.englishtospanishtranslator/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.traductor.englishtospanishtranslator/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.traductor.englishtospanishtranslator/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Falou - Fast language learning\",\n \"appId\": \"com.moymer.falou\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.moymer.falou\",\n \"icon\": \"https://play-lh.googleusercontent.com/hM7DLLYUenPsR1rMzotnxRryBESKKkkrKkSnjGF9b-UDcf2X0MyAZXz-Fmd9TUooKDM\",\n \"developer\": {\n \"devId\": \"Moymer\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Moymer\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Wanna learn a language really fast? Don't have time for tedious language lessons or expensive language courses? So you'll love Falou's fast language learning method! Join Millions of students who trust Falou's innovative language lessons to quickly learn Spanish, learn French, learn English and 16+ languages.

• 1 Billion+ words learned with Falou®
• 600K+ 5-Star Ratings
• Apps We Love - Apple 2023
• 1st Class Apple Entrepreneur Camp Latin Founders 2022

====================

Get ready to learn a language with practical lessons and improve your pronunciation in record time. With Falou, you'll quickly have the confidence to have real conversations in French, Spanish, German, Korean, Chinese, English, Russian and more.

Wanna go travel the world but need to learn Spanish? Study abroad but need to learn French? Or maybe get a better job and need to learn English? Falou will help you reach all your goals much faster.

TRY FALOU® - DOWNLOAD THE APP AND TAKE A FREE LESSON

====================

HOW FALOU WILL HELP YOU LEARN A LANGUAGE FASTER?

+ Start speaking a language from Lesson 1
+ Learn a language with practical, real-life based conversations (the only way to become fluent)
+ Artificial Intelligence to help you master your pronunciation and speak any language with confidence
+ Language lessons created by 200+ native speakers
+ Smart language lessons that will help you learn to Speak, Write, Listen and Read in English, Spanish, French and 16+ languages while having fun!

====================

LANGUAGE LESSONS BASED IN REAL LIFE SITUATIONS:

• Introducing yourself
• Ordering food at the Restaurant
• Checking-in at the Airport
• Booking a Hotel room
• Shopping at the Mall
• Taking a Taxi
• Buying a subway ticket
• Visiting an exhibition at Museum
• Doing a job interview
• Making a presentation at work
• Going to the beach
• ... AND MUCH MORE +

====================

19 LANGUAGES FOR YOU TO LEARN:

• Learn English
• Learn French
• Learn Spanish
• Learn Italian
• Learn Chinese
• Learn Korean
• Learn German
• Learn Russian
• Learn Portuguese
• Learn Turkish
• Learn Dutch
• Learn Polish
• Learn Swedish
• Learn Danish
• Learn Croatian
• Learn Norwegian
• Learn Vietnamese
• Learn Indonesian
• Learn British English
• ... more language courses and language lessons coming soon!

Even if you already have language lessons or use other language apps like Duolingo, Babbel or Rosetta Stone - don't worry. Falou is the best complement to your language studies and will help you learn Spanish, French, German and many other languages much faster!

Download Falou now and start speaking a new language TODAY!

Terms and conditions below:

Terms: https://falou.com/en/terms
Privacy: https://falou.com/en/privacy\",\n \"scoreText\": \"4.8\",\n \"score\": 4.80066,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.moymer.falou\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.moymer.falou/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.moymer.falou/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.moymer.falou/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.moymer.falou/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"CDL Permit Practice Test Prep\",\n \"appId\": \"com.practice.test.cdl.permit.test.dmv\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.practice.test.cdl.permit.test.dmv\",\n \"icon\": \"https://play-lh.googleusercontent.com/aJCOZuc-Uza2QVTLF8nj3YYtIXkpMdgXrKBmAUt_SHREyU_IuX46ULBYZRiQ-RxheCGt\",\n \"developer\": {\n \"devId\": \"SmartsAppLtd\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/SmartsAppLtd\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"CDL Practice Test is a mobile application designed to help aspiring commercial drivers prepare for their Commercial Driver's License (CDL) exams. This app serves as a comprehensive study tool that allows users to practice and assess their knowledge of the CDL test materials.

The CDL Practice Test app offers a user-friendly interface with a wide range of features to enhance the learning experience. Each endorsement section in the app consists of a vast database of multiple-choice questions, which are carefully crafted to reflect the format and content of the actual CDL exam. Users can take practice tests within a time limit, mimicking the pressure they might experience during the real exam.

After completing a practice test, users receive instant feedback on their performance, including a detailed breakdown of correct and incorrect answers. This analysis helps users identify their strengths and weaknesses, allowing them to focus their study efforts more effectively. Additionally, the app provides explanations for each question, offering further insights into the correct answers and related concepts.

CDL Practice Test is continuously updated to ensure that the question database reflects the most recent CDL exam standards and regulations. Users can rest assured that they are studying with the latest information and are well-prepared for their CDL exams.

Disclaimer
NO GOVERNMENT AFFILIATION – DMV MANUAL GOVERNS.
We are not owned, operated, or affiliated with the Government. CDL Permit Practice Test Prep is not connected to any Department of Motor Vehicles (DMV) in any state or to any other agency or mechanism that administers, creates, processes, or grades driving license or permit examinations. Our app contains general information regarding the DMV in each state of the United States for informational and educational purposes only.

Privacy policy: https://cdlpermitpracticetestprep.web.app/\",\n \"scoreText\": \"4.8\",\n \"score\": 4.8365383,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.practice.test.cdl.permit.test.dmv\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.practice.test.cdl.permit.test.dmv/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.practice.test.cdl.permit.test.dmv/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.practice.test.cdl.permit.test.dmv/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.practice.test.cdl.permit.test.dmv/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"ShroomID - Identify Mushrooms!\",\n \"appId\": \"com.shroomid\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.shroomid\",\n \"icon\": \"https://play-lh.googleusercontent.com/8KTnLtvSiQwMt5DCRb7jxbC9qpEqaRoQs-uyayGWkCzyM32ZQEh6nmoUpuiCTx6ICHc\",\n \"developer\": {\n \"devId\": \"Identification Labs\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Identification%20Labs\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Introducing the ultimate mushroom hunting companion – the ShroomID app! Whether you're an amateur or professional mushroom hunter, this app is designed to help you identify and learn about the diverse range of wild mushrooms.

With a comprehensive database of species and their unique characteristics, the ShroomID app makes it easy to identify mushrooms in the field. Simply take a picture of the mushroom and the app will use advanced image recognition technology to suggest a match. You can also use filters to narrow down the search based on color, shape, habitat, and other features.

But the ShroomID app is more than just an identification tool. It's also a valuable resource for learning about the science of mushroom identification. The app provides detailed information about each species, including its scientific name, edible or toxic status, and the characteristics that make it unique. You can also read about the different groups of mushrooms and the role they play in the ecosystem.

In addition to its comprehensive database, the ShroomID app also features a community identification feature. You can upload photos of mushrooms you're having trouble identifying and get help from other members of the community. This feature is a great way to expand your knowledge and connect with other mushroom hunters.

So if you're looking for an app that will help you identify wild mushrooms with confidence and learn about the fascinating world of mycology, look no further than ShroomID! Get it now and start exploring the world of mushrooms!

If you have any questions whatsoever, feel free to contact us any time at support@shroom.id.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.1,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.shroomid\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.shroomid/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.shroomid/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.shroomid/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.shroomid/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"LogicLike: Games for kids\",\n \"appId\": \"com.logicappkids\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.logicappkids\",\n \"icon\": \"https://play-lh.googleusercontent.com/6WgkBFnd5gO0wW54zgjXKK-BPsKFAF6dLpV8pWND7s72qUMHpod9aYx_pq0Bcc37Jso\",\n \"developer\": {\n \"devId\": \"Massiana - Educational Games\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Massiana%20-%20Educational%20Games\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"👩\\u200d🏫LogicLike is a collection of games that foster learning and help children boost their thinking skills. Our games get automatically adapted to your child's age to drive their logic, memory and focus in the best possible way.

🧩LogicLike puzzles for children is a product of an experienced team of professional educators and psychologists. We create logic puzzles your child will love solving. On top of that, we take particular care of the app's design and animations not only to excite but also to reinforce the learning effect.

🎨 Solving LogicLike puzzles is a great exercise for children to advance their thinking skills. We recommend spending no more than 20 minutes a day playing LogicLike games. This way, your child won't be getting tired but will be getting used to learning. When it's the time, the app will prompt the child to take a break. Breaks are important to stay focused and always have an eye for logic detail.

😊 LogicLike games for children are designed useful, plain-clear and simple. The puzzles are intuitive and have voice overs. All tasks have exciting images and hints that help children stay motivated and engaged. Puzzles are smartly collected into games within the app. Completing the games step-by-step is alike doing a learning course. It is a particular advantage of LogicLike that you can solve puzzles in English or other languages.

⌛️ Designing logic puzzles is a difficult task that takes thousands of hours, and we are pleased to be doing it for eight years already. Our mission is to show children that learning can be fun, to engage them in learning, and help face challenges and never give up. We want the next generation to be smart and think out of the box. Check out the app for yourself, some puzzles are completely free for you to make sure the game is worth the effort. Children love puzzles, brainteasers and quizzes, and adults often find them amusing too.

❤️ Enjoy your time with LogicLike! Hope your children will have the best memories of their family leisure with our app!

🔸 Why LogicLike: 🔸
• 6,200+ logic puzzles
• Exciting collections of hero cards
• Various rankings
• Appealing graphics of hints and tips
• Revision of solutions
• Certificates to share and print
• Voiceover and nice background music

🔹 Scope of games: 🔹
• 3D-geometry: figures, objects and their properties
• Chess for beginners
• Math tables: Sudoku, Kakuro, Number Snail, etc.
• Balance & weighing: liquids and solids
• Elementary school topics and math: multiplication table, mental math, addition and deduction, multiplication and division.
• Mathematics for preschool and Grades 1 and 2
• World Around Us: animals, countries and cities
• True or false
• Logic brainteasers: Odd One Out, Sets of Objects, Put in Order, Sort Objects and Jigsaw Puzzles.
• All sorts of other topical educational games for kids and toddlers.

📙 New puzzles for kids are added to the library all the time.
📗 The puzzles are great for kids of age 4+.

Privacy policy - https://logiclike.com/en/docs/privacy
Terms of service - https://logiclike.com/en/docs/public
Any questions - just drop us an email at office@logiclike.com

We are constantly updating LogicLike games for kids to always experience the excitement of their leisure. If you liked our logic puzzles for kids, please tell your friends about the LogicLike app 😊\",\n \"scoreText\": \"4.7\",\n \"score\": 4.6568627,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.logicappkids\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.logicappkids/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.logicappkids/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.logicappkids/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.logicappkids/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Sign Language ASL Pocket Sign\",\n \"appId\": \"com.mobireactor.signlanguage\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.mobireactor.signlanguage\",\n \"icon\": \"https://play-lh.googleusercontent.com/4UPSnZVYh4pEeD85XXUAi3Lhdfuw54rGD2kcy--BA8t86Zuua1NpLQxUeVS7QzUZ91g\",\n \"developer\": {\n \"devId\": \"MobiReactor\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/MobiReactor\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Learning sign language will have you connecting with many more people in your community. There are many advantages to learning asl such as making new friends, teaching a baby how to talk and if your family is deaf or hard of hearing,

Pocket Sign offers hundreds of video sign language ASL lessons packed in small sized lessons. Learn sign language effectively with our interactive questions:

- Hundreds of Interactive video lessons
- Learn to sign and translate sign language
- Fun questions
- Use items to make the learning easier and fun
- Learn the sign language alphabet
- Common phrases and greetings used everyday
- Baby sign language
- American Sign Language ASL dictionary
- basic sign language phrases

ASL Sign Language - Pocket Sign
https://www.pocketsign.com\",\n \"scoreText\": \"4.8\",\n \"score\": 4.817915,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.mobireactor.signlanguage\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.mobireactor.signlanguage/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.mobireactor.signlanguage/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.mobireactor.signlanguage/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.mobireactor.signlanguage/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"آموزش برنامه دیوار\",\n \"appId\": \"com.ghsoft.divar\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.ghsoft.divar\",\n \"icon\": \"https://play-lh.googleusercontent.com/gsr8E1IsWyH1FC8QRj68tbNGvnlk1s4X7tC51SEOya4nWnpd3oBjbvYhbWoldUnBh4U\",\n \"developer\": {\n \"devId\": \"ghoghnoossoft\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/ghoghnoossoft\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"آموزش برنامه دیوار
رفع مشکلات رایج
پاسخ به سوالات متداول:
چطور در دیوار آگهی کالای فروشگاهم را ثبت کنم؟
راهنمای ثبت آگهی املاک در اپلیکیشن دیوار
چگونه در دیوار چیزی بفروشیم
چگونه در دیوار آگهی رایگان بگذاریم
بهترین زمان گذاشتن آگهی در دیوار\",\n \"scoreText\": \"4.4\",\n \"score\": 4.368421,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.ghsoft.divar\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.ghsoft.divar/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.ghsoft.divar/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.ghsoft.divar/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.ghsoft.divar/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Common App\",\n \"appId\": \"org.commonapp.apply\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/org.commonapp.apply\",\n \"icon\": \"https://play-lh.googleusercontent.com/T81hpezhvM49PJaq_HZYo3LSuJU8R7ULfhLz2VJkig6XOUJuAjX6oq_04rVMgJkDe_Is\",\n \"developer\": {\n \"devId\": \"The Common Application\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/The%20Common%20Application\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Simplify your college application experience with Common App for mobile.

Common App for mobile provides you with the same secure, streamlined application experience you’ve come to expect from Common App online, all from the convenience of your mobile device. The app seamlessly integrates with the first-year desktop experience — allowing you to apply to more than 1000 colleges, research financial aid, and get advice from counselors.

Common App for mobile is free and easy to use. Download the app to navigate your entire college application journey.\",\n \"scoreText\": \"3.8\",\n \"score\": 3.81982,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=org.commonapp.apply\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/org.commonapp.apply/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/org.commonapp.apply/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/org.commonapp.apply/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/org.commonapp.apply/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Drops: Language Learning Games\",\n \"appId\": \"com.languagedrops.drops.international\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.languagedrops.drops.international\",\n \"icon\": \"https://play-lh.googleusercontent.com/oUEvbfoVjGcQNQufMaSCWIYc0vJF6GyZmrp8UQR4vmH0Q7vSXmwQe2nHgnGBtOJ4sEc\",\n \"developer\": {\n \"devId\": \"Drops Languages\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Drops%20Languages\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Join 40 million people who are learning a new language with Drops. Language learning is easy when you learn with Drops language learning games! Learn to speak Korean, Spanish, Japanese, French, Chinese, German, English, and 40+ different foreign languages! Language learning is fun and free with Drops. You can start learning from scratch or brush up on the world’s most used languages, including Spanish, French, and English.

Learn to speak new languages the fun way with Drops language learning games. Language learning with Drops free app. Speak Korean, French, Spanish - become fluent with Drops language lessons. Learn languages, vocabulary, and foreign phrases effectively in Hebrew, Arabic, Russian, German, Italian, and Hindi. Play language learning games and get rewards. Drops even has different dialects for some of its languages, including Mexican Spanish and Castilian Spanish. You can learn the correct regional Spanish with Drops language learning games.

• Become fluent in a new language with the Drops language learning app
• Learn to read different alphabets like Korean, Japanese, Chinese, Hebrew, Arabic, and Hindi
• Custom illustrations for each word makes learning the language easy to remember
• Language learning fun with game-like language lessons
• Track your language learning progress and get rewards
• From beginner to expert levels, learn foreign language vocabulary
• A professionally curated vocabulary list with more than 3,000 words and phrases
• Professional and correct dialect pronunciations
• Learn Korean
• Spanish learning app
• Learning languages like American English, British English, Korean, Mexican Spanish, Latin-American Spanish, Japanese, German, French, European Portuguese, Russian, Castilian Spanish, Italian, Arabic, Tagalog, Hebrew, Icelandic, Polish, Mandarin Chinese, Turkish, Cantonese Chinese, Dutch, Norwegian, Thai, Swedish, Vietnamese, Maori, Brazilian Portuguese, Farsi (Persian), Hungarian, Greek, Hindi, Danish, Samoan, Indonesian, Finnish, Serbian, Croatian, Esperanto, Estonian, Hawaiian, Ukrainian, Yoruba, Bosnian, Swahili, Igbo, Sanskrit and Ainu


"By focusing on visually appealing games and vocab, Drops aims to lower the barrier preventing users from exploring a new language and, ultimately, accessing the social and economic benefits knowing that language may provide." - TechCrunch. Featured by CNET, Forbes, VentureBeat and many others!

Learn a new language today! Language learning is easy. Learn languages while playing games. Language learning with this free app. Learn Korean. Speak Spanish and English. Easy Spanish learning app. Learn to speak and read new languages today! Learn a new language like Chinese or Korean. Learning languages is fun with Drops. Learn Korean with this language learning app.

Privacy Policy and Terms of Use: http://languagedrops.com/privacypolicy.html\",\n \"scoreText\": \"4.4\",\n \"score\": 4.448037,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.languagedrops.drops.international\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.languagedrops.drops.international/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.languagedrops.drops.international/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.languagedrops.drops.international/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.languagedrops.drops.international/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Kinnu: Superpower learning\",\n \"appId\": \"xyz.kinnu\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/xyz.kinnu\",\n \"icon\": \"https://play-lh.googleusercontent.com/lHsDBWcF3cVY2LOYhYybFErzfiWQ1R81t5QNZBGn8dJyZAHIl6RvJEFLYJbvgpRC9A\",\n \"developer\": {\n \"devId\": \"Kinnu\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Kinnu\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"We built Kinnu to give everyone the power to learn anything they want to, whatever their goals.

With Kinnu you can:
🌟Follow your curiosity
🙋\\u200d♂️Become the most interesting person in the room
🧠Remember what you learn
🤦Find a cure to doomscrolling on social media

Our microlearning app helps you expand your horizons and build lasting knowledge across many domains.

Popular courses:
🧠 Psychology: Mental Health, Positive Psychology, Superpower Learning, Cognitive Biases
🏆 Lifeskills: Personal Finance, Storytelling, Persuasion, Communications, First Aid
🏋️\\u200d♀️ Health: Biohacking, Science of Sleep, Science of Exercise, Healthy Habits
🍄 Science: Laws of Physics, Fungi, Astronomy, Quantum Physics, Chemistry, Zoology
🏛️ History: World History, Ancient Civilizations, Near Modern Civilizations, Rome
🤖 Technology: Artificial Intelligence, Generative AI, Data Science
📚 Literature: Poetry, Folklore, 10 Great Novels, Shakespeare
🦕 Absolutely Random: Dinosaurs, Greek Mythology, Secret Societies and Cults, Video Games

Product features:
• Bite-sized, expert edited content
• Highly addictive gamified learning sessions
• Community votes on where to take the app next
• Map based design to explore content and conquer new areas
• Neuroscience powered learning engine to optimise learning
• Interactive, adaptive questions and games to refresh and retain your knowledge
• Audio version of all content to learn on the go

What our users say about us:
• “Literally feel myself getting smarter using this app… the questions wire stuff to my brain when I do the smart session every day.”
• “Learning has never been this fun. Engaging, interesting, diverse. Kinnu has it all.”
• “Fun, easy to use. Super fun to have short little bites of education on tons of • interesting topics.”
• “Arguably the most underrated app in the entire play store.”

Do you have an idea about how we could make our app and its content even better? Email us at support@kinnu.xyz - we listen, and we hear you.\",\n \"scoreText\": \"4.7\",\n \"score\": 4.699029,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=xyz.kinnu\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/xyz.kinnu/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/xyz.kinnu/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/xyz.kinnu/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/xyz.kinnu/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Nightshift Stargazing\",\n \"appId\": \"com.waddensky.nightshift\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.waddensky.nightshift\",\n \"icon\": \"https://play-lh.googleusercontent.com/9oJNW-w0TOdaevZvYt8f_aMnGC0C_WOYhHIibW868iCvYUA8nTwOwirQzATe6Ou92RM\",\n \"developer\": {\n \"devId\": \"Waddensky Astronomy\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Waddensky%20Astronomy\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Nightshift helps you find perfect nights for stargazing, assists you in observing your favourite planets, meteor showers and deep-sky objects and keeps you up-to-date about the celestial events in tonight's sky. Nightshift is the ideal free night sky app for the experienced amateur astronomer as well as the casual stargazer!

Features at a glance
☆ Worldwide stargazing conditions and forecast
☆ Sky view and star chart
☆ Celestial event calendar and astronomy highlights
☆ Over 15,000 deep-sky objects
☆ Advanced object visibility prediction for your telescopes

Clear skies and darkness: stargazing weather forecast
See darkness and cloud cover forecast for any location in the world and find tonight's best observing opportunities. A twilight diagram shows you darkness, weather and observing conditions for any night at a glance. Receive notifications when conditions are good for your favorite observing locations.

Sky view and star chart
Browse around the night sky using the new sky view feature and watch planets, deep-sky objects and celestial events right at the best time to observe them. Zoom in to discover faint objects and activate the telrad circles to create finder charts to quickly locate your favourite targets at the telescope.

Never miss out on the highlights of tonight's sky
Astronomy events, visible planets, active meteor showers, noctilucent clouds, moon phases, oppositions, elongations, lunar eclipses and rise and set times right from the app's dashboard.

Save your favourite stargazing locations
Build a database of your favourite observing locations to get location-specific advice about darkness, cloud cover and visibility of celestial objects.

Moon phases and lunar eclipses
Find out the current phase of the Moon and the exact time and date of the next full moon, new moon and first and last quarter. Nightshift helps you plan the best moments for lunar observation or prevent moonlight from disturbing your deep-sky observing session. Nightshift contains a calendar with all partial and total lunar eclipses from 1801 to 2200 and gives location specific advice on the visibility of a blood moon from your favourite stargazing spot.

Planets of the solar system
Nightshift shows all the visible planets for tonight and the constellations they are in to quickly locate them in the night sky. The event calendar tells you exactly when the next opposition of Jupiter, Saturn, Uranus and Neptune takes place so you can easily plan your planetary observing sessions. For Venus and Mercury, the app displays the moment of the greatest elongation to determine the best morning and evening visibility of the inner planets. Of course, a twilight diagram is available for all planets to find the best opportunities to observe them on any night and the telescopes needed for optimal observation.

Over 15,000 deep-sky objects
Nightshift comes packed with a large database of deep-sky objects, including the complete Messier, Caldwell, NGC and IC catalogues. A darkness and clear sky diagram indicates when the conditions are favourable to observe your favourite galaxies, globular clusters, nebulae and other wonders of the deep space.

Comprehensive info from renowned catalogues
In-depth information on all celestial objects, including classification, brightness, angular size, distance and cross references with other astronomy catalogues.

Visibility prediction for telecopes, binoculars and naked eye
State-of-the-art algorithms predict if celestial objects are within reach of your equipment. The visibility calculator shows you if your favourite planet, galaxy or other heavenly body is visible with your own telescopes or binoculars.

Icon: NPS/Quinn (CC-BY 2.0)
Screenshots background: Mathias Krumbholz (CC-SA 3.0)

Discover the world of astronomy
Start stargazing tonight with Nightshift and keep track of the fascinating events of the night sky!\",\n \"scoreText\": \"4.7\",\n \"score\": 4.661098,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.waddensky.nightshift\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.waddensky.nightshift/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.waddensky.nightshift/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.waddensky.nightshift/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.waddensky.nightshift/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Writing Wizard - Learn Letters\",\n \"appId\": \"com.lescapadou.tracingfree\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.lescapadou.tracingfree\",\n \"icon\": \"https://play-lh.googleusercontent.com/Db8a3RjCvVlXN9DKBFCkJLkjrUMyKH65z0wJlMz9oBelUfqhMbBneyvUhstW-BhVMQ\",\n \"developer\": {\n \"devId\": \"L'Escapadou\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/L'Escapadou\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"LEARN HANDWRITING

Writing Wizard is an award winning educational app used in many schools (110,000 units sold).
It helps your kid to learn how to write the alphabet, numbers and words through a fun system carefully designed to maintain motivation.

APP FEATURES

• Show and learn how to write letters correctly
• Learn to write uppercase & lowercase alphabet letters, numbers with phonics
• Ability to add your own words
• 10 fonts (including 3 most popular USA fonts)
• Many tracing options
• 50+ fun animated stickers and interactive games at the end of the learning activity
• Shapes tracing activity for toddlers
• Learn phonics for letters in 6 languages
• Create worksheets and print them to help your kid to write on paper

Suitable for kindergarten, toddlers, early learners, preschool and 1st and 2nd grade kids.

PERFECT APP FOR KIDS

Kids want to have fun, and this app offers a lot of fun to keep them motivated while learning their ABCs.

• Kids learn to write letters of the alphabet, numbers and shapes using fun animated stickers and sound effects
• Once the educational part is complete, kids can play with fun games
• Kids can collect stars in 5-Stars game mode

EDUCATIONAL HANDWRITING APP

• Detailed learning reports
• Multiple parameters to customize the app according to kid’s current education level
• Letter phonics and sound
• A customizable 5-Stars play mode to maintain motivation and fun
• Import and export lists
• 110,000 units of this educational app have been sold to schools

Schools: Contact us at support@lescapadou.com if you want to use the app in your classes.

*** This free version contains all the features of the full version for a subset of alphabet letters, numbers and words, and you can't add your own lists and access to the worksheets. ***\",\n \"scoreText\": \"4.1\",\n \"score\": 4.11,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.lescapadou.tracingfree\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.lescapadou.tracingfree/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.lescapadou.tracingfree/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.lescapadou.tracingfree/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.lescapadou.tracingfree/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"DMV Permit Practice Test 2023\",\n \"appId\": \"com.dmv.permit.test\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.dmv.permit.test\",\n \"icon\": \"https://play-lh.googleusercontent.com/G8PEteMVFnCUXzxkCVQgYpwRlL_F5Z83R4gsdRqJPsqgXdIVzIgEo9JcvqNRlVUd2OM\",\n \"developer\": {\n \"devId\": \"Languages elearning\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Languages%20elearning\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \""DMV Permit Practice Test" test your knowledge with +1000 DMV practice questions and detailed explanations!

We have designed this practice tool to make learning process super easy and interesting. It’s proven fact that learning new things in proper way helps you remember things quickly and for long-term!

- Prepare to take the written driver's license exam by taking sample tests.
- State specific practice tests for your state.
- Test are divided in proper sections to prepare well.
- Question loads with correct answer and explanation.
- Similar to real exam simulator.
- Learn all road signs and their meanings.

This app contains DMV written tests for the following states:

Alabama DPS, Alaska DMV, Arizona MVD, Arkansas OMV, California DMV, Colorado DMV, Connecticut DMV, District of Columbia DMV, Delaware DMV, Florida DHSMV, Georgia DDS, Hawaii DMV, Idaho DMV, Illinois SOS, Indiana BMV, Iowa DMV, Kansas DMV, Kentucky DMV, Louisiana OMV, Maine BMV, Maryland MVA, Massachusetts RMV, Michigan SOS, Minnesota DVS, Mississippi DMV, Missouri DOR, Montana MVD,Nebraska DMV,Nevada DMV,New Hampshire DMV, New Jersey MVC, New Mexico MVD, New York DMV, North Carolina DMV, North Dakota NDDOT, Ohio BMV, Oklahoma DPS, Oregon DMV, Pennsylvania DMV, Rhode Island DMV, South Carolina DMV, South Dakota DMV, Tennessee DOS, Texas DMV, Utah DMV, Vermont DMV, Virginia DMV, Washington DOL, West Virginia DMV, Wisconsin DMV, Wyoming DOT\",\n \"scoreText\": \"4.6\",\n \"score\": 4.58,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.dmv.permit.test\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.dmv.permit.test/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.dmv.permit.test/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.dmv.permit.test/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.dmv.permit.test/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Piano Academy - Learn Piano\",\n \"appId\": \"com.yokee.piano.keyboard\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.yokee.piano.keyboard\",\n \"icon\": \"https://play-lh.googleusercontent.com/ts_9BQ6MG2L3mmwcVskZBLsUnheDcO9bg7sHzdq5euVo0UbJXhbPx6FYNllgDIIp8Xg\",\n \"developer\": {\n \"devId\": \"Yokee™\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Yokee%E2%84%A2\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Piano Academy is for anyone looking to learn the piano from scratch or those who have prior knowledge and want to continue learning by practicing playing along with their favorite songs.

Piano Academy offers an on-screen touch keyboard so you can start playing immediately. The app also supports MIDI connection, and it can even detect the notes you play if you have an acoustic or electronic piano.


MAIN FEATURES
- Watch tutorial videos introduced to you by your private instructor, teaching you theory topics like notes, the staff, chords, and much more.
- The app listens to every note you play and gives you instant feedback, so you know how to improve.
- Practice playing tons of great tunes by reading real sheet music.
- Play fun games to train your musical hearing, hand coordination, and sense of rhythm.


WHO IS IT FOR?
Piano Academy is suitable for all ages, from kids to adults.

We have designed and built this app from the very beginning to help transform even complete beginners into actual pianists.


HOW DOES IT WORK?
We will teach you how to read notes, so you'll be able to play while reading sheet music. You'll play tons of wonderful classical pieces, as well as contemporary hit songs on your own.

As you progress, you'll learn to play with both hands, play chords, and much more.

Theory topics are introduced to you by your private instructor with the aid of animations and walk-through videos.

You will play fun games designed to train your senses, such as musical hearing, hand coordination, and your sense of rhythm, among other skills.

And the crowning glory is our staff player that shows music notes as you see in real sheet music. The notes are perfectly synced with the background music that will accompany you while playing. In addition, the app listens to every note you play and gives you instant feedback, so you know whether you hit the correct note at the right time.

BOTTOM LINE, you're going to have an enriching, rewarding, and challenging experience, and you're going to love it!


ABOUT YOKEE
Yokee Music is the creator of Yokee™, the world's #1 ranked sing-along mobile app, with over 100 million users, and the creator of Piano by Yokee, the most successful piano app game available in its genre.

If you're having any issues with the app, please don't hesitate to contact our support team at support@pianoacademy.app

Also, please join the Piano Academy community on Facebook and let us know what you think: https://www.facebook.com/groups/PianoAcademyCommunity/

Privacy Policy: https://www.yokee.tv/privacy
Terms of Use: https://www.yokee.tv/terms\",\n \"scoreText\": \"4.3\",\n \"score\": 4.3094263,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.yokee.piano.keyboard\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.yokee.piano.keyboard/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.yokee.piano.keyboard/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.yokee.piano.keyboard/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.yokee.piano.keyboard/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Stars and Planets\",\n \"appId\": \"com.galaxy.starmap\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.galaxy.starmap\",\n \"icon\": \"https://play-lh.googleusercontent.com/Sc0bgElNxGBPTktmkgiPcqn7EKfNZmDcNN7rzqPVfRfZmzjREGauG_U71qJpWzVDfYY\",\n \"developer\": {\n \"devId\": \"3dgalaxymap.com\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/3dgalaxymap.com\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Experience the captivating wonders of the cosmos with Stars and Planets, an interactive 3D planetarium powered by precise data obtained from NASA and ESA space missions. Delve into a profound expedition through the infinite expanse of space, where an abundance of knowledge is readily available, directly sourced from the forefront of groundbreaking space research.

Traverse the vast expanse of the galaxy, soaring through the stardust as you journey to millions of stars. Land on alien planets and exomoons, where breathtaking landscapes and untold wonders await your arrival. Embrace the thrill of plunging into the turbulent atmospheres of gas giants to reach their elusive cores.

Push the boundaries of exploration as you venture closer to black holes, pulsars and magnetars, where the laws of physics are stretched to their limits.

With Stars and Planets, the entire universe becomes your playground, providing an unmatched platform for discovery and enlightenment.

Features

★ Immersive spacecraft simulation allowing users to fly to different planets and moons and explore the depths of gas giants

★ Land on exoplanets and take command of a character, exploring the unique surfaces of these distant worlds

★ Daily updated information on exoplanets from multiple sources, eliminating the need for manual application updates

★ Extensive online database encompassing approximately 7.85 million stars, over 7400 exoplanets, 205 circumstellar disks, 32868 black holes, 3344 pulsars and over 150 moons in our Solar System

★ Comprehensive search system for efficient data retrieval of stellar and substellar objects

★ Global accessibility with support for over 100 languages

Data imported from various sources including: SIMBAD, The Extrasolar Planets Encyclopedia, NASA Exoplanet Archive, Planet Habitability Laboratory

Join my discord server so you can see what new features are planned in the future or if you simply want to talk about space related stuff:

https://discord.gg/dyeu3BR

If you have a PC/Mac you can also access Stars and Planets from your browser here:

https://galaxymap.net/webgl/index.html\",\n \"scoreText\": \"4.6\",\n \"score\": 4.6084905,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.galaxy.starmap\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.galaxy.starmap/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.galaxy.starmap/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.galaxy.starmap/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.galaxy.starmap/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Starfall ABCs\",\n \"appId\": \"com.starfall.StarfallABCs\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.starfall.StarfallABCs\",\n \"icon\": \"https://play-lh.googleusercontent.com/0N0U6f33hL4bMjUaMhDzA_UxxVEub23VZwcdX3M4wZ5fF1991f_3uqPoR6K_rDu5RtQ\",\n \"developer\": {\n \"devId\": \"Starfall Education Foundation\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Starfall%20Education%20Foundation\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"The Starfall ABCs FREE app is made possible by the member supporters of Starfall.com, a publicly supported nonprofit. The activities at Starfall.com motivate through exploration, positive reinforcement, and play. For accessible content please visit www.starfall.com/h/accessibility.php

Children delight as they see, hear, and interact with letters and sounds in words, sentences, and games. They learn to recognize letters while developing the skills they need to become confident readers. All children, especially English language learners, benefit.\",\n \"scoreText\": \"4.1\",\n \"score\": 4.073469,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.starfall.StarfallABCs\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.starfall.StarfallABCs/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.starfall.StarfallABCs/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.starfall.StarfallABCs/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.starfall.StarfallABCs/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n },\n {\n \"title\": \"Sago Mini School (Kids 2-5)\",\n \"appId\": \"com.sagosago.School.googleplay\",\n \"url\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.School.googleplay\",\n \"icon\": \"https://play-lh.googleusercontent.com/nE_-fb8PkKrPqBtjh3Mvu6jXlfddVznBH2qCSHoK1-RY7AG0gqzL-kjYfSkeGj_Wdg\",\n \"developer\": {\n \"devId\": \"Play Piknik\",\n \"url\": \"http://gplayapidev.fly.dev/api/developers/Play%20Piknik\"\n },\n \"currency\": \"USD\",\n \"price\": 0,\n \"free\": true,\n \"summary\": \"Sago Mini School is the best learning app for kindergarten readiness! Discover 300+ kindergarten learning games for ages 2-5 that develop the academic & life skills your child needs to thrive in school. Intuitive & easy for kids to navigate on their own, Sago Mini School is holistic, guilt-free screen time you can feel good about.

• SAFE & EDUCATIONAL GAMES FOR AGES 2-5
• AD-FREE & NO IN-APP PURCHASES
• DESIGNED WITH CHILD DEVELOPMENT EXPERTS
• TRY IT FREE FOR 7 DAYS!

Sago Mini School’s playful & evidence-backed approach empowers preschoolers to explore, learn, & grow at their own pace. With 25+ topics to discover, preschoolers learn about what they’re naturally curious about while developing the following essential skills:

• READ, WRITE, & SOUND OUT letters, words, & stories.
• COUNT forward & backward up to 20, identify numbers up to 100, & build early math skills.
• LEARN shapes & colors, & boost creativity with drawing activities.
• PRACTICE mindfulness, self-regulate emotions, & master social-emotional skills.
• SOLVE puzzles, practice problem solving & critical thinking.
• DISCOVER how the world works through STEM, sparking interests & fostering curiosity.
• PREPARE for a classroom environment with kindergarten learning games that strengthen life skills & independence.

Sago Mini School is part of Piknik – one subscription, endless ways to play and learn! Get full access to the world's best preschool apps from Toca Boca and Sago Mini with an Unlimited Plan.

THE BEST LEARNING APP FOR KIDS
Created with early education & play experts, your preschooler will learn English, math, literacy, science, & social-emotional skills with playful educational games.

LEARN ENGLISH & BUILD CONFIDENCE
Sago Mini School makes it fun & easy to learn English! As kids read, play, & explore, they’re strengthening their understanding of the English language – the perfect learning app for bilingual families.

25+ TOPICS AND 300+ KINDERGARTEN LEARNING GAMES
With tons of educational games in 25+ fun topics including Bakery, Pets, Mail, & Bugs, preschoolers explore their interests while they’re learning – & discover new ones, too!

WORK ON LEARNING GOALS IN PRACTICE PACKS
The Practice Packs feature makes it easy to find educational games from your kid's favorite topics arranged by learning goal.

Subscription Details

New subscribers will have access to a free trial at the time of sign-up. Users who don’t wish to continue their membership past the trial should cancel before the seven days are up so they aren’t charged.

At each renewal date (whether monthly or annually), your account will automatically be charged the subscription fee. If you’d prefer not to be automatically charged, just head to your Account Settings and turn off ‘Auto Renew’.

Your subscription can be cancelled at any time, without fee or penalty. (Note: you won’t be refunded for any unused portion of your subscription.)

For more information, check out our FAQs.

If you need help, have questions, or want to say ‘hi’, get in touch at schoolsupport@sagomini.com

Privacy Policy

Sago Mini is committed to protecting your privacy and the privacy of your children. We adhere to the strict guidelines set forth by COPPA (Children’s Online Privacy Protection Rule) & kidSAFE, which ensure the protection of your child’s information online.

Privacy policy: https://playpiknik.link/privacy-policy
Terms of use: https://playpiknik.link/terms-of-use/

About Sago Mini

Sago Mini is an award-winning company devoted to play. We make apps, games and toys for preschoolers worldwide. Toys that seed imagination and grow wonder. We bring thoughtful design to life. For kids. For parents. For giggles.

Find us on Instagram, Facebook, and TikTok at @sagomini.\",\n \"scoreText\": \"3.9\",\n \"score\": 3.876033,\n \"playstoreUrl\": \"https://play.google.com/store/apps/details?id=com.sagosago.School.googleplay\",\n \"permissions\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.School.googleplay/permissions\",\n \"similar\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.School.googleplay/similar\",\n \"reviews\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.School.googleplay/reviews\",\n \"datasafety\": \"http://gplayapidev.fly.dev/api/apps/com.sagosago.School.googleplay/datasafety\",\n \"categories\": \"http://gplayapidev.fly.dev/api/categories/\"\n }\n ]\n}" + } + ] + } + ] } ], "event": [ { "listen": "prerequest", "script": { - "id": "9dbb4bd4-8b66-4640-a2ba-d0377a6c3a67", "type": "text/javascript", "exec": [ "let expectedResponseStatusCode = pm.collectionVariables.get(\"expectedResponseStatusCode\");" @@ -1810,7 +1904,6 @@ { "listen": "test", "script": { - "id": "594dc425-95c8-49af-a0c6-d76f07083d7c", "type": "text/javascript", "exec": [ "pm.test(\"Status Code should be equal to \" + pm.collectionVariables.get(\"expectedResponseStatusCode\"), function () {", @@ -1828,37 +1921,30 @@ ], "variable": [ { - "id": "dd854a48-6c4a-4db8-ac7a-e116387305ff", "key": "APP_ID", "value": "org.wikipedia" }, { - "id": "a517fb48-9dd4-43c6-942f-ea7a5ee850c7", "key": "DEV_ID", "value": "Wikimedia Foundation" }, { - "id": "31e04d41-f3c4-41cc-b68c-7c607e2acc4b", "key": "COUNTRY_CODE", "value": "IN" }, { - "id": "2c6e28c8-29a8-489d-b243-a92e154df43b", "key": "LANGUAGE_CODE", "value": "en" }, { - "id": "fd25b9c5-65f5-44fb-b734-8f6a0aa5ea4e", "key": "expectedResponseTime", "value": 20 }, { - "id": "23324ddd-1a43-498e-9e48-95c97b4accb1", "key": "expectedResponseStatusCode", "value": 200 }, { - "id": "6037bec4-4676-48fb-89c8-f4f2d1a0c38f", "key": "HOST", "value": "gplayapi.cashlessconsumer.in", "type": "string" diff --git a/fly.toml b/fly.production.toml similarity index 100% rename from fly.toml rename to fly.production.toml diff --git a/fly.staging.toml b/fly.staging.toml new file mode 100644 index 0000000..6ab4708 --- /dev/null +++ b/fly.staging.toml @@ -0,0 +1,22 @@ +# +# See https://fly.io/docs/reference/configuration/ for information about how to use this file. +# + +app = "gplayapidev" +primary_region = "sin" + +[build] + image = "ghcr.io/srikanthlogic/google-play-api:dev" + +[services] + [services.http] + ports = ["http"] + +[http_service] + protocol = "tcp" + internal_port = 3000 + force_https = true + auto_stop_machines = true + auto_start_machines = true + min_machines_running = 0 + processes = ["app"] \ No newline at end of file diff --git a/lib/index.js b/lib/index.js index 6020c21..e9c7e18 100644 --- a/lib/index.js +++ b/lib/index.js @@ -61,7 +61,7 @@ router.get('/apps/', function (req, res, next) { /* App list */ router.get('/apps/', function (req, res, next) { - function paginate (apps) { + function paginate(apps) { const num = parseInt(req.query.num || '60'); const start = parseInt(req.query.start || '0'); @@ -124,7 +124,7 @@ router.get('/apps/:appId/permissions', function (req, res, next) { /* App reviews */ router.get('/apps/:appId/reviews', function (req, res, next) { - function paginate (apps) { + function paginate(apps) { const page = parseInt(req.query.page || '0'); const subpath = '/apps/' + req.params.appId + '/reviews/'; @@ -176,14 +176,31 @@ router.get('/developers/', (req, res) => example: buildUrl(req, '/developers/' + qs.escape('Wikimedia Foundation')) })); -/* Category list */ -router.get('/categories/', function (req, res, next) { - gplay.categories() +/* List of apps by category and collection */ +router.get('/lists/', function (req, res, next) { + const opts = Object.assign({ term: req.query.q }, req.query); + if (!req.query.category || !req.query.collection) { + return res.status(400).json({ message: 'Both category and collection parameters are required.' }); + } + + gplay.list(opts) + .then((apps) => apps.map(cleanUrls(req))) + .then(toList) .then(res.json.bind(res)) .catch(next); }); -function errorHandler (err, req, res, next) { +/* Category list */ +router.get('/categories/', async (req, res, next) => { + try { + res.json(Object.keys(gplay.category)); + } catch (error) { + next(error); // Pass the error to Express's error-handling middleware + } +}); + + +function errorHandler(err, req, res, next) { res.status(400).json({ message: err.message }); next(); }