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

Commit d76928d9 authored by Guillaume Jacquart's avatar Guillaume Jacquart
Browse files

feat:2995: WeeklyReport typography everywhere.

parent ae10bccc
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ This app comes in two flavours, one for /e/OS and second one for other android (
A Debug tools activity is accessible through adb, for debugging and QA

```
adb shell am start -n foundation.e.advancedprivacy/.features.debug.AdvancedPrivacyDebugActivity
adb shell am start -n foundation.e.advancedprivacy/.features.debug.DebugActivity
```

# Development
+1 −1
Original line number Diff line number Diff line
@@ -108,7 +108,7 @@
adb shell am start -n foundation.e.advancedprivacy/.features.debug.AdvancedPrivacyDebugActivity
-->
        <activity
            android:name="foundation.e.advancedprivacy.features.debug.AdvancedPrivacyDebugActivity"
            android:name="foundation.e.advancedprivacy.features.debug.DebugActivity"
            android:exported="true"
            android:label="@string/debug_activity_title"
            />
+4 −4
Original line number Diff line number Diff line
@@ -21,13 +21,13 @@ import android.os.Bundle
import android.view.View
import androidx.fragment.app.Fragment
import foundation.e.advancedprivacy.R
import foundation.e.advancedprivacy.databinding.DebugWeeklyreportFragmentBinding
import foundation.e.advancedprivacy.databinding.DebugWeeklyReportFragmentBinding

class DebugWeeklyreportFragment : Fragment(R.layout.debug_weeklyreport_fragment) {
    private lateinit var binding: DebugWeeklyreportFragmentBinding
class DebugWeeklyReportFragment : Fragment(R.layout.debug_weekly_report_fragment) {
    private lateinit var binding: DebugWeeklyReportFragmentBinding

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        binding = DebugWeeklyreportFragmentBinding.bind(view)
        binding = DebugWeeklyReportFragmentBinding.bind(view)
    }
}
+1 −1
Original line number Diff line number Diff line
@@ -31,6 +31,6 @@
        android:id="@+id/fragment_container_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:name="foundation.e.advancedprivacy.features.debug.DebugWeeklyreportFragment" />
        android:name="foundation.e.advancedprivacy.features.debug.DebugWeeklyReportFragment" />

</LinearLayout>
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/debug_weeklyreport_title"
        android:text="@string/debug_weekly_report_title"
        android:padding="4dp"
        android:textSize="14sp"
        />
Loading