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, #to_s

Constructor Details

#initialize(h = {}) ⇒ KillBackgroundAppAction

Returns a new instance of KillBackgroundAppAction.



2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
# File 'lib/ruby-macrodroid.rb', line 2399

def initialize(h={})

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

  super(options.merge h)

end