Class: KillBackgroundAppAction

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

Instance Method Summary collapse

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ KillBackgroundAppAction

Returns a new instance of KillBackgroundAppAction.



1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
# File 'lib/ruby-macrodroid.rb', line 1436

def initialize(h={})

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

  super(options.merge h)

end