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

Commit 7c6f0392 authored by stefan-niedermann's avatar stefan-niedermann
Browse files

Fix #730 API Level 15 cannot use ?android: attributes

parent b9e7ea60
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@ public class ExceptionActivity extends AppCompatActivity {
        super.onCreate(savedInstanceState);
        setSupportActionBar(toolbar);
        throwable = ((Throwable) getIntent().getSerializableExtra(KEY_THROWABLE));
        throwable.printStackTrace();
        toolbar.setTitle(getString(R.string.simple_error));
        this.message.setText(throwable.getMessage());
        this.stacktrace.setText(ExceptionUtil.getDebugInfos(this, throwable));
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
    <color name="widget_fg_default">#000000</color>
    <color name="widget_fg_contrast">#ffffff</color>

    <color name="category_background">?android:colorBackground</color>
    <color name="category_background">@color/bg_normal</color>
    <color name="category_border">@color/primary</color>

    <!-- Dark Theme -->
+2 −1
Original line number Diff line number Diff line
- 🐞 Fix NullPointerException in special sync cases
- 🐞 API Level 15 cannot use ?android: attributes (#730)
 No newline at end of file