Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sayyedrizwan authored Nov 6, 2019
1 parent bfc7785 commit c6f299a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ A cache and App data cleaner for Android.
<h4> How you can use PlayCache in your Android app </h4>


<h6> Add This permission in your AndroidManifest.xml </h6>

<uses-permission android:name="android.permission.CLEAR_APP_CACHE"
tools:ignore="ProtectedPermissions" />




<h6> To Clean your app cache </h6>

PlayCache.cleanCache(context);
Expand All @@ -33,6 +41,15 @@ A cache and App data cleaner for Android.
PlayCache.cleanCachewithMessage(context, "Cleared cache"); //if message empty if want to get defualt message


<h6> Add This permission in your AndroidManifest.xml </h6>


<uses-permission android:name="android.permission.CLEAR_APP_USER_DATA"
tools:ignore="ProtectedPermissions" />



<h6> To Clean your app data </h6>

PlayCache.clearAppData(context);
Expand Down

0 comments on commit c6f299a

Please sign in to comment.