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

Commit f3a26314 authored by Jeff DeCew's avatar Jeff DeCew Committed by Android (Google) Code Review
Browse files

Merge "Fix BuildInfo.isDebuggable to support FeatureFlags with sysui-studio."

parents 63ac00f2 f4ad622c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -100,7 +100,8 @@ public class NotifPipelineInitializer implements Dumpable {
        mNotifCollection.attach(mGroupCoalescer);
        mGroupCoalescer.attach(notificationService);

        Log.d(TAG, "Notif pipeline initialized");
        Log.d(TAG, "Notif pipeline initialized."
                + " rendering=" + mFeatureFlags.isNewNotifPipelineRenderingEnabled());
    }

    @Override
+3 −1
Original line number Diff line number Diff line
@@ -32,6 +32,8 @@ public class BuildInfo {

    /** @see Build#IS_DEBUGGABLE */
    public boolean isDebuggable() {
        return Build.IS_DEBUGGABLE;
        // Build.IS_DEBUGGABLE is inlined by the gradle build, causing this to incorrectly
        // return false when using sysui-studio.
        return Build.isDebuggable();
    }
}