Skip to content

Instantly share code, notes, and snippets.

@nphausg
Created June 10, 2021 01:19
Show Gist options
  • Select an option

  • Save nphausg/1c892717c53ab50d8773312c715d906d to your computer and use it in GitHub Desktop.

Select an option

Save nphausg/1c892717c53ab50d8773312c715d906d to your computer and use it in GitHub Desktop.
Fastfile: lane build bundle
private_lane :bundle do |options|
mode = (options[:mode])
yarn(command: "android:bundle:#{mode}")
sh("rm -rf ../android/app/src/main/res/drawable-*")
sh("rm -rf ../android/app/src/main/res/raw")
sh("cp -a ../app/assets/android/* ../android/app/src/main/res")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment