mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-10-05 21:39:50 +02:00
View crash reports in Settings -> About -> Crash Reports.
This commit is contained in:
@@ -3,4 +3,4 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:id="@+id/recycler_view_acknowledgement_fragment"
|
||||
tools:context="ml.docilealligator.infinityforreddit.Settings.AcknowledgementFragment"/>
|
||||
tools:context="ml.docilealligator.infinityforreddit.Settings.AcknowledgementFragment" />
|
||||
|
6
app/src/main/res/layout/fragment_crash_reports.xml
Normal file
6
app/src/main/res/layout/fragment_crash_reports.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<androidx.recyclerview.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:id="@+id/recycler_view_crash_reports_fragment"
|
||||
tools:context="ml.docilealligator.infinityforreddit.Settings.CrashReportsFragment" />
|
8
app/src/main/res/layout/item_crash_report.xml
Normal file
8
app/src/main/res/layout/item_crash_report.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<TextView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="?attr/primaryTextColor"
|
||||
android:textSize="?attr/font_16"
|
||||
android:fontFamily="?attr/font_family" />
|
@@ -425,6 +425,8 @@
|
||||
<string name="settings_share_title">Share</string>
|
||||
<string name="settings_share_summary">Share this app to other people if you enjoy it</string>
|
||||
<string name="settings_version_title">Infinity For Reddit</string>
|
||||
<string name="settings_crash_reports_title">Crash Reports</string>
|
||||
<string name="settings_crash_reports_summary">See the error logs and send them to me when you report bugs</string>
|
||||
<string name="settings_version_summary">Version %s</string>
|
||||
<string name="settings_category_customization_title">Customization</string>
|
||||
<string name="settings_customize_light_theme_title">Light Theme</string>
|
||||
@@ -828,5 +830,7 @@
|
||||
<string name="load_video_in_redgifs">Try loading the video on Redgifs</string>
|
||||
|
||||
<string name="top_score">%1$s pts</string>
|
||||
<!-- TODO: Remove or change this placeholder text -->
|
||||
<string name="hello_blank_fragment">Hello blank fragment</string>
|
||||
|
||||
</resources>
|
||||
|
@@ -45,6 +45,11 @@
|
||||
app:title="@string/settings_share_title"
|
||||
app:summary="@string/settings_share_summary" />
|
||||
|
||||
<Preference
|
||||
app:title="@string/settings_crash_reports_title"
|
||||
app:summary="@string/settings_crash_reports_summary"
|
||||
app:fragment="ml.docilealligator.infinityforreddit.Settings.CrashReportsFragment" />
|
||||
|
||||
<Preference
|
||||
android:key="version"
|
||||
app:title="@string/settings_version_title"
|
||||
|
Reference in New Issue
Block a user