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

Commit 7c4dc346 authored by Michael Enoma's avatar Michael Enoma 👽
Browse files

changes to icons and strings

parent 38b0a04e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@ android {

    buildFeatures {
        viewBinding true
        dataBinding true
    }

    buildTypes {
+19 −17
Original line number Diff line number Diff line
@@ -24,9 +24,9 @@

        <activity
            android:name=".SplashscreenActivity"
            android:exported="true"
            android:label="@string/app_name"
            android:theme="@style/SplashTheme"
            android:exported="true">
            android:theme="@style/SplashTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
@@ -38,8 +38,8 @@

        <activity
            android:name=".main.MainActivity"
            android:label="@string/app_name"
            android:exported="false">
            android:exported="false"
            android:label="@string/app_name">

            <intent-filter>
                <action android:name="android.intent.action.SEARCH" />
@@ -59,8 +59,8 @@

        <activity
            android:name=".AppendToNoteActivity"
            android:label="@string/append_to_note"
            android:exported="true">
            android:exported="true"
            android:label="@string/append_to_note">

            <intent-filter>
                <action android:name="android.intent.action.SEND" />
@@ -93,11 +93,11 @@

        <activity
            android:name=".edit.EditNoteActivity"
            android:exported="true"
            android:label="@string/simple_edit"
            android:launchMode="singleTask"
            android:parentActivityName=".main.MainActivity"
            android:windowSoftInputMode="stateHidden"
            android:exported="true">
            android:windowSoftInputMode="stateHidden">
            <intent-filter android:label="@string/action_create">
                <action android:name="android.intent.action.SEND" />
                <category android:name="android.intent.category.DEFAULT" />
@@ -124,14 +124,16 @@
            android:label="@string/simple_about"
            android:parentActivityName=".main.MainActivity" />

        <activity android:name=".widget.singlenote.SingleNoteWidgetConfigurationActivity"
        <activity
            android:name=".widget.singlenote.SingleNoteWidgetConfigurationActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
            </intent-filter>
        </activity>

        <activity android:name=".widget.notelist.NoteListWidgetConfigurationActivity"
        <activity
            android:name=".widget.notelist.NoteListWidgetConfigurationActivity"
            android:exported="true">

            <intent-filter>
@@ -141,8 +143,8 @@

        <receiver
            android:name=".widget.singlenote.SingleNoteWidget"
            android:label="@string/widget_single_note_title"
            android:exported="true">
            android:exported="true"
            android:label="@string/widget_single_note_title">

            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
@@ -155,8 +157,8 @@

        <receiver
            android:name=".widget.notelist.NoteListWidget"
            android:label="@string/widget_note_list_title"
            android:exported="true">
            android:exported="true"
            android:label="@string/widget_note_list_title">

            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
@@ -178,10 +180,10 @@
        <service
            android:name=".quicksettings.NewNoteTileService"
            android:description="@string/action_create"
            android:icon="@drawable/ic_launcher_foreground_full"
            android:exported="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/action_create"
            android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
            android:exported="true">
            android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
            <intent-filter>
                <action android:name="android.service.quicksettings.action.QS_TILE" />
            </intent-filter>
+2 −2
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@color/defaultBrand" />
    <item android:drawable="@android:color/white" />

    <item>
        <bitmap
            android:gravity="center"
            android:src="@drawable/ic_splashscreen" />
            android:src="@mipmap/ic_launcher" />
    </item>

</layer-list>
 No newline at end of file
+2 −4
Original line number Diff line number Diff line
@@ -22,19 +22,17 @@
            android:layout_gravity="center"
            android:layout_marginBottom="32dp"
            android:contentDescription="@null"
            android:tint="@color/fg_secondary"
            app:srcCompat="@drawable/ic_launcher_foreground_full" />
            app:srcCompat="@mipmap/ic_launcher" />

        <TextView
            android:id="@+id/welcome_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_centerVertical="true"
            android:layout_marginBottom="48dp"
            android:gravity="center_horizontal"
            android:textSize="24sp"
            tools:text="Welcome to Nextcloud Notes" />
            tools:text="Notes" />

        <Button
            android:id="@+id/add_button"
+0 −5
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@drawable/ic_launcher_background" />
    <foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
 No newline at end of file
Loading