mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
Фикс copy-paste в BuildHook API
This commit is contained in:
parent
5d2def1414
commit
46a470f0af
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ public byte[] classTransform(byte[] clazz, CharSequence classname) {
|
||||||
}
|
}
|
||||||
public byte[] proGuardClassTransform(byte[] clazz, CharSequence classname) {
|
public byte[] proGuardClassTransform(byte[] clazz, CharSequence classname) {
|
||||||
byte[] result = clazz;
|
byte[] result = clazz;
|
||||||
for (Transformer transformer : CLASS_TRANSFORMER) result = transformer.transform(result, classname);
|
for (ProGuardTransformHook transformer : POST_PROGUARD_HOOKS) result = transformer.transform(result, classname);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue