Android What is persistent?

What are properties android: persistent = "true" ?

<application
    android:fullBackupContent="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:persistent="true"
    android:largeHeap="true"
    android:supportsRtl="true"
    android:theme="@style/AppTheme1">
</application>

      

+3


source to share


1 answer


Read the official roadmap about android: persistent



Whether the application should always run, "true" if needed, and "false" if not. The default is incorrect. "Applications should generally not set this flag; save mode is intended only for certain system applications.

+3


source







All Articles