Play Store Stuck On Download Pending

Play Store Stuck On Download Pending

  1. Google Play Store Stuck On Download Pending
  2. How To Fix Download Pending
  3. Google Play Store Stuck On Download Pending
  4. App Download Pending

Join GitHub today

Hi, I have downloaded the latest play store APK off the internet but while updating the apps it gets stuck at 'Downloading'. I tried uninstalling the update from Settings->Apps but then the Play store won't start at all.so installed the latest APK again. How to fix Download Pending Error in Google play store-download pending play store-download problem in play store-play store not downloading apps-google play store.

GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.

Sign up New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comments

commented Jul 3, 2018
edited

A number of people have hit the following issue with Play Store in Oreo:

-After the device boots, connect to wifi, then open Play Store and log in.
-Find an app and try to install it.
-Play Store does not install the app, but instead shows 'Download pending...' for an indefinite amount of time.
-You can work around this by killing Play Store (from the recent apps menu) and then reopening it.


commented Jul 3, 2018

It has been reported that this does not happen if you install gapps using one of the zip packages (but I have not confirmed this myself).

commented Jul 3, 2018

Here is a failing integration:
https://github.com/phhusson/device_phh_treble/blob/361aedfd203c5c0bc74ba956ee14f19bc677283f/gapps.mk

So that's a 'nano' gapps_variant, with few manual additions

(the 'phh-override' package only removes 'webview' and 'WebViewGoogle' packages, cf #161 (comment))

commented Jul 5, 2018

@Blystad@alviteri : have you encountered this as well?

From the logcat I posted, it looks like Play Store is trying to display a billing-info view, but that fails (see below). Maybe something gets broken during dex-optimization. I will try disabling dex-opt to see if it makes a difference.

commented Jul 5, 2018

Hi @jamuir yeah the problem is present as well only using aosp_build ... Zips are ok

commented Jul 5, 2018

And no ... Dex-optimization is not the problem ... Already tested

commented Jul 5, 2018

I don't know if this can help but I've switched to micro (using mini before) and now PlayStore seems work well ...
I let out of build Hangouts G+ Maps and Youtube

referenced this issue Jul 5, 2018

Closed

[Gapps] Download pending issue #115

commented Jul 5, 2018

Play Store Stuck On Download Pending

I don't see this issue at all on Nougat.

Does it just happen on Oreo?

I would either attach a debugger to Class.forName for the com.android.vending package and see how it's handled when installed using opengapps vs zip file. Or, add some logging and see where the class is resolved to.

If I recall correctly then I think at Google IO Google talked about being able to share Java libraries across apps, so one didn't have to download e.g. the Android support library 293589235 times. Maybe this behaviour is fucked up in our setup?

commented Jul 5, 2018

Does it just happen on Oreo?

Yes, it's an oreo-only issue.

commented Jul 11, 2018

I downloaded open_gapps-arm64-8.1-pico-20180704.zip and examined the support.v7.app imports in Phonesky.apk. You can see from the output below that that version of the apk includes the class AppCompatViewInflater:

When I do the same for the Phonesky apk in my tree, I find that class is missing (see output below).

So, it may just be a bad apk.

I will try updating the apk and see if the defect goes away.

commented Jul 11, 2018

Good James

commented Jul 11, 2018
edited

the latest Phonesky apk (81082100.apk) contains the missing class, so this was fixed as some point.

commented Jul 12, 2018

Did a refresh build today and still the same problem

commented Jul 12, 2018

:-( I suspected that might happen.

thanks for trying it out. I will keep digging.

commented Jul 16, 2018

open_gapps-arm64-8.1-nano-20180705.zip

For comparison, I've tried installing the opengapps nano package above via twrp on an n5x.

The installation seems to complete correctly, but after rebooting there are no google apps visible in the app drawer (this includes Play Store). The install is somehow broken. :-(

commented Jul 17, 2018

The problem I had installing the open-gapps zip was due to dm-verity.

The changes made to the system image during the install were treated as errors and 'corrected' by the kernel on boot.

After dropping the verity mount option, I've been able to successfully install the open-gapps zip. I can confirm that the download pending issue does not happen when gapps are installed via zip package.

Attached is a file list from the nano open-gapps zip.

commented Jul 17, 2018

Could you do a diff of find /system before/after?Le mar. 17 juil. 2018 à 19:19, James Muir <notifications@github.com> aécrit :
The problem I had installing the open-gapps zip was due to dm-verity. The changes made to the system image during the install were treated as errors and 'corrected' by the kernel on boot. After dropping the verity mount option, I've been able to successfully install the open-gapps zip. *I can confirm that the download pending issue does not happen* when gapps are installed via zip package. Attached is a file list from the nano open-gapps zip. nano-file-list.txt <https://github.com/opengapps/aosp_build/files/2202658/nano-file-list.txt> — You are receiving this because you commented. Reply to this email directly, view it on GitHub <#184 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AAAOOsVVo4TK7k931k2qIzQ_98YxJPngks5uHhylgaJpZM4VBgog> .

commented Jul 17, 2018

@phhusson: sure, but I find that comm is a better tool for comparing file-lists.

The indented files listed below were added by the gapps install script.

The non-indented files were dropped by the gapps install script.

commented Jul 17, 2018

Thanks
so compared to an AOSP build with opengapps integration I get:
opengapps zip removes BookmarkProvider ExtShared ExtServices
opengapps zip adds GoogleExtShared etc/g.prop lib/libfrsdk.so (lib64/libfrsdk.so is there) ConfigUpdater GoogleExtServices GmsCoreSetupPrebuilt

commented Jul 17, 2018

There is no reference at all of ConfigUpdater or GmsCoreSetupPrebuilt in https://github.com/opengapps/aosp_build.git

commented Jul 17, 2018

There are a number of discrepancies that need to be sorted out.

Another example: the install script puts Turbo.apk under /system/priv-app, but aosp-build puts it under /system/app.

commented Jul 18, 2018

https://github.com/opengapps/aosp_build/blob/master/modules/GoogleExtShared/Android.mk#L8
https://github.com/opengapps/aosp_build/blob/master/modules/GoogleExtServices/Android.mk

So these should be deleted as well in aosp_build, as they're overriden. However, they seem to be only included in stock builds:

Line 105 in 22c35f0

ConfigUpdater and GmsCoreSetupPrebuilt is new

commented Jul 18, 2018

i noticed that, too.

I will open PR today or tomorrow where I'll try to resolve the differences with the install script.

commented Jul 19, 2018

Good news. There is a quick fix to resolve the 'Download pending...' issue: just drop PrebuiltGmsCoreInstantApps.

I've checked that this works in two different builds.

I will open a PR for this in a few minutes.

The more involved issue here is that aosp_build is out of sync with installer.sh (from the opengapps zips). I've been working on addressing that, but, unfortunately, that is not a quick fix :-)

commented Jul 19, 2018

So that can be the reason why it is not included in Sony stock releases ... I don't know Google (pixel) good to know ... Thanks james

added a commit that referenced this issue Jul 19, 2018

closed this in 558e16bJul 20, 2018

added a commit that referenced this issue Jul 20, 2018

Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.
GPG key ID: 4AEE18F83AFDEB23Learn about signing commits

Google Play Store Stuck On Download Pending

referenced this issue Mar 28, 2019

Closed

Cannot boot when I change to nezor way using Android pie on ARM64 platform #211

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

So you've been up and running on Windows 10, and everything has been going great. Then one day, you suddenly see a list of apps queued up in the Windows Store waiting to update and stuck in the 'pending' state.

Microsoft said this morning that they have fixed the Store issues, although some users are still experiencing them. If you fall into that camp, you will want to read on for a possible fix!

The natural reaction probably is to close and reopen the Store or to reboot your computer when that doesn't work. But if you are like most people who have experienced this issue, you are still stuck with the problem.

Here is a list of steps you can take to get the Store working and your apps downloading again.

Once you've tried restarting your computer (Start > Power > Restart), the next step is to log out of the Windows Store and then log in again with your Microsoft account.

Log off

Play store stuck on download pending
  1. Open the Windows Store app
  2. Click on the account logo in the upper-right corner of the app, then click on your account name
  3. Click on you account name in the new box, then click Sign out
  4. Click on the icon in the upper-right corner again, then click Sign in and choose your account name again

Reset the Store Cache

If that does not get the Store working again, close out of the app, then try resetting the Store cache:

  1. Click Start, then type 'wsreset' and select wsreset
  2. When the Store app opens, see if your downloads are working

Troubleshoot Windows Update

If resetting the Store cache doesn't fix it, the next thing to try is troubleshooting Windows Update, which is closely ties to the Windows Store:

  1. Click Start, then type 'troubleshooting'
  2. Select the Troubleshooting option
  3. Under System and Security, click on Fix problems with Windows Update
  4. Follow the prompts, then test out the Store app

Reset Windows Update (Caution)

The final thing that you can do to get the Store working again is to reset Windows Update completely. And before proceeding, you should be warned that messing around with Windows system files can lead to problems, so do this at your own risk:

  1. Click Start, then type 'services' and select the Services desktop app
  2. Find the Windows Update service, right-click on it, then select Stop
  3. Next, open File Explorer and navigate to the C:Windows directory
  4. Right-click on the SoftwareDistribution folder, then rename it to SoftwareDistribution.OLD or any name of your choosing
  5. Go back to the Services app and restart the Windows Update service
  6. Test your Store downloads

How To Fix Download Pending

This final step is the one that ultimately worked for me, but it is a 'nuclear option' and I do not recommend trying it first.

Google Play Store Stuck On Download Pending

Have you run into this problem with Windows 10? Be sure to chime in below in the comments to let us know if anything worked for you.

App Download Pending

Source: Technipages