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

Commit 149945de authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[conflict] Merge "Rename SystemUIComposeCore to PlatformComposeCore...

Merge "[conflict] Merge "Rename SystemUIComposeCore to PlatformComposeCore (1/2)" into tm-qpr-dev am: 62a83980" into tm-qpr-dev-plus-aosp
parents 360a0c72 813fb84e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ systemui_compose_java_defaults {
            // except for SystemUI-core.
            // Copied from compose/features/Android.bp.
            static_libs: [
                "SystemUIComposeCore",
                "PlatformComposeCore",

                "androidx.compose.runtime_runtime",
                "androidx.compose.material3_material3",
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ package {
}

android_library {
    name: "SystemUIComposeCore",
    name: "PlatformComposeCore",
    manifest: "AndroidManifest.xml",

    srcs: [
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.systemui.compose.core">
    package="com.android.compose.core">


</manifest>
+1 −1
Original line number Diff line number Diff line
{
  "presubmit": [
    {
      "name": "SystemUIComposeCoreTests",
      "name": "PlatformComposeCoreTests",
      "options": [
        {
          "exclude-annotation": "org.junit.Ignore"
+5 −5
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
 *
 */

package com.android.systemui.compose
package com.android.compose

import androidx.compose.foundation.BorderStroke
import androidx.compose.foundation.layout.PaddingValues
@@ -27,10 +27,10 @@ import androidx.compose.material3.ButtonDefaults
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp
import com.android.systemui.compose.theme.LocalAndroidColorScheme
import com.android.compose.theme.LocalAndroidColorScheme

@Composable
fun SysUiButton(
fun PlatformButton(
    onClick: () -> Unit,
    modifier: Modifier = Modifier,
    enabled: Boolean = true,
@@ -48,7 +48,7 @@ fun SysUiButton(
}

@Composable
fun SysUiOutlinedButton(
fun PlatformOutlinedButton(
    onClick: () -> Unit,
    modifier: Modifier = Modifier,
    enabled: Boolean = true,
@@ -67,7 +67,7 @@ fun SysUiOutlinedButton(
}

@Composable
fun SysUiTextButton(
fun PlatformTextButton(
    onClick: () -> Unit,
    modifier: Modifier = Modifier,
    enabled: Boolean = true,
Loading