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

Verified Commit 11e88f94 authored by Saalim Quadri's avatar Saalim Quadri
Browse files

BL3: Rename package to launcher3

parent 85b9f4db
Loading
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
 * Copyright (C) 2022 Google Inc.
 *
 * 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 package= "foundation.e.bliss">
    <application/>
</manifest>
+5 −4
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">
    xmlns:tools="http://schemas.android.com/tools"
    package="com.android.launcher3">

    <uses-permission
        android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
@@ -10,7 +11,7 @@
    <application android:icon="@mipmap/ic_launcher">

        <activity
            android:name="foundation.e.bliss.widgets.WidgetsActivity"
            android:name="com.android.launcher3.widgets.WidgetsActivity"
            android:autoRemoveFromRecents="true"
            android:clearTaskOnLaunch="true"
            android:excludeFromRecents="true"
@@ -20,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">
@@ -34,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">
+4 −4
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<foundation.e.bliss.folder.GridFolder xmlns:android="http://schemas.android.com/apk/res/android"
<com.android.launcher3.folder.GridFolder xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:launcher="http://schemas.android.com/apk/res-auto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
@@ -46,7 +46,7 @@
            android:textColorHint="@color/workspace_text_color_light" />
    </LinearLayout>

    <foundation.e.bliss.folder.GridFolderPage
    <com.android.launcher3.folder.GridFolderPage
        android:id="@+id/grid_folder_page"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
@@ -76,5 +76,5 @@
                android:layout_gravity="center_vertical"
                android:layout_weight="1" />
        </LinearLayout>
    </foundation.e.bliss.folder.GridFolderPage>
</foundation.e.bliss.folder.GridFolder>
 No newline at end of file
    </com.android.launcher3.folder.GridFolderPage>
</com.android.launcher3.folder.GridFolder>
 No newline at end of file
+2 −2
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<foundation.e.bliss.blur.BlurLayout xmlns:android="http://schemas.android.com/apk/res/android"
<com.android.launcher3.blur.BlurLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
@@ -46,4 +46,4 @@
            android:layout_height="wrap_content"
            android:layout_marginTop="4dp" />
    </LinearLayout>
</foundation.e.bliss.blur.BlurLayout>
 No newline at end of file
</com.android.launcher3.blur.BlurLayout>
 No newline at end of file
+4 −4
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<foundation.e.bliss.blur.BlurLayout xmlns:android="http://schemas.android.com/apk/res/android"
<com.android.launcher3.blur.BlurLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginHorizontal="3dp"
    app:blurCornerRadius="100dp">

    <foundation.e.bliss.suggestions.BlissInput
    <com.android.launcher3.suggestions.BlissInput
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
@@ -49,5 +49,5 @@
                android:src="@drawable/ic_cancel_24"
                android:visibility="gone" />
        </RelativeLayout>
    </foundation.e.bliss.suggestions.BlissInput>
</foundation.e.bliss.blur.BlurLayout>
 No newline at end of file
    </com.android.launcher3.suggestions.BlissInput>
</com.android.launcher3.blur.BlurLayout>
 No newline at end of file
Loading