May this fix toast messages?

Dimlos

Well-known member
Code:
 <!-- Allows an application to avoid all toast rate limiting restrictions.
         <p>Not for use by third-party applications.
         @hide
    -->
    <permission android:name="android.permission.UNLIMITED_TOASTS"
                android:protectionLevel="signature" />
    <uses-permission android:name="android.permission.UNLIMITED_TOASTS" />
It says it can't be used by third parties, so I assume it can't be used by MacroDroid?
 

Jacob L

Moderator (Lawsonator)
There are a few permissions that aren't meant for 3rd party apps but MacroDroid uses, I hope it will fix things
 

MacroDroidDev

Administrator
Staff member
The permission will not do anything as it will not be granted. There may be some signature level permissions in the current manifest for historical reasons, but in general any permission that is signature level will only be granted to apps signed by the manufacturers key.
 
Top