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

Commit 32038eab authored by Diego Vela's avatar Diego Vela Committed by Android (Google) Code Review
Browse files

Merge "Update SidecarProvider to pass Application Context." into sc-v2-dev

parents ae77bd58 ca79b467
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ public class SidecarProvider {
     * an OEM by overriding this method.
     */
    public static SidecarInterface getSidecarImpl(Context context) {
        return new SampleSidecarImpl(context);
        return new SampleSidecarImpl(context.getApplicationContext());
    }

    /**