Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e5fedb95 authored by Andreas Gampe's avatar Andreas Gampe
Browse files

Installer: Support delete_odex command

Add support for deleting odex files.

Bug: 31347757
Change-Id: I29bca8751bcee8d6981c682fbbc816c73b78ac68
parent fceb3598
Loading
Loading
Loading
Loading
+5 −0
Original line number Original line Diff line number Diff line
@@ -230,6 +230,11 @@ public final class Installer extends SystemService {
        mInstaller.execute("move_ab", apkPath, instructionSet, outputPath);
        mInstaller.execute("move_ab", apkPath, instructionSet, outputPath);
    }
    }


    public void deleteOdex(String apkPath, String instructionSet, String outputPath)
            throws InstallerException {
        mInstaller.execute("delete_odex", apkPath, instructionSet, outputPath);
    }

    private static void assertValidInstructionSet(String instructionSet)
    private static void assertValidInstructionSet(String instructionSet)
            throws InstallerException {
            throws InstallerException {
        for (String abi : Build.SUPPORTED_ABIS) {
        for (String abi : Build.SUPPORTED_ABIS) {