diff --git a/app/src/main/java/net/kollnig/missioncontrol/details/TrackersListAdapter.java b/app/src/main/java/net/kollnig/missioncontrol/details/TrackersListAdapter.java
index 532c78e4..7d071a61 100644
--- a/app/src/main/java/net/kollnig/missioncontrol/details/TrackersListAdapter.java
+++ b/app/src/main/java/net/kollnig/missioncontrol/details/TrackersListAdapter.java
@@ -365,9 +365,13 @@ private void updateText(TextView tv, Tracker t) {
// Explain blocking, except in Play Store version
if (Util.isPlayStoreInstall())
- holder.mLibraryExplanation.setText(R.string.trackers_static_explanation_playstore);
+ holder.mLibraryExplanation.setText(android.text.Html.fromHtml(
+ mContext.getString(R.string.trackers_static_explanation_playstore),
+ android.text.Html.FROM_HTML_MODE_LEGACY));
else
- holder.mLibraryExplanation.setText(R.string.trackers_static_explanation);
+ holder.mLibraryExplanation.setText(android.text.Html.fromHtml(
+ mContext.getString(R.string.trackers_static_explanation),
+ android.text.Html.FROM_HTML_MODE_LEGACY));
// Exclusion from VPN
holder.mSwitchVPN.setChecked(apply.getBoolean(mAppId, true));
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 6343c14f..4498f22c 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -448,8 +448,8 @@ Sincerely,\n\n]]>
Analysis already in progress
None
Tracker libraries
- TrackerControl detects tracking in the code (\'libraries\') and network traffic of apps.\n\nTracking that is detected in the network traffic can be blocked with TrackerControl.
- TrackerControl detects tracking in the code (\'libraries\') and network traffic of apps.
+ TrackerControl detects tracking in the code (\'libraries\') and network traffic of apps.\n\nTracking that is detected in the network traffic can be blocked with TrackerControl.\n\nNote: Detection of tracker library code does not mean it is actively being used. Some apps may have removed or disabled these libraries, but traces can still be detected. Take these results with a grain of salt.
+ TrackerControl detects tracking in the code (\'libraries\') and network traffic of apps.\n\nNote: Detection of tracker library code does not mean it is actively being used. Some apps may have removed or disabled these libraries, but traces can still be detected. Take these results with a grain of salt.
Analyse tracker libraries
Update analysis
\n\nNote: Analysis is of a previous app version. This might have changed integrated tracking libraries.