Sha256: e336772775587a17d89d102c616fcfd3b222ad49ef03a99bcd8e0d1f5e70ba0d

Contents?: true

Size: 420 Bytes

Versions: 3

Compression:

Stored size: 420 Bytes

Contents

module Supply
  class ApkListing
    attr_accessor :recent_changes
    attr_accessor :language
    attr_accessor :apk_version_code

    # Initializes the apk listing with the current listing if available
    def initialize(recent_changes, language, apk_version_code)
      self.recent_changes = recent_changes
      self.language = language
      self.apk_version_code = apk_version_code
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fastlane_hotfix-2.165.1 supply/lib/supply/apk_listing.rb
fastlane_hotfix-2.165.0 supply/lib/supply/apk_listing.rb
fastlane_hotfix-2.187.0 supply/lib/supply/apk_listing.rb