Class: KillBackgroundAppAction

Inherits:
ApplicationAction show all
Defined in:
lib/ruby-macrodroid.rb

Overview

Category: Applications

Instance Attribute Summary

Attributes inherited from MacroObject

#options, #type

Instance Method Summary collapse

Methods inherited from Action

#invoke

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ KillBackgroundAppAction

Returns a new instance of KillBackgroundAppAction.



1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
# File 'lib/ruby-macrodroid.rb', line 1671

def initialize(h={})

  options = {
    application_name_list: [""],
    package_name_list: [""]
  }

  super(options.merge h)

end