Skip to content

Commit

Permalink
Merge pull request #7994 from thunderbird/change-xml-formatting
Browse files Browse the repository at this point in the history
Change XML formatting
  • Loading branch information
wmontwe committed Jul 1, 2024
2 parents 03f57a5 + 1199ca6 commit f8bc9b4
Show file tree
Hide file tree
Showing 260 changed files with 3,752 additions and 2,040 deletions.
20 changes: 20 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 18 additions & 9 deletions app-k9mail/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:installLocation="auto">
android:installLocation="auto"
>

<application
android:name="app.k9mail.K9App"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
android:label="@string/app_name"
>

<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
android:exported="false"
tools:node="merge">
tools:node="merge"
>

<!-- We're using on-demand initialization for WorkManager -->
<meta-data
android:name="androidx.work.WorkManagerInitializer"
android:value="androidx.startup"
tools:node="remove" />
tools:node="remove"
/>

</provider>

Expand All @@ -29,13 +34,15 @@
android:icon="@drawable/message_list_widget_preview"
android:label="@string/message_list_widget_label"
android:enabled="@bool/home_screen_widgets_enabled"
android:exported="false">
android:exported="false"
>
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/message_list_widget_info" />
android:resource="@xml/message_list_widget_info"
/>
</receiver>

<!-- This component is disabled by default (if possible). It will be enabled programmatically if necessary. -->
Expand All @@ -44,13 +51,15 @@
android:name="com.fsck.k9.provider.UnreadWidgetProvider"
android:label="@string/unread_widget_label"
android:enabled="@bool/home_screen_widgets_enabled"
android:exported="false">
android:exported="false"
>
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/unread_widget_info" />
android:resource="@xml/unread_widget_info"
/>
</receiver>

</application>
Expand Down
Loading

0 comments on commit f8bc9b4

Please sign in to comment.