if service.getAppName() ~= "系统界面" and service.getAppName() ~= "解说Max" then
require "import"
import "android.content.Intent"
import "android.net.Uri"
ctx = ctx or (service and service) or getContext()
local intent = Intent()
intent.setAction("android.settings.APPLICATION_DETAILS_SETTINGS")
intent.setData(Uri.parse("package:" .. service.getPackageName(node)))
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
ctx.startActivity(intent)
service.click({{"强行停止>100$100", "确定>100$100", "%返回"}})
end
return true