Forwarded from Flyfish233
假如 Ramdisk 中有个 /system/xxx.img,而实际上在 /system/ 中已经有这个文件了,那么会覆盖还是怎么样
Forwarded from Yuuta 🎀
自己把类拷出来,然后不同方法签名都包含,实现部分 throw 一个 RuntimeException 就行了
Forwarded from Yuuta 🎀
package android.app;
public class XXManager {
@hide
public void xxHiddenMethodInApi27 (String arg0, int arg1) {
throw new RuntimeException ("Stub!");
}
@hide
public void xxHiddenMethodInApi26 (String arg0, int arg1, int arg2) {
throw new RuntimeException ("Stub!");
}
}