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

Commit fe9a7ec0 authored by Nishith  Khanna's avatar Nishith Khanna
Browse files

Remove lineage clock

parent f0c86100
Loading
Loading
Loading
Loading
−71.1 KiB
Loading image diff...
+0 −26
Original line number Diff line number Diff line
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="220dp"
    android:height="92.63152dp"
    android:viewportWidth="220"
    android:viewportHeight="92.63152">
  <path
      android:pathData="M110.007,45.988m-39.256,0a39.256,39.256 0,1 1,78.513 0a39.256,39.256 0,1 1,-78.513 0"
      android:strokeAlpha="1"
      android:strokeWidth="6"
      android:strokeColor="#FFFFFF"/>
  <path
      android:pathData="M22.771,67.798m-17.447,0a17.447,17.447 0,1 1,34.895 0a17.447,17.447 0,1 1,-34.895 0"
      android:strokeAlpha="1"
      android:strokeWidth="6"
      android:strokeColor="#FFFFFF"/>
  <path
      android:pathData="M197.244,67.798m-17.447,0a17.447,17.447 0,1 1,34.895 0a17.447,17.447 0,1 1,-34.895 0"
      android:strokeAlpha="1"
      android:strokeWidth="6"
      android:strokeColor="#FFFFFF"/>
  <path
      android:pathData="m36.947,59.619c12.704,-5.109 22.627,-8.178 35.985,-10.577M183.068,59.619c-12.704,-5.109 -22.627,-8.178 -35.985,-10.577"
      android:strokeAlpha="1"
      android:strokeWidth="6"
      android:strokeColor="#FFFFFF"/>
</vector>
+0 −38
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  Copyright (C) 2020 The LineageOS Project

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  -->
<com.android.keyguard.clock.ClockLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_alignParentTop="true"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="10dp">
    <TextClock
        android:id="@+id/clock"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:elegantTextHeight="false"
        android:letterSpacing="0.1"
        android:textSize="26dp"
        android:textStyle="bold" />
    <ImageView
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/lineage_logo" />
</com.android.keyguard.clock.ClockLayout>
+0 −3
Original line number Diff line number Diff line
@@ -128,7 +128,4 @@

    <!-- Notify use that they are in Lock-to-app (for devices without navbar)-->
    <string name="screen_pinning_toast_no_navbar">To unpin this screen, touch &amp; hold Back button</string>

    <!-- Lineage clock -->
    <string name="clock_title_lineage" translatable="false">LineageOS</string>
</resources>
+0 −1
Original line number Diff line number Diff line
@@ -150,7 +150,6 @@ public final class ClockManager {
        addBuiltinClock(() -> new DefaultClockController(res, layoutInflater, colorExtractor));
        addBuiltinClock(() -> new BubbleClockController(res, layoutInflater, colorExtractor));
        addBuiltinClock(() -> new AnalogClockController(res, layoutInflater, colorExtractor));
        addBuiltinClock(() -> new LineageClockController(res, layoutInflater, colorExtractor));

        // Store the size of the display for generation of clock preview.
        DisplayMetrics dm = res.getDisplayMetrics();
Loading