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

Commit 6c058be7 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 13410570 from acff6f40 to 25Q3-release

Change-Id: Ica87b4e49e23b4af1fbec14918063a9ff223fbee
parents 5f2dae40 acff6f40
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -29,6 +29,7 @@ android {
dependencies {
    implementation "androidx.core:core:1.9.0"
    implementation project(":frameworks:libs:systemui:viewcapturelib:view_capture_proto")
    api project(":frameworks:base:core:FrameworkFlags")
    androidTestImplementation project(':SharedTestLib')
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation "androidx.test:rules:1.4.0"
+2.34 MiB
Loading image diff...
+321 KiB
Loading image diff...
+11 −1
Original line number Diff line number Diff line
@@ -50,11 +50,21 @@
            android:text="@string/button_rain"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintBottom_toTopOf="@id/fog"
            app:layout_constraintBottom_toTopOf="@id/clouds"
            app:layout_constraintEnd_toEndOf="parent"
            android:layout_marginBottom="10dp"
            android:layout_marginEnd="20dp" />

        <Button
            android:id="@+id/clouds"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginEnd="20dp"
            android:layout_marginBottom="10dp"
            android:text="@string/button_clouds"
            app:layout_constraintBottom_toTopOf="@id/fog"
            app:layout_constraintEnd_toEndOf="parent" />

        <Button
            android:id="@+id/fog"
            android:text="@string/button_fog"
+1 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@
    <string name="set_wallpaper" translatable="false">Set Wallpaper</string>
    <string name="button_rain" translatable="false">Rain</string>
    <string name="button_fog" translatable="false">Fog</string>
    <string name="button_clouds" translatable="false">Clouds</string>
    <string name="button_snow" translatable="false">Snow</string>
    <string name="button_sunny" translatable="false">Sun</string>
    <string name="button_clear" translatable="false">Clear Weather</string>
Loading