Skip to content

Instantly share code, notes, and snippets.

@cohen72
Last active November 19, 2020 10:32
Show Gist options
  • Save cohen72/182a9b7e6b344b76a4e602ec2d859d4b to your computer and use it in GitHub Desktop.
Save cohen72/182a9b7e6b344b76a4e602ec2d859d4b to your computer and use it in GitHub Desktop.
private_lane :configure_android do
google_services_json_src = "./whitelabels/#{ENV["UNIQUE_WHITELABEL_ID"]}/google-services.json"
android_dest = "../android/app"
sh("cp #{google_services_json_src} #{android_dest}")
configure_assets("android")
android_set_version_code(
version_code: "#{@build_number}",
gradle_file: "./android/app/build.gradle", # optional
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment