This project is a fastlane plugin. To get started with fastlane-plugin-twine
, add it to your project by running:
fastlane add_plugin twine
This plugin provides easy access to common actions (e.g. generating the localization files) you would normally perform with twine and adds some extra functionality.
Check out the example configuration.
JSON file scheme:
[
{
"description": "",
"source_path": "",
"twine_args": "",
"destination_path": ""
}
]
description
: This is optional but recommended to make the output more readable.source_path
: The path to your twine file. This is required.twine_args
: Additional args to pass to twine. For example:--lang en --format android
destination_path
: The path where the generated translation file will be found. This is required.
Check out the example Fastfile
to see how to use this plugin. Try it by cloning the repo, running fastlane install_plugins
and bundle exec fastlane all
.
If you have trouble using plugins, check out the Plugins Troubleshooting guide.