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

Verified Commit 2a87795b authored by Saalim Quadri's avatar Saalim Quadri
Browse files

works better here

parent 67b8aece
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -652,6 +652,7 @@ android_app {
    resource_dirs: ["quickstep/res"],

    additional_manifests: [
        "bliss/AndroidManifest.xml",
        "quickstep/AndroidManifest-launcher.xml",
        "AndroidManifest-common.xml",
    ],
+2 −2
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@

        <!-- Dummy receiver for the migration of weather app -->
        <receiver
            android:name="foundation.e.blisslauncher.features.weather.WeatherAppWidgetProvider"
            android:name="com.android.launcher3.features.weather.WeatherAppWidgetProvider"
            android:exported="false"
            android:label="@string/app_name"
            tools:ignore="Instantiatable">
@@ -35,7 +35,7 @@


        <service
            android:name="foundation.e.blisslauncher.features.notification.NotificationService"
            android:name="com.android.launcher3.features.notification.NotificationService"
            android:label="@string/notification_dots_service_title"
            android:exported="true"
            android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
 *
 */
package foundation.e.blisslauncher.features.notification
package com.android.launcher3.features.notification

import com.android.launcher3.notification.NotificationListener

+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
 *
 */
package foundation.e.blisslauncher.features.weather
package com.android.launcher3.features.weather

import android.appwidget.AppWidgetProvider

+4 −4
Original line number Diff line number Diff line
@@ -26,13 +26,13 @@ object DefaultWidgets {
        ComponentName("foundation.e.advancedprivacy", "foundation.e.advancedprivacy.Widget")
    val oldWeatherWidget =
        ComponentName(
            "com.android.launcher3launcher",
            "com.android.launcher3launcher.features.weather.WeatherAppWidgetProvider"
            "com.android.launcher3",
            "com.android.launcher3.features.weather.WeatherAppWidgetProvider"
        )
    val weatherWidget =
        ComponentName(
            "com.android.launcher3weather",
            "com.android.launcher3weather.widget.WeatherAppWidgetProvider"
            "foundation.e.blissweather",
            "foundation.e.blissweather.widget.WeatherAppWidgetProvider"
        )

    val defaultWidgets = listOf(ecloudWidget, privacyWidget, weatherWidget)
Loading