/fastlane-plugin-schindler

Schindler is a TestFlight tool for release useless quota.

Primary LanguageRubyMIT LicenseMIT

schindler plugin

fastlane Plugin Badge

About Schindler

Schindler is a TestFlight automatic processing tool, which is used to maintain the number of TestFlight quota, eliminate useless testers, and improve the external gray effect of iOS.

Getting Started

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

fastlane add_plugin schindler

RubyGems

fastlane-plugin-schindler

Example

1. Fastlane Ready

# install fastlane
gem install fastlane
# create a workspace
fastlane init
# add puglin
fastlane add_plugin schindler

2. Edit Fastfile

After Init succeeds, the fastlane folder will be generated in the current directory.

Edit ./fastlane/Fastfile,for example:

# A sample Fastfile
lane :delete do
  schindler(
    filter_type: "7",                   # Optional, '1'-Not installed, '2'-Expired, '4'-Unused, '7'-All(1 | 2 | 4), default 7
    auto_confirm: "auto",               # Optional, 'auto'-skip, default no. Skip the second confirmation, or wait for user confirmation before deleting after scanning
    user_id: "xjk_001@163.com",         # Your AppID for login App Store Connect
    user_password: "********",          # AppID password, support App private password
    ios_app_id: "11112222"              # The ID of the app in the Apple Store
  )
end

3. Execute

fastlane delete

result

Run tests for this plugin

To run both the tests, and code style validation, run

rake

To automatically fix many of the styling issues, use

rubocop -a

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 guide.

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 beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.