Created
June 10, 2021 01:19
-
-
Save nphausg/1c892717c53ab50d8773312c715d906d to your computer and use it in GitHub Desktop.
Fastfile: lane build bundle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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