mirror of
https://github.com/revanced/smali.git
synced 2025-04-30 14:44:26 +02:00
Added greylist-max-r
This commit is contained in:
parent
cbd41d36cc
commit
ec5ae22888
@ -39,3 +39,7 @@
|
||||
return-void
|
||||
.end method
|
||||
|
||||
.method private greylist-max-r greylistMaxR()V
|
||||
.registers 1
|
||||
return-void
|
||||
.end method
|
||||
|
@ -33,6 +33,11 @@
|
||||
return-void
|
||||
.end method
|
||||
|
||||
.method private greylist-max-r greylistMaxR()V
|
||||
.registers 1
|
||||
return-void
|
||||
.end method
|
||||
|
||||
.method private greylist-max-q core-platform-api test-api testAndCorePlatformApiMethod()V
|
||||
.registers 1
|
||||
return-void
|
||||
|
@ -46,6 +46,7 @@ public enum HiddenApiRestriction {
|
||||
GREYLIST_MAX_O(3, "greylist-max-o", false),
|
||||
GREYLIST_MAX_P(4, "greylist-max-p", false),
|
||||
GREYLIST_MAX_Q(5, "greylist-max-q", false),
|
||||
GREYLIST_MAX_R(6, "greylist-max-r", false),
|
||||
CORE_PLATFORM_API(8, "core-platform-api", true),
|
||||
TEST_API(16, "test-api", true);
|
||||
|
||||
@ -55,7 +56,8 @@ public enum HiddenApiRestriction {
|
||||
BLACKLIST,
|
||||
GREYLIST_MAX_O,
|
||||
GREYLIST_MAX_P,
|
||||
GREYLIST_MAX_Q
|
||||
GREYLIST_MAX_Q,
|
||||
GREYLIST_MAX_R
|
||||
};
|
||||
|
||||
private static final HiddenApiRestriction[] domainSpecificApiFlags = new HiddenApiRestriction[] {
|
||||
|
@ -479,7 +479,7 @@ Type = {PrimitiveType} | {ClassDescriptor} | {ArrayPrefix} ({ClassDescriptor} |
|
||||
return newToken(ACCESS_SPEC);
|
||||
}
|
||||
|
||||
"whitelist" | "greylist" | "blacklist" | "greylist-max-o" | "greylist-max-p" | "greylist-max-q" |
|
||||
"whitelist" | "greylist" | "blacklist" | "greylist-max-o" | "greylist-max-p" | "greylist-max-q" | "greylist-max-r" |
|
||||
"core-platform-api" | "test-api" {
|
||||
return newToken(HIDDENAPI_RESTRICTION);
|
||||
}
|
||||
|
@ -40,6 +40,7 @@ blacklist
|
||||
greylist-max-o
|
||||
greylist-max-p
|
||||
greylist-max-q
|
||||
greylist-max-r
|
||||
core-platform-api
|
||||
test-api
|
||||
|
||||
|
@ -40,6 +40,7 @@ HIDDENAPI_RESTRICTION("blacklist")
|
||||
HIDDENAPI_RESTRICTION("greylist-max-o")
|
||||
HIDDENAPI_RESTRICTION("greylist-max-p")
|
||||
HIDDENAPI_RESTRICTION("greylist-max-q")
|
||||
HIDDENAPI_RESTRICTION("greylist-max-r")
|
||||
HIDDENAPI_RESTRICTION("core-platform-api")
|
||||
HIDDENAPI_RESTRICTION("test-api")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user