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

Commit fccc1438 authored by Michael Bestas's avatar Michael Bestas
Browse files

PackageInstaller: Fix generating id in android namespace

Fixes:
res/layout-watch/wear_review_permission_title_pref.xml:23: warn:
generated id 'android:id/icon' for external package 'android'.
res/layout-watch/wear_review_permission_action_pref.xml:17: warn:
generated id 'android:id/title' for external package 'android'.

Change-Id: I6a909f73fb9273026e4013e8099ff346e58a81f3
parent 65a37f22
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@

<TextView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+android:id/title"
        android:id="@+id/title"
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
+2 −2
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
        android:layout_height="wrap_content"
        android:paddingBottom="@dimen/wear_permission_review_pref_padding"
        android:orientation="vertical">
        <ImageView android:id="@+android:id/icon"
        <ImageView android:id="@+id/icon"
                   android:adjustViewBounds="true"
                   android:maxHeight="@dimen/wear_permission_review_icon_size"
                   android:maxWidth="@dimen/wear_permission_review_icon_size"
@@ -28,7 +28,7 @@
                   android:layout_width="wrap_content"
                   android:layout_height="wrap_content"
                   android:scaleType="centerInside" />
        <TextView android:id="@+android:id/title"
        <TextView android:id="@+id/title"
                  android:gravity="center"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"