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

Commit d1c62a4e authored by Songchun Fan's avatar Songchun Fan
Browse files

rename incremental service name

Previously we had to use "incremental_service" because the proxy service
was using "incremental". Now that we have removed the proxy service, we
can just use "incremental".

Test: adb shell dumpsys incremental
Test: atest PackageManagerShellCommandIncrementalTest
BUG: 150406132
Change-Id: I0788cb90bf73b074506f9079253c433429eef782
parent 291718cd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5138,7 +5138,7 @@ public abstract class Context {
     * {@link android.os.incremental.IncrementalManager}.
     * @hide
     */
    public static final String INCREMENTAL_SERVICE = "incremental_service";
    public static final String INCREMENTAL_SERVICE = "incremental";

    /**
     * Use with {@link #getSystemService(String)} to retrieve an
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ public:
    BinderIncrementalService(const sp<IServiceManager>& sm);

    static BinderIncrementalService* start();
    static const char16_t* getServiceName() { return u"incremental_service"; }
    static const char16_t* getServiceName() { return u"incremental"; }
    status_t dump(int fd, const Vector<String16>& args) final;

    void onSystemReady();