How to disable the Clear Data button in Application info of Manage application

Viewed 24741

I am working on android 2.2, In a Application tab of android manifest provide the option of "Allow clear data" to set true or false. But after setting it to False, my application can't disable the button of Clear data in application info of Manage application. I am facing this problem when application contains database in Data/Data/packge-name/databases/.

I have to protect my application database from user.

4 Answers

Just a trick.

<application
    android:manageSpaceActivity="{packageName}.ManageSpaceActivity"
>

In this scenario Android OS will show a Manage Space button in place of clear data.

Upon clicking it will open ManageSpaceActivity.

But

    <application
        android:manageSpaceActivity=".AnyActivity"
    >

If you do this. It will disable the Clear data button.

Trick is to write the Activity name without the full package name.

Related