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

Commit 2024b338 authored by Jordan Demeulenaere's avatar Jordan Demeulenaere
Browse files

Introduce the SystemUIComposeGallery app (1/2)

This CL introduces the SystemUIComposeGallery application which will be
used to showcase our different Compose UIs and themes. This app will
also be used for rapid UI development so that engineers writing a
Compose UI won't have to build SystemUI at all when working purely on
their UI.

See b/231131244#comment2 for an example on how this app will look like
after this CL.

Bug: 231131244
Test: Manual
Change-Id: I9daa750e4dc5ffba2f668eb0a149a5b6444f2ccf
parent 0dbe2107
Loading
Loading
Loading
Loading
+11 −0
Original line number Original line Diff line number Diff line
@@ -21,6 +21,17 @@
          "exclude-annotation": "androidx.test.filters.FlakyTest"
          "exclude-annotation": "androidx.test.filters.FlakyTest"
        }
        }
      ]
      ]
    },
    {
      "name": "SystemUIComposeGalleryTests",
      "options": [
        {
          "exclude-annotation": "org.junit.Ignore"
        },
        {
          "exclude-annotation": "androidx.test.filters.FlakyTest"
        }
      ]
    }
    }
  ]
  ]
}
}
 No newline at end of file
+11 −0
Original line number Original line Diff line number Diff line
@@ -10,6 +10,17 @@
          "exclude-annotation": "androidx.test.filters.FlakyTest"
          "exclude-annotation": "androidx.test.filters.FlakyTest"
        }
        }
      ]
      ]
    },
    {
      "name": "SystemUIComposeGalleryTests",
      "options": [
        {
          "exclude-annotation": "org.junit.Ignore"
        },
        {
          "exclude-annotation": "androidx.test.filters.FlakyTest"
        }
      ]
    }
    }
  ]
  ]
}
}
 No newline at end of file
+70 −0
Original line number Original line Diff line number Diff line
// Copyright (C) 2022 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.

package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "frameworks_base_packages_SystemUI_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-Apache-2.0
    default_applicable_licenses: ["frameworks_base_packages_SystemUI_license"],
}

android_library {
    name: "SystemUIComposeGalleryLib",
    manifest: "AndroidManifest.xml",

    srcs: [
        "src/**/*.kt",
    ],

    resource_dirs: [
        "res",
    ],

    static_libs: [
        "SystemUIComposeCore",
        "SystemUIComposeFeatures",

        "androidx.compose.runtime_runtime",
        "androidx.compose.material3_material3",
        "androidx.compose.material_material-icons-extended",
        "androidx.activity_activity-compose",
        "androidx.navigation_navigation-compose",

        "androidx.appcompat_appcompat",
    ],

    kotlincflags: ["-Xjvm-default=all"],
}

android_app {
    name: "SystemUIComposeGallery",
    defaults: ["platform_app_defaults"],

    static_libs: [
        "SystemUIComposeGalleryLib",
    ],

    platform_apis: true,
    system_ext_specific: true,
    certificate: "platform",
    privileged: true,

    optimize: {
        proguard_flags_files: ["proguard-rules.pro"],
    },

    dxflags: ["--multi-dex"],
}
+37 −0
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2022 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.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.systemui.compose.gallery">
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.SystemUIGallery">
        <activity
            android:name=".GalleryActivity"
            android:exported="true"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>
+15 −0
Original line number Original line Diff line number Diff line
{
  "presubmit": [
    {
      "name": "SystemUIComposeGalleryTests",
      "options": [
        {
          "exclude-annotation": "org.junit.Ignore"
        },
        {
          "exclude-annotation": "androidx.test.filters.FlakyTest"
        }
      ]
    }
  ]
}
 No newline at end of file
Loading