class Applinks::Builder::AndroidBlock

Attributes

package[R]

Public Class Methods

new(hsh, versioned) click to toggle source
Calls superclass method Applinks::Builder::AppBlock::new
# File lib/applinks/builder.rb, line 110
def initialize hsh, versioned
  super
  @package = hsh[:package] if hsh.has_key?(:package)
end

Public Instance Methods

valid?() click to toggle source
# File lib/applinks/builder.rb, line 115
def valid?
  !@package.nil?
end