Darush

Results 3 issues of Darush

How to go back after selecting a directory?

enhancement

I'm getting the following crash on Android 14 (API 34): `java.lang.SecurityException: com.example.test_app: One of RECEIVER_EXPORTED or RECEIVER_NOT_EXPORTED should be specified when a receiver isn't being registered exclusively for system broadcasts`...

I'm using the following method to set the typeface color. However, **withPrimaryTextTypefaceColor()** and **withSecondaryTextTypefaceColor()** don't seem to be working. ``` val styles = NativeTemplateStyle.Builder() .withMainBackgroundColor(ColorDrawable(resources.getColor(R.color.colorWhite))) .withPrimaryTextSize(16f) .withPrimaryTextTypefaceColor(resources.getColor(R.color.colorRed)) .withPrimaryTextTypeface(ResourcesCompat.getFont(requireContext(), R.font.lato_regular)) .withSecondaryTextSize(14f)...