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

Commit ea97c362 authored by kaiyiz's avatar kaiyiz
Browse files

Settings: Fix Custom screen color issue.

Set wrong PPService name to intent, cause IPPService start failed.

Set correct PPService name to intent.

CRs-Fixed: 755166

Change-Id: Ie9a4ce4a7fe611cc3ae7a0e21ab9b2cef8376a4d
parent 4af2e216
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -249,7 +249,7 @@ public class CustomScreenColor extends Activity implements SeekBar.OnSeekBarChan
    private void initPPService() {
        mPPServiceConn = new PPServiceConnection();
        Intent i = new Intent(IPPService.class.getName());
        i.setClassName("com.android.display", IPPService.class.getName());
        i.setClassName("com.qualcomm.display", "com.qualcomm.display.PPService");
        boolean ret = bindService(i, mPPServiceConn, Context.BIND_AUTO_CREATE);
    }