diff --git a/android/fastlane/Fastfile b/android/fastlane/Fastfile index ca18cc59..9daaf351 100644 --- a/android/fastlane/Fastfile +++ b/android/fastlane/Fastfile @@ -20,6 +20,6 @@ default_platform(:android) # note the `..`, since fastlane runs in the _fastlane_ directory changelog = File.read("../../CHANGELOG.md") #gradle(task: "clean assembleRelease") - upload_to_play_store(aab: "../build/app/outputs/bundle/release/app-release.aab", track:"beta", release_notes: changelog, version_code: ENV['BUILD_NUMBER'], version_name: ENV['VERSION'], , json_key_data: ENV['GOOGLE_SECRETS']) + upload_to_play_store(aab: "../build/app/outputs/bundle/release/app-release.aab", track:"internal", release_notes: changelog, version_code: ENV['BUILD_NUMBER'], version_name: ENV['VERSION'], , json_key_data: ENV['GOOGLE_SECRETS']) end end