Skip to content
Snippets Groups Projects
Commit be77aa7a authored by Karthik Shetty's avatar Karthik Shetty
Browse files

Update Fastfile

parent ab434fa2
No related branches found
No related tags found
No related merge requests found
......@@ -60,13 +60,15 @@ platform :android do
end
desc "Deploy a new version to the Google Play - Alpha"
lane :deployToDrive do
lane :deployToplay do
gradle(task: "clean assembleDebug")
upload_to_google_drive(
drive_keyfile: 'fastlane/fastlane-admin-app-distribution.json',
service_account: true,
folder_id: '1pJw3ys99whpeV4CMPlhkoLRwZduBJk4S',
upload_files: ['app/build/outputs/apk/debug/app-debug.apk']
upload_to_google_play(
track: "internal", # or "alpha", "beta", "production"
json_key: json_key_file,
package_name: "your.app.package.name",
apk: "app/build/outputs/apk/debug/app-debug.apk",
skip_upload_metadata: true, # Set to false if you want to upload metadata (e.g., changelog)
skip_upload_images: true, # Set to false if you want to upload screenshots, feature graphics, etc.
)
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment