Search code examples
androidsettings

Setting manageSpaceActivity makes Clear Data button disabled on API 28 (Pie)


Using this solution, makes Clear Data button disabled on android Pie (API-28) where it works on android Marshmallow (API-23) and the button changes to Manage Space.

Marshmallow:

enter image description here

Pie:

enter image description here

How can I have marshmallow one?


Solution

  • Try to add an absolute path to your class, instead:

    <application android:label="MyApp" android:icon="@drawable/icon" 
                     android:manageSpaceActivity=".ActivityOfMyChoice">
    

    use:

    <application android:label="MyApp" android:icon="@drawable/icon" 
                     android:manageSpaceActivity="com.example.ActivityOfMyChoice">