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

Commit c624a3fb authored by Justin Klaassen's avatar Justin Klaassen
Browse files

Fix build warnings

Bug: 26292420
Change-Id: Ib5d8b09fa9d70f408c3097654bae5b6906fac048
parent 8737d037
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@

<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.android.deskclock"
    android:versionCode="440"
    android:versionName="4.4.0">
@@ -68,7 +69,7 @@

        <activity-alias
            android:name=".DockClock"
            android:enabled="@bool/config_dockAppEnabled"
            android:enabled="false"
            android:icon="@mipmap/ic_launcher_alarmclock"
            android:label="@string/app_label"
            android:launchMode="singleTask"
@@ -339,12 +340,14 @@
        <service
            android:name=".timer.TimerService"
            android:description="@string/timer_service_desc"
            android:exported="false" />
            android:exported="false"
            tools:ignore="ManifestResource" />

        <service
            android:name=".stopwatch.StopwatchService"
            android:description="@string/stopwatch_service_desc"
            android:exported="false" />
            android:exported="false"
            tools:ignore="ManifestResource" />

    </application>
</manifest>
+0 −31
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  Copyright (C) 2015 The Android Open Source 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.
  -->

<inset xmlns:android="http://schemas.android.com/apk/res/android"
    android:insetLeft="@dimen/fastscroll_preview_padding">
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
        <corners
            android:topLeftRadius="44dp"
            android:topRightRadius="44dp"
            android:bottomRightRadius="44dp" />
        <padding
            android:paddingLeft="22dp"
            android:paddingRight="22dp" />
        <solid android:color="@color/color_accent" />
    </shape>
</inset>
+0 −31
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  Copyright (C) 2015 The Android Open Source 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.
  -->

<inset xmlns:android="http://schemas.android.com/apk/res/android"
    android:insetRight="@dimen/fastscroll_preview_padding">
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
        <corners
            android:topLeftRadius="44dp"
            android:topRightRadius="44dp"
            android:bottomLeftRadius="44dp" />
        <padding
            android:paddingLeft="22dp"
            android:paddingRight="22dp" />
        <solid android:color="@color/color_accent" />
    </shape>
</inset>
+2 −2
Original line number Diff line number Diff line
@@ -19,13 +19,13 @@
    <item android:state_pressed="true">
        <shape android:shape="rectangle">
            <solid android:color="#1fffffff"/>
            <size android:width="@dimen/fastscroll_thumb_width" />
            <size android:width="@dimen/fastscroll_track_width" />
        </shape>
    </item>
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/transparent"/>
            <size android:width="@dimen/fastscroll_thumb_width" />
            <size android:width="@dimen/fastscroll_track_width" />
        </shape>
    </item>
</selector>
+1 −2
Original line number Diff line number Diff line
@@ -62,7 +62,6 @@
            android:id="@+id/city_name_layout"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:layout_marginLeft="@dimen/label_margin_small"
            android:layout_marginStart="@dimen/label_margin_small"
            android:gravity="center" >

Loading