App Distribution for iOS, Android and Windows
DashboardStart for free
  • Updraft App Distribution Documentation
  • Microsoft App Center Alternative
    • Windows App Distribution
    • App Center Migration Tool
  • Welcome to Updraft!
    • What is Updraft?
  • Quickstart
    • Register your Organization
    • Your first app project
      • Upload your first app versions (builds)
      • Install your app
  • Dashboard
    • Create Projects
    • Latest received Feedbacks
    • Documentation
    • Usermanagement
      • Permission Groups
      • Tester Dashboard
    • Profile & User Account
      • Profile Preferences
        • Two-factor authentication
      • Personal token
      • Notifications
      • Organizations
      • Account Settings
      • Plan & Billing
        • Free Plan
        • Paid Plan (Pay-As-You-Go)
      • Security (Single Sign-On)
        • Single Sign-On with Okta
        • Single Sign-On with Google Worspace
        • Single Sign-On with Microsoft Entra
        • Single Sign-On with JumpCloud
        • Single Sign-On with Ping Identity
        • Custom SSO (SAML)
      • Developer Accounts
        • App Store Connect API
        • Google Play Connect API
  • Your Projects
    • Project Settings
      • Overview
      • Automatically clean up build binaries
      • Notification Integrations
        • Slack integration
        • Webhook integration
        • Microsoft Teams integration
        • Discord integration
        • WebEx integration
      • User & Permissions
    • App Overview & App Settings
      • Notifications
      • Security
      • Last uploaded build
      • Add another app to your project
      • Android App Bundle (AAB)
    • Builds and App versions
      • Build history / app version history
        • iOS Resigning
        • Android Resigning
      • Release Notes
      • Exchange already uploaded app version
      • Distribute and install a pre-release version of your app
        • App download page
    • Feedback
    • App Distribution
      • Testers & Distribution Groups
      • Distribute your app
        • Single Release
        • Beta Release (one link two apps)
        • Store
          • App Store Distribution
          • Play Store Distribution
      • Release History
      • Install an app distributed from Updraft
  • Integrations
    • Jenkins Plugin Updraft
    • Fastlane
    • Gradle
    • Teamcity with Gradle (Android)
    • Teamcity
    • GitLab CI/CD
      • GitLab iOS with Fastlane
      • GitLab app distribution for iOS builds
      • GitLab app distribution for Android builds
    • Bitrise
  • API
    • Upload API
    • Upload Apps with CURL
    • Rest API
      • Distribution group and Permission group API
  • Updraft SDK
    • Autoupdate
    • Integrating Updraft Android SDK
    • Integrating Updraft iOS SDK
    • Integrating Updraft Flutter SDK
  • Android
    • Unknown sources in Android
    • .apk installation on Samsung Browser
    • Android FAQ
    • 🪅Android Icon Troubleshooting
    • Google Play Store upload issues
  • iOS
    • Untrusted Enterprise Developer
    • Code Signing Explained (Certificates, Identifiers, Profiles – what?)
    • Registering a UDID for Ad Hoc Distribution
    • What does "App could not be installed at this time" mean?
    • iPadOS on Safari
    • iOS FAQ
  • Data Security
    • Data hosting in Switzerland
      • Swiss data privacy law
    • End to end data encryption
    • General Data Protection Regulation (GDPR)
    • Single Sign On (SSO)
    • Custom Storage
      • Google Cloud Storage
      • Custom S3 bucket
    • ISO 27001
  • What's New/ Changelog
  • Roadmap
  • FAQ
  • Contact us
Powered by GitBook
On this page
  • Resolving frequent Google Play Store upload issues
  • Endless Loading / Google API not fully propagated
  1. Android

Google Play Store upload issues

Resolving frequent Google Play Store upload issues

When uploading your app to Google Play, the binary must be production-ready, otherwise you may encounter specific errors. Here are explanations for some common issues:

Version Code Already Used

Error: "APK specifies a version code that has already been used."

Solution: Each app upload requires a unique version code, even if the release version remains the same. Update the version code in your app's source code before attempting to upload again.

Cannot Update a Published APK

Error: "Cannot update a published APK."

Solution: Once an APK is uploaded to a specific track, it cannot be re-uploaded to the same track. To upload a new version, change the track from the Google Play Dashboard.

APK Marked as Debuggable

Error: "APK is marked as debuggable."

Solution: For release distribution, the binary must be in release mode. Modify the build configuration to set the app to release mode, then rebuild the app.

Incorrect Signing Key

Error: "APK was signed with the wrong key."

Solution: The APK must be signed with the same keystore as the previous version. Adjust the keystore in your build configuration and rebuild the app before uploading.

Endless Loading / Google API not fully propagated

Error: If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry

The error message you're seeing suggests that the API you are trying to access in your Google Cloud project, specifically the Android Publisher API (androidpublisher.googleapis.com), is either not enabled or the action of enabling it hasn't fully propagated through Google's systems yet. Here’s how you can resolve the issue:

Steps to troubleshoot and resolve the issue:

  1. Enable the API:

    • Go to the Google Cloud Console.

    • Select your project (ID: 726374296589 based on the error message).

    • Navigate to APIs & Services > Library.

    • Search for the Android Publisher API.

    • Click on it and ensure that the API is enabled.

  2. Check for propagation:

    • If you just enabled the API, wait for a few minutes. Sometimes, enabling an API can take some time to fully propagate across Google's systems.

  3. Check Permissions:

    • Make sure the account you're using has the correct roles and permissions to access the Android Publisher API. The role "Service Account User" or similar with appropriate permissions might be needed.

  4. Retry the request:

    • After waiting for a few minutes (if you recently enabled it), try running the command again.

  5. API Quotas:

    • If you've used this API a lot, check if you’ve hit any quota limits for the Android Publisher API in the Quotas section of the Google Cloud Console.

PreviousAndroid Icon TroubleshootingNextiOS

Last updated 7 months ago