fixme-desc: add some stubs

This commit is contained in:
Nikita Travkin
2022-11-04 21:18:44 +05:00
committed by Mis012
parent 638667efbb
commit d419d6d324
7 changed files with 148 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
package android.os;
public final class Debug
{
public static class MemoryInfo {
}
/**
* Wait until a debugger attaches. As soon as the debugger attaches,
* this returns, so you will need to place a breakpoint after the
* waitForDebugger() call if you want to start tracing immediately.
*/
public static class InstructionCount {
public InstructionCount() {
}
}
}