├── .github ├── FUNDING.yml ├── actions │ ├── deploy │ │ └── action.yml │ ├── setup-ruby │ │ └── action.yml │ └── tests │ │ └── action.yml └── workflows │ ├── develop.yml │ ├── pr_title.yml │ ├── pr_validation.yml │ └── release.yml ├── .gitignore ├── .releaserc ├── .rspec ├── .rubocop.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── fastlane-plugin-bundletool.gemspec ├── fastlane ├── Fastfile └── Pluginfile ├── lib └── fastlane │ └── plugin │ ├── bundletool.rb │ └── bundletool │ ├── actions │ └── bundletool_action.rb │ ├── helper │ ├── bundletool_helper.rb │ └── emojis.rb │ └── version.rb ├── resources ├── example.aab ├── example.keystore └── example_keystore.txt └── spec ├── bundletool_action_spec.rb └── spec_helper.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/actions/deploy/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/.github/actions/deploy/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-ruby/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/.github/actions/setup-ruby/action.yml -------------------------------------------------------------------------------- /.github/actions/tests/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/.github/actions/tests/action.yml -------------------------------------------------------------------------------- /.github/workflows/develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/.github/workflows/develop.yml -------------------------------------------------------------------------------- /.github/workflows/pr_title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/.github/workflows/pr_title.yml -------------------------------------------------------------------------------- /.github/workflows/pr_validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/.github/workflows/pr_validation.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/.releaserc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/Rakefile -------------------------------------------------------------------------------- /fastlane-plugin-bundletool.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/fastlane-plugin-bundletool.gemspec -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | -------------------------------------------------------------------------------- /lib/fastlane/plugin/bundletool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/lib/fastlane/plugin/bundletool.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/bundletool/actions/bundletool_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/lib/fastlane/plugin/bundletool/actions/bundletool_action.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/bundletool/helper/bundletool_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/lib/fastlane/plugin/bundletool/helper/bundletool_helper.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/bundletool/helper/emojis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/lib/fastlane/plugin/bundletool/helper/emojis.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/bundletool/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/lib/fastlane/plugin/bundletool/version.rb -------------------------------------------------------------------------------- /resources/example.aab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/resources/example.aab -------------------------------------------------------------------------------- /resources/example.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/resources/example.keystore -------------------------------------------------------------------------------- /resources/example_keystore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/resources/example_keystore.txt -------------------------------------------------------------------------------- /spec/bundletool_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/spec/bundletool_action_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinGonzalez/fastlane-plugin-bundletool/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------