doc/user/project/integrations/google_play.md
{{< details >}}
{{< /details >}}
{{< history >}}
google_play_integration. Disabled by default.google_play_integration removed.{{< /history >}}
This feature is part of Mobile DevOps developed by GitLab. The feature is still in development, but you can:
With the Google Play integration, you can configure your CI/CD pipelines to connect to the Google Play Console to build and release apps for Android devices.
The Google Play integration works out of the box with fastlane. You can also use this integration with other build tools.
Prerequisites:
To enable the Google Play integration in GitLab:
com.gitlab.app_name).After you enable the integration, the global variables $SUPPLY_PACKAGE_NAME and $SUPPLY_JSON_KEY_DATA are created for CI/CD use.
Malicious code pushed to your .gitlab-ci.yml file could compromise your variables, including $SUPPLY_JSON_KEY_DATA, and send them to a third-party server. For more information, see CI/CD variable security.
To enable the integration in fastlane and upload the build to the given track in Google Play, you can add the following code to your app's fastlane/Fastfile:
upload_to_play_store(
track: 'internal',
aab: '../build/app/outputs/bundle/release/app-release.aab'
)