class Spaceship::Tunes::DeviceType

identifiers of devices that App Store Connect accepts screenshots for

Public Class Methods

exists?(type) click to toggle source
# File spaceship/lib/spaceship/tunes/device_type.rb, line 12
def self.exists?(type)
  types.include?(type)
end
types() click to toggle source
# File spaceship/lib/spaceship/tunes/device_type.rb, line 7
def self.types
  warn("Spaceship::Tunes::DeviceType has been deprecated, use Spaceship::Tunes::DisplayFamily instead. (https://github.com/fastlane/fastlane/pull/14574).")
  return DisplayFamily.all.map(&:name)
end