Sha256: 91824d9ab56579deb2444129ad0d06b4662500b84f91895da43911281ab6b318

Contents?: true

Size: 1012 Bytes

Versions: 640

Compression:

Stored size: 1012 Bytes

Contents

require 'json'
require 'supply/options'
require 'supply/client'
require 'supply/listing'
require 'supply/apk_listing'
require 'supply/uploader'

require 'fastlane_core'

module Supply
  # Use this to just setup the configuration attribute and set it later somewhere else
  class << self
    attr_accessor :config
  end

  AVAILABLE_METADATA_FIELDS = %w(title short_description full_description video)
  IMAGES_TYPES = %w(featureGraphic icon promoGraphic tvBanner)
  SCREENSHOT_TYPES = %w(phoneScreenshots sevenInchScreenshots tenInchScreenshots tvScreenshots wearScreenshots)

  IMAGES_FOLDER_NAME = "images"
  IMAGE_FILE_EXTENSIONS = "{png,jpg,jpeg}"

  CHANGELOGS_FOLDER_NAME = "changelogs"

  Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
  UI = FastlaneCore::UI
  ROOT = Pathname.new(File.expand_path('../..', __FILE__))
  DESCRIPTION = "Command line tool for updating Android apps and their metadata on the Google Play Store".freeze
end

Version data entries

640 entries across 640 versions & 1 rubygems

Version Path
fastlane-2.107.0 supply/lib/supply.rb
fastlane-2.106.2 supply/lib/supply.rb
fastlane-2.106.1 supply/lib/supply.rb
fastlane-2.106.0 supply/lib/supply.rb
fastlane-2.105.2 supply/lib/supply.rb
fastlane-2.105.1 supply/lib/supply.rb
fastlane-2.104.0 supply/lib/supply.rb
fastlane-2.103.1 supply/lib/supply.rb
fastlane-2.103.0 supply/lib/supply.rb
fastlane-2.102.0 supply/lib/supply.rb
fastlane-2.101.1 supply/lib/supply.rb
fastlane-2.101.0 supply/lib/supply.rb
fastlane-2.100.1 supply/lib/supply.rb
fastlane-2.100.0 supply/lib/supply.rb
fastlane-2.99.1 supply/lib/supply.rb
fastlane-2.99.0 supply/lib/supply.rb
fastlane-2.98.0 supply/lib/supply.rb
fastlane-2.97.0 supply/lib/supply.rb
fastlane-2.96.1 supply/lib/supply.rb
fastlane-2.96.0 supply/lib/supply.rb