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.
This project is a fastlane plugin. To get started with fastlane-plugin-schindler
, add it to your project by running:
fastlane add_plugin schindler
# install fastlane
gem install fastlane
# create a workspace
fastlane init
# add puglin
fastlane add_plugin schindler
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
fastlane delete
To run both the tests, and code style validation, run
rake
To automatically fix many of the styling issues, use
rubocop -a
For any other issues and feedback about this plugin, please submit it to this repository.
If you have trouble using plugins, check out the Plugins Troubleshooting guide.
For more information about how the fastlane
plugin system works, check out the Plugins documentation.
fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.