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

Commit 73a2b25f authored by Marco Nelissen's avatar Marco Nelissen
Browse files

Rename MediaUpdate to MediaComponents

Bug: 67908547
Test: build, boot
Change-Id: Idb873b1e0eddeb8d56f818ba3967d05727060cd4
parent 87b46795
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@

namespace android {

static const char *kUpdateApkPath = "/system/app/MediaUpdate/MediaUpdate.apk";
static const char *kSystemApkPath = "/system/app/MediaComponents/MediaComponents.apk";

// static
sp<IMediaExtractor> MediaExtractorFactory::Create(
@@ -297,7 +297,7 @@ void MediaExtractorFactory::UpdateExtractors(const char *newUpdateApkPath) {

    std::shared_ptr<List<sp<ExtractorPlugin>>> newList(new List<sp<ExtractorPlugin>>());

    RegisterExtractors(kUpdateApkPath, *newList);
    RegisterExtractors(kSystemApkPath, *newList);

    if (newUpdateApkPath != nullptr) {
        RegisterExtractors(newUpdateApkPath, *newList);
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_PACKAGE_NAME := MediaUpdate
LOCAL_PACKAGE_NAME := MediaComponents
LOCAL_MODULE_OWNER := google

# TODO: create a separate key for this package.
Loading