branding plugin
Render your App's icon to the terminal whenever you run fastlane!
Serious Branding!
Getting Started
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
Why?
You worked hard on your app, so show some pride and see your app's icon during the start of your fastlane runs.
Usage
This plugin makes use of branding.rb to render your AppIcon in glorious hi-res 240 colors!
Issues and Feedback
For any other issues and feedback about this plugin, please submit it to this repository.
Troubleshooting
If you have trouble using plugins, check out the Plugins Troubleshooting doc in the main fastlane
repo.
Using fastlane
Plugins
For more information about how the fastlane
plugin system works, check out the Plugins documentation.
About fastlane
fastlane
is the easiest way to automate building and releasing your iOS and Android apps. To learn more, check out fastlane.tools.