9239a1acd3
Limit apps from calling schedule() and enqueue() to 500 times in a 1 minute window. Bug: 135764360 Bug: 144363383 Test: atest CtsJobSchedulerTestCases Change-Id: I141e66b612c296a4a4a9cd7c382cea08d5f61b04
17 lines
387 B
Plaintext
17 lines
387 B
Plaintext
// Job Scheduler Service jar, which will eventually be put in the jobscheduler mainline apex.
|
|
// service-jobscheduler needs to be added to PRODUCT_SYSTEM_SERVER_JARS.
|
|
java_library {
|
|
name: "service-jobscheduler",
|
|
installable: true,
|
|
|
|
srcs: [
|
|
"java/**/*.java",
|
|
],
|
|
|
|
libs: [
|
|
"app-compat-annotations",
|
|
"framework",
|
|
"services.core",
|
|
],
|
|
}
|