Render your App's icon to the terminal whenever you run fastlane!
Serious Branding!
This project is a fastlane plugin. To get started with fastlane-plugin-branding
, add it to your project by running:
fastlane add_plugin branding
Once you've added the plugin, add the branding
action to your Fastfile
.
Like this:
platform :ios do
before_all do
branding
end
end
or:
platform :android do
before_all do
branding(brand_icon_path: "./resources/**/icon.*")
end
end
You worked hard on your app, so show some pride and see your app's icon during the start of your fastlane runs.
This plugin makes use of branding.rb to render your AppIcon in glorious hi-res 240 colors!
For any other issues and feedback about this plugin, please submit it to this repository.
If you have trouble using plugins, check out the Plugins Troubleshooting doc in the main fastlane
repo.
For more information about how the fastlane
plugin system works, check out the Plugins documentation.
fastlane
is the easiest way to automate building and releasing your iOS and Android apps. To learn more, check out fastlane.tools.