mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-12-30 07:48:03 +00:00
Make main app fully independent from the stub
- Skip 0x7f01XXXX - 0x7f05XXXX resource IDs in the main app; they are reserved for stub resources - Support sending additional data from host to guest - Use resource mapping passed from host when they are being sent to the system framework (notifications and shortcuts)
This commit is contained in:
@@ -2,14 +2,12 @@ package a;
|
||||
|
||||
import com.topjohnwu.magisk.App;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
public class e extends App {
|
||||
public e() {
|
||||
super();
|
||||
}
|
||||
|
||||
public e(Map<String, String> map) {
|
||||
super(map);
|
||||
public e(Object o) {
|
||||
super(o);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user