├── .circleci └── config.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── fastlane-plugin-huawei_appgallery_connect.gemspec ├── fastlane ├── Fastfile └── Pluginfile ├── lib └── fastlane │ └── plugin │ ├── huawei_appgallery_connect.rb │ └── huawei_appgallery_connect │ ├── actions │ ├── huawei_appgallery_connect_action.rb │ ├── huawei_appgallery_connect_get_app_id.rb │ ├── huawei_appgallery_connect_get_app_info.rb │ ├── huawei_appgallery_connect_set_gms_dependency.rb │ ├── huawei_appgallery_connect_submit_for_review.rb │ └── huawei_appgallery_connect_update_app_localization.rb │ ├── helper │ └── huawei_appgallery_connect_helper.rb │ └── version.rb └── spec ├── huawei_appgallery_connect_action_spec.rb └── spec_helper.rb /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/Rakefile -------------------------------------------------------------------------------- /fastlane-plugin-huawei_appgallery_connect.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/fastlane-plugin-huawei_appgallery_connect.gemspec -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | -------------------------------------------------------------------------------- /lib/fastlane/plugin/huawei_appgallery_connect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/lib/fastlane/plugin/huawei_appgallery_connect.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_action.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_get_app_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_get_app_id.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_get_app_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_get_app_info.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_set_gms_dependency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_set_gms_dependency.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_submit_for_review.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_submit_for_review.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_update_app_localization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_update_app_localization.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/huawei_appgallery_connect/helper/huawei_appgallery_connect_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/lib/fastlane/plugin/huawei_appgallery_connect/helper/huawei_appgallery_connect_helper.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/huawei_appgallery_connect/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/lib/fastlane/plugin/huawei_appgallery_connect/version.rb -------------------------------------------------------------------------------- /spec/huawei_appgallery_connect_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/spec/huawei_appgallery_connect_action_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shr3jn/fastlane-plugin-huawei_appgallery_connect/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------