1

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?

Community
  • 1
  • 1
Alireza Akbari
  • 2,153
  • 2
  • 28
  • 53

1 Answers1

5

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">
buxik
  • 2,583
  • 24
  • 31