fastlane: Google Api Error: Invalid request - Access Not Configured

New Issue Checklist

Issue Description

Hi,

I have an issue with the supply command, which doesn’t work as expected.

Following the documentation, I did the following:

  • I created a service account with the Service Account User role
  • I’ve assigned the Release Manager role to this user in the Play Console
  • I’ve enabled the Google Play Android Developer API in the Google Cloud Console

When I ran the fastlane supply init command, it properly downloaded the metadata. I can even see the calls in the GCP console.

Then I created a lane called playstore, with a dedicated track (which already exists).

But when I want to push a new version of my app, whether in the production or in the track, I still have the following error:

Google Api Error: Invalid request - Access Not Configured. Google Play Developer API has not been used in project XXXXXX before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/androidpublisher.googleapis.com/overview?project=XXXXXX then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.

The project was created more than 24 hours ago.

Thanks in advance for your help!

Command executed

fastlane playstore

Complete output when running fastlane, including the stack trace and command used
Please see screenshots below

Environment

✅ fastlane environment ✅

Stack

Key Value
OS 10.14.6
Ruby 2.5.8
Bundler? false
Git git version 2.10.1
Installation Source /usr/local/Cellar/fastlane/2.149.1/libexec/bin/fastlane
Host Mac OS X 10.14.6 (18G4032)
Ruby Lib Dir /usr/local/Cellar/ruby@2.5/2.5.8/lib
OpenSSL Version OpenSSL 1.1.1f 31 Mar 2020
Is contained false
Is homebrew false
Is installed via Fabric.app false
Xcode Path /Library/Developer/CommandLineTools/
Xcode Version

System Locale

Variable Value
LANG en_US.UTF-8
LC_ALL en_US.UTF-8
LANGUAGE

fastlane files:

`./fastlane/Fastfile`
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
#     https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
#     https://docs.fastlane.tools/plugins/available-plugins
#

# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane

default_platform(:android)

platform :android do
  desc "Runs all the tests"
  lane :test do
    gradle(task: "test")
  end

  desc "Submit a new Beta Build to Crashlytics Beta"
  lane :beta do
    gradle(task: "clean assembleRelease")
    crashlytics
  
    # sh "your_script.sh"
    # You can also use other beta testing services here
  end

  desc "Deploy a new version to the Google Play"
  lane :deploy do
    gradle(task: "clean assembleRelease")
    upload_to_play_store
  end
end

lane :playstore do
  gradle(
    task: 'assemble',
    build_type: 'Debug'
  )
  upload_to_play_store(
    track: 'Geofencing'
  )
end

`./fastlane/Appfile`
json_key_file("/Users/florian/Dropbox/Business/Wizy/ServiceAccounts/google-play-sa-key.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
package_name("app.wizyemm.eu.companion.test") # e.g. com.krausefx.app

fastlane gems

Gem Version Update-Status
fastlane 2.149.1 ✅ Up-To-Date

Loaded fastlane plugins:

No plugins Loaded

Loaded gems
Gem Version
slack-notifier 2.3.2
atomos 0.1.3
CFPropertyList 3.0.2
claide 1.0.3
colored2 3.1.2
nanaimo 0.2.6
xcodeproj 1.16.0
rouge 2.0.7
xcpretty 0.3.0
terminal-notifier 2.0.0
unicode-display_width 1.7.0
terminal-table 1.8.0
plist 3.5.0
public_suffix 2.0.5
addressable 2.7.0
multipart-post 2.0.0
word_wrap 1.0.0
tty-screen 0.8.0
tty-cursor 0.7.1
tty-spinner 0.9.3
babosa 1.0.3
colored 1.2
highline 1.7.10
commander-fastlane 4.4.6
excon 0.73.0
faraday 1.0.1
unf_ext 0.0.7.7
unf 0.1.4
domain_name 0.5.20190701
http-cookie 1.0.3
faraday-cookie_jar 0.0.6
faraday_middleware 1.0.0
fastimage 2.1.7
gh_inspector 1.1.3
json 2.3.0
mini_magick 4.10.1
multi_xml 0.6.0
rubyzip 1.3.0
security 0.1.3
xcpretty-travis-formatter 1.0.0
dotenv 2.7.5
bundler 2.1.4
naturally 2.2.0
simctl 1.6.8
jwt 2.1.0
uber 0.1.0
declarative 0.0.10
declarative-option 0.1.0
representable 3.0.4
retriable 3.1.2
mini_mime 1.0.2
multi_json 1.14.1
signet 0.14.0
memoist 0.16.2
os 1.1.0
googleauth 0.12.0
httpclient 2.8.3
google-api-client 0.38.0
google-cloud-env 1.3.2
google-cloud-errors 1.0.1
google-cloud-core 1.5.0
digest-crc 0.5.1
google-cloud-storage 1.26.2
emoji_regex 1.0.1
jmespath 1.4.0
aws-partitions 1.324.0
aws-eventstream 1.1.0
aws-sigv4 1.1.4
aws-sdk-core 3.97.1
aws-sdk-kms 1.33.0
aws-sdk-s3 1.67.1

generated on: 2020-06-11

service-account

permissions

enable-api

fastlane-playstore

About this issue

  • Original URL
  • State: closed
  • Created 4 years ago
  • Reactions: 24
  • Comments: 41 (10 by maintainers)

Most upvoted comments

Same issue here. Our situation is as followed: New app on the google Play store. We’ve uploaded an APK manually to the test track so that the Google Play Store assigns it the desired bundle ID. Then when we want fastlane to send the APK to the production track we get the exact same error.

We have tried waiting for more than 24 hours. We have tried making a new key for the Service Account. We have tried to make a new Service account. We have made a new project in the Google Cloud Console.

And we still end up with the error.

@wcenGitHub Thanks for all this information! That should be helpful ❤

I’ve assigned the issue to @snatchev and we are seeing if we can escalate this someone inside of Google. Will keep you all posted when we find out more!

I am also experiencing the issue and am in the completely same situation: did all the things the author of this issue has listed:(

I’m in the same boat… tests work perfectly, build fails.

Experiencing the same issue on 2.149.1 even though the validate_play_store_json_key test is successful:

Successfully established connection to Google Play Store.

Same issue here, following is the stack trace from reports:

/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/runner.rb:253:in `block in execute_action'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/runner.rb:227:in `chdir'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/runner.rb:227:in `execute_action'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/runner.rb:157:in `trigger_action_by_name'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/fast_file.rb:159:in `method_missing' Fastfile:64:in `block (2 levels) in
parsing_binding' /usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/lane.rb:33:in `call'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane-2.149.1/fastlane/lib/fastlane/runner.rb:49:in
`block in execute' /usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/runner.rb:45:in `chdir'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane-2.149.1/fastlane/lib/fastlane/runner.rb:45:in
`execute' /usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/lane_manager.rb:47:in `cruise_lane'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/command_line_handler.rb:36:in `handle'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/commands_generator.rb:108:in `block (2 levels) in run'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/commander-fastlane4.4.6/lib/commander/command.rb:178:in `call'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/commander-fastlane4.4.6/lib/commander/command.rb:153:in `run'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/commander-fastlane4.4.6/lib/commander/runner.rb:476:in `run_active_command'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb:76:in `run!'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/commander-fastlane4.4.6/lib/commander/delegates.rb:15:in `run!'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/commands_generator.rb:352:in `run'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/commands_generator.rb:41:in `start'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane2.149.1/fastlane/lib/fastlane/cli_tools_distributor.rb:119:in `take_off'
/usr/local/Cellar/fastlane/2.149.1/libexec/gems/fastlane-2.149.1/bin/fastlane:23:in `'
/usr/local/Cellar/fastlane/2.149.1/libexec/bin/fastlane:23:in `load'
/usr/local/Cellar/fastlane/2.149.1/libexec/bin/fastlane:23:in `' Google Api Error: Invalid request -
Access Not Configured. Google Play Developer API has not been used in project xxx before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/androidpublisher.googleapis.com/overview? project=xxx then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry."/>

Can confirm that it is working on my end with no issues. And I’ve deployed a good 20-30 apps so far 😄

Same problem here.

However I believe the source of the problem is NOT fastlane.

Unfortunately it seems this problem is coming from Google Play or the Google Cloud Console, or the linking between them, and it only affects some Google Play accounts. We use the same deployment code and same machine for several different Google Play account and we’ve started bumping into this issue recently with some accounts, while the rest work just fine.

We’re used to setting this up with customers and we’ve been doing it for a while, we know the setup and the steps by heart. We double/triple/n checked everything and it should be working but it’s not, even after several days with the setup being done.

One interesting thing to note: In the Google Play Console if we remove the service account access from “Users & permissions”, the API works properly and gives out the forbidden error response:

Google Api Error: forbidden...

instead of

Google Api Error: accessNotConfigured

This makes me think that something in Google Play is broken somehow. We’ve emailed Google Play support over a week ago, but so far no response.

Does anyone know of a way to escalate this to the Google Play Publisher API team maybe?

Wow is anyone looking into this yet? Seems like a lot of us are stuck. For the first time ever my iOS releases are going out faster than my Android ones lol

this starts working for me from Azure DevOps and App Center now, it could have been a problem in Google side.

Hello everyone, Without doing anything, I succeeded to run the google_play_track_version_codes action, and upload an new binary to the Play Store. Seems to be related to Google directly.

While it wasn’t working, I deleted and regenerated the service account two times. So it is working now with a service account created during the error time.

I’m using Fastlane, and it’s not working right now. I will check regularly if it seems to work for some of us here. Maybe it is needed to generate again the Service Account (and the related key)?

It seems to be working now. I am using fastlane

I can confirm that everything is back to normal and working 😃

Can you share your full output when running the action with --verbose @wcenGitHub please?


wayne-macbookpro:android wcen$ bundle exec fastlane testGoogleAPI --env development --verbose
[✔] 🚀 
INFO [2020-06-25 23:59:00.38]: Successfully loaded custom action '/Users/wcen/Workspace/Mobile/android/fastlane/actions/android_metadata_branding.rb'.
INFO [2020-06-25 23:59:00.38]: Successfully loaded custom action '/Users/wcen/Workspace/Mobile/android/fastlane/actions/override_resources.rb'.
DEBUG [2020-06-25 23:59:00.38]: Checking if there are any plugins that should be loaded...
DEBUG [2020-06-25 23:59:00.38]: Loading 'fastlane-plugin-firebase_management' plugin
INFO [2020-06-25 23:59:00.38]: gem 'fastlane-plugin-firebase_management' is already installed
+-------------------------------------+---------+---------------------------------------------------------+
|                                              Used plugins                                               |
+-------------------------------------+---------+---------------------------------------------------------+
| Plugin                              | Version | Action                                                  |
+-------------------------------------+---------+---------------------------------------------------------+
| fastlane-plugin-firebase_management | 1.1.0   | firebase_add_app firebase_list firebase_download_config |
+-------------------------------------+---------+---------------------------------------------------------+

Successfully loaded Appfile at path '/Users/wcen/Workspace/Mobile/android/fastlane/Appfile'
- json_key_file: 'SERVICE_ACCOUNT_KEY.json'
- package_name: '****'
-------
ERROR [2020-06-25 23:59:01.02]: Your Fastfile has had smart quotes sanitised. To avoid issues in the future, you should not use TextEdit for editing it. If you are not using TextEdit, you should turn off smart quotes in your editor of choice.
INFO [2020-06-25 23:59:01.12]: Successfully loaded custom action '/Users/wcen/Workspace/Mobile/android/fastlane/actions/android_metadata_branding.rb'.
INFO [2020-06-25 23:59:01.12]: Successfully loaded custom action '/Users/wcen/Workspace/Mobile/android/fastlane/actions/override_resources.rb'.
INFO [2020-06-25 23:59:01.13]: ------------------------------
INFO [2020-06-25 23:59:01.13]: --- Step: default_platform ---
INFO [2020-06-25 23:59:01.13]: ------------------------------
INFO [2020-06-25 23:59:01.13]: Loading from './fastlane/.env.development'
INFO [2020-06-25 23:59:01.13]: Driving the lane 'android testGoogleAPI' 🚀
INFO [2020-06-25 23:59:01.13]: -----------------
INFO [2020-06-25 23:59:01.13]: --- Step: env ---
INFO [2020-06-25 23:59:01.13]: -----------------
INFO [2020-06-25 23:59:01.13]: $ env
INFO [2020-06-25 23:59:01.14]: ▸ RBENV_VERSION=2.5.3
INFO [2020-06-25 23:59:01.14]: ▸ TERM_PROGRAM=Apple_Terminal
INFO [2020-06-25 23:59:01.14]: ▸ ANDROID_HOME=/Users/wcen/Library/Android/sdk
INFO [2020-06-25 23:59:01.14]: ▸ SHELL=/bin/bash
INFO [2020-06-25 23:59:01.14]: ▸ TERM=xterm-256color
INFO [2020-06-25 23:59:01.14]: ▸ TMPDIR=/var/folders/9s/w9vnn0gs1cn_r_j24vq8042w0000gn/T/
INFO [2020-06-25 23:59:01.14]: ▸ GOOGLE_APPLICATION_CREDENTIALS=***
INFO [2020-06-25 23:59:01.14]: ▸ TERM_PROGRAM_VERSION=433
INFO [2020-06-25 23:59:01.14]: ▸ TERM_SESSION_ID=A410ADCE-459E-4F34-BE21-45B36C551E30
INFO [2020-06-25 23:59:01.14]: ▸ USER=wcen
INFO [2020-06-25 23:59:01.14]: ▸ RBENV_ROOT=/Users/wcen/.rbenv
INFO [2020-06-25 23:59:01.14]: ▸ SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.VdWBgQ74sT/Listeners
INFO [2020-06-25 23:59:01.14]: ▸ RBENV_HOOK_PATH=/Users/wcen/.rbenv/rbenv.d:/usr/local/Cellar/rbenv/1.1.2/rbenv.d:/usr/local/etc/rbenv.d:/etc/rbenv.d:/usr/lib/rbenv/hooks
INFO [2020-06-25 23:59:01.14]: ▸ PATH=/Users/wcen/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/bin:/Users/wcen/.rbenv/versions/2.5.3/bin:/usr/local/Cellar/rbenv/1.1.2/libexec:/Users/wcen/.rbenv/shims:/Users/wcen/Library/Android/sdk/emulator:/Users/wcen/Library/Android/sdk/platform-tools:/Users/wcen/Library/Android/sdk/build-tools/28.0.3:/Users/wcen/Library/Android/sdk/tools/bin:/Users/wcen/Library/Android/sdk/tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Apple/usr/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands
INFO [2020-06-25 23:59:01.14]: ▸ LaunchInstanceID=E481667E-1123-455F-9572-8F7C16ACFC74
INFO [2020-06-25 23:59:01.14]: ▸ PWD=/Users/wcen/Workspace/Mobile/android
INFO [2020-06-25 23:59:01.14]: ▸ LANG=en_NZ.UTF-8
INFO [2020-06-25 23:59:01.14]: ▸ XPC_FLAGS=0x0
INFO [2020-06-25 23:59:01.14]: ▸ RBENV_SHELL=bash
INFO [2020-06-25 23:59:01.14]: ▸ XPC_SERVICE_NAME=0
INFO [2020-06-25 23:59:01.14]: ▸ SHLVL=1
INFO [2020-06-25 23:59:01.14]: ▸ HOME=/Users/wcen
INFO [2020-06-25 23:59:01.14]: ▸ RBENV_DIR=/Users/wcen/Workspace/Mobile/android
INFO [2020-06-25 23:59:01.14]: ▸ LOGNAME=wcen
INFO [2020-06-25 23:59:01.14]: ▸ RUBYLIB=/Users/wcen/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bundler-2.0.2/lib:/usr/local/Cellar/rbenv/1.1.2/rbenv.d/exec/gem-rehash
INFO [2020-06-25 23:59:01.14]: ▸ SECURITYSESSIONID=***
INFO [2020-06-25 23:59:01.14]: ▸ __CF_USER_TEXT_ENCODING=*****
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLER_ORIG_BUNDLE_BIN_PATH=BUNDLER_ENVIRONMENT_PRESERVER_INTENTIONALLY_NIL
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLER_ORIG_BUNDLE_GEMFILE=BUNDLER_ENVIRONMENT_PRESERVER_INTENTIONALLY_NIL
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLER_ORIG_BUNDLER_ORIG_MANPATH=BUNDLER_ENVIRONMENT_PRESERVER_INTENTIONALLY_NIL
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLER_ORIG_BUNDLER_VERSION=BUNDLER_ENVIRONMENT_PRESERVER_INTENTIONALLY_NIL
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLER_ORIG_GEM_HOME=BUNDLER_ENVIRONMENT_PRESERVER_INTENTIONALLY_NIL
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLER_ORIG_GEM_PATH=BUNDLER_ENVIRONMENT_PRESERVER_INTENTIONALLY_NIL
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLER_ORIG_MANPATH=BUNDLER_ENVIRONMENT_PRESERVER_INTENTIONALLY_NIL
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLER_ORIG_PATH=/Users/wcen/.rbenv/versions/2.5.3/bin:/usr/local/Cellar/rbenv/1.1.2/libexec:/Users/wcen/.rbenv/shims:/Users/wcen/Library/Android/sdk/emulator:/Users/wcen/Library/Android/sdk/platform-tools:/Users/wcen/Library/Android/sdk/build-tools/28.0.3:/Users/wcen/Library/Android/sdk/tools/bin:/Users/wcen/Library/Android/sdk/tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Apple/usr/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLER_ORIG_RB_USER_INSTALL=BUNDLER_ENVIRONMENT_PRESERVER_INTENTIONALLY_NIL
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLER_ORIG_RUBYLIB=/usr/local/Cellar/rbenv/1.1.2/rbenv.d/exec/gem-rehash:
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLER_ORIG_RUBYOPT=BUNDLER_ENVIRONMENT_PRESERVER_INTENTIONALLY_NIL
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLE_BIN_PATH=/Users/wcen/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/bundler-2.0.2/exe/bundle
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLE_GEMFILE=/Users/wcen/Workspace/Mobile/android/Gemfile
INFO [2020-06-25 23:59:01.14]: ▸ BUNDLER_VERSION=2.0.2
INFO [2020-06-25 23:59:01.14]: ▸ RUBYOPT=-rbundler/setup
INFO [2020-06-25 23:59:01.14]: ▸ GEM_PATH=/Users/wcen/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0:/Users/wcen/.gem/ruby/2.5.0
INFO [2020-06-25 23:59:01.14]: ▸ GEM_HOME=/Users/wcen/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0
INFO [2020-06-25 23:59:01.14]: ▸ EMULATOR_TOOL=/Users/wcen/Library/Android/sdk/emulator/emulator
INFO [2020-06-25 23:59:01.14]: ▸ AVD_MANAGER=/Users/wcen/Library/Android/sdk/tools/bin/avdmanager
INFO [2020-06-25 23:59:01.14]: ▸ ADB_TOOL=/Users/wcen/Library/Android/sdk/platform-tools/adb
INFO [2020-06-25 23:59:01.14]: ▸ COLOR_CONTRAST_RATIO_FOR_LIGHT_THEME=1.333
INFO [2020-06-25 23:59:01.14]: ▸ COLOR_CONTRAST_RATIO_FOR_DARK_THEME=3.0
INFO [2020-06-25 23:59:01.14]: ▸ EMULATOR_NAME=Screenshot29
INFO [2020-06-25 23:59:01.14]: ▸ EMULATOR_DEVICE=Nexus 6P
INFO [2020-06-25 23:59:01.14]: ▸ EMULATOR_PACKAGE=system-images;android-29;google_apis;x86
INFO [2020-06-25 23:59:01.14]: ▸ BRANDING_PREVIEW_ORGANISATION_ID=9380
INFO [2020-06-25 23:59:01.14]: ▸ DEFAULT_APPLICATION_ID=****
INFO [2020-06-25 23:59:01.14]: ▸ PREVIEW_TEST_PACKAGE_NAME=****
INFO [2020-06-25 23:59:01.14]: ▸ SCREENSHOTS_TEST_PACKAGE_NAME=****
INFO [2020-06-25 23:59:01.14]: ▸ KEYSTORE_FILE_PATH=../keystore/KEYSTORE.jks
INFO [2020-06-25 23:59:01.14]: ▸ KEYSTORE_PROPERTIES_FILE_PATH=../keystore.properties
INFO [2020-06-25 23:59:01.14]: ▸ GRADLE_PROPERTIES_FILE_PATH=../gradle.properties
INFO [2020-06-25 23:59:01.14]: ▸ SERVICE_ACCOUNT_KEY_FILE=SERVICE_ACCOUNT_KEY.json
INFO [2020-06-25 23:59:01.14]: ▸ SERVICE_ACCOUNT_KEY_FILE_PATH=../SERVICE_ACCOUNT_KEY.json
INFO [2020-06-25 23:59:01.14]: ▸ MAPPING_FILE_PATH=./app/build/outputs/mapping/backend/release/mapping.txt
INFO [2020-06-25 23:59:01.14]: ▸ RELEASE_AAB_PATH=./app/build/outputs/bundle/backendRelease/app-backend-release.aab
INFO [2020-06-25 23:59:01.14]: ▸ DEMO_AAB_PATH=./app/build/outputs/bundle/mockRelease/app-mock-release.aab
INFO [2020-06-25 23:59:01.14]: ▸ DEMO_MAPPING_FILE_PATH=./app/build/outputs/mapping/demo/mapping.txt
INFO [2020-06-25 23:59:01.14]: ▸ BACKUP_APK_FILE_PATH=../app/build/outputs/apk/backend/release/app-backend-release.apk
INFO [2020-06-25 23:59:01.14]: ▸ SCREENSHOT_APP_APK_PATH=app/build/outputs/apk/backend/debug/app-backend-debug.apk
INFO [2020-06-25 23:59:01.14]: ▸ DEBUG_APP_APK_PATH=app/build/outputs/apk/mock/debug/app-mock-debug.apk
INFO [2020-06-25 23:59:01.14]: ▸ TESTS_APK_PATH=app/build/outputs/apk/androidTest/mock/debug/app-mock-debug-androidTest.apk
INFO [2020-06-25 23:59:01.14]: ▸ SCREENSHOTS_TESTS_APK_PATH=app/build/outputs/apk/androidTest/backend/debug/app-backend-debug-androidTest.apk
INFO [2020-06-25 23:59:01.14]: ▸ FORK_XCODE_WRITING=true
INFO [2020-06-25 23:59:01.14]: ▸ FASTLANE_LANE_NAME=testGoogleAPI
INFO [2020-06-25 23:59:01.14]: ▸ FASTLANE_PLATFORM_NAME=android
Successfully loaded Appfile at path '/Users/wcen/Workspace/Mobile/android/fastlane/Appfile'
- json_key_file: 'SERVICE_ACCOUNT_KEY.json'
- package_name: '***'
-------
INFO [2020-06-25 23:59:02.82]: ### edit id: ***
Successfully loaded Appfile at path '/Users/wcen/Workspace/Mobile/android/fastlane/Appfile'
- json_key_file: 'SERVICE_ACCOUNT_KEY.json'
- package_name: '***
-------
Successfully loaded Appfile at path '/Users/wcen/Workspace/Mobile/android/fastlane/Appfile'
- json_key_file: 'SERVICE_ACCOUNT_KEY.json'
- package_name: '***'
-------
INFO [2020-06-25 23:59:03.43]: ### track: [#<Google::Apis::AndroidpublisherV3::TrackRelease:0x00007fc17284f018 @name="4.1.0", @status="completed", @version_codes=["7"]>]
Successfully loaded Appfile at path '/Users/wcen/Workspace/Mobile/android/fastlane/Appfile'
- json_key_file: 'SERVICE_ACCOUNT_KEY.json'
- package_name: '***'
-------
INFO [2020-06-25 23:59:03.44]: -----------------------------------------------------
INFO [2020-06-25 23:59:03.44]: --- Step: Switch to android sendSlackMessage lane ---
INFO [2020-06-25 23:59:03.44]: -----------------------------------------------------
INFO [2020-06-25 23:59:03.44]: Cruising over to lane 'android sendSlackMessage' 🚖
INFO [2020-06-25 23:59:03.44]: -------------------
INFO [2020-06-25 23:59:03.44]: --- Step: is_ci ---
INFO [2020-06-25 23:59:03.44]: -------------------
INFO [2020-06-25 23:59:03.44]: Cruising back to lane 'android testGoogleAPI' 🚘
INFO [2020-06-25 23:59:03.44]: Successfully generated documentation at path '/Users/wcen/Workspace/Mobile/android/fastlane/README.md'

+------+-----------------------------------------+-------------+
|                       fastlane summary                       |
+------+-----------------------------------------+-------------+
| Step | Action                                  | Time (in s) |
+------+-----------------------------------------+-------------+
| 1    | default_platform                        | 0           |
| 2    | env                                     | 0           |
| 3    | Switch to android sendSlackMessage lane | 0           |
| 4    | is_ci                                   | 0           |
+------+-----------------------------------------+-------------+

DEBUG [2020-06-25 23:59:03.45]: All plugins are up to date
INFO [2020-06-25 23:59:03.45]: fastlane.tools finished successfully 🎉
DEBUG [2020-06-25 23:59:03.45]: All plugins are up to date

#######################################################################
# fastlane 2.149.1 is available. You are on 2.144.0.
# You should use the latest version.
# Please update using `bundle update fastlane`.
#######################################################################

2.150.0.rc1
- [deliver][produce][spaceship] Update to use new App Store Connect API endpoints (#16626) via @joshdholtz

## Instructions on testing the release candidate

### Bundler


2.149.1 Fix for dervice data issues
* [fastlane_core] fix issues with -derivedDataPath on scan, gym, and snapshot  (#16560) via Josh Holtz

2.149.0 Improvements
* [fastlane] update fastlane logo default in actions (#16556) via Josh Holtz
* [match] delete the correct files when working with multiple teams on S3 (#16542) via Krzysztof Romanowski
* [Fastlane.swift] add support for Float and Double variables that can be 0 initialized. (#16512) via Jorge
* [upload_symbols_to_crashlytics] fix `gsp_path` parameter will not expand when use with `api_token` parameter. (#16477) via r-plus
* [fastlane] allow newer rake versions (#16522) via Anton Rieder
* [fastlane_core] add -derivedDataPath when SwiftPM dependencies resolving (#16534) via sudachi808
* [screengrab] Improved screengrab documentation for use with kotlin (#16476) via Thorsten Knöller
* [spaceship] retry request when Developer Portal responds with a 403 status code (#16478) via Erick Camacho
* [gym] fix typo in `installer_cert_name` description (#16517) via Morten Bjerg Gregersen
* [deliver] fix app_screenshot comments (#16503) via Jan Piotrowski
* [snapshot] add disable_xcpretty option from scan (#16466) via Jean Mainguy
* [snapshot] specify custom path for erb (#15349) via Nikolay Derkach
* [pilot] changelog bytesize truncate tests (#14485) via Albert
* [action] added support for Slather's SonarQube option (#16500) via Alberto Salas
* [scan] fix test result parser issue with disable_xcpretty (#16481) via Jean Mainguy

To see all new releases, open https://github.com/fastlane/fastlane/releases

Please update using `bundle update fastlane`
wayne-macbookpro:android wcen$ 


This is very strange! It appears to be something on Google’s API (but maybe we need an SDK bump???). I will see if I can find somebody who knows more? 😊

Unfortunately nothing what we can do from fastlane side (right @joshdholtz?). Using the official support channel is usually a good idea.

same here. issue seem to be failing for this method androidpublisher.edits.insert in google api.