No commit activity in last 3 years
No release in over 3 years
A fastlane plugin providing actions related to twine
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 2.26.1
>= 0
>= 0
= 0.49.1

Runtime

 Project Readme

twine plugin

Travis CI fastlane Plugin Badge Gem License

Getting Started

This project is a fastlane plugin. To get started with fastlane-plugin-twine, add it to your project by running:

fastlane add_plugin twine

About the plugin

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.

Configuration file

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.

Example

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.

Troubleshooting

If you have trouble using plugins, check out the Plugins Troubleshooting guide.