This gem helps to add a badge to your iOS app icon.
Yes that's it. It's built to easily integrate with fastlane.
becomes
or with --dark
Install the gem
sudo gem install badge
Call badge
in your iOS projects root folder
badge
It will search all subfolders for your asset catalog app icon set and add the badge to the icon. Be careful, it actually overwrites the icon files because this gem is meant to be used in and automated build environment.
Here is the dark option:
badge --dark
You can also use your custom overlay/badge image
badge --custom="path_to/custom_badge.png"
lane :appstore do
increment_build_number
cocoapods
badge(dark: true)
#badge(custom: "/Users/HazA/Desktop/badge.png")
xctool
snapshot
sigh
deliver
sh "./customScript.sh"
slack
end
If Jenkins has problems finding imagemagick on your mac add following env variable to your job:
PATH=$PATH:/usr/local/bin
sudo gem uninstall badge
@ThomasMirnig @KrauseFx fastlane
This project is licensed under the terms of the MIT license. See the LICENSE file.