Home Add A How To how to hide dns in tivimate
TUTORIAL

how to hide dns in tivimate

9 hours ago
14 views
Avatar
42
Posts
34
Likes
Jun 4, 2026 at 8:13 AM
User Image

how to hide dns in tivimate

1. Navigate to res/xml/settings.xml
2. Change this
<preference app:key="settingsplaylists"
app:title="@string/settings_playlists" />
To this
<preference app:enabled="false"
app:key="settingsplaylists"
app:title="@string/settings_playlists" />

Do the same for res/xml/settings_tv_guide as opening tv guide source in settings also shows dns info.

From
<Preference app:key="tvGuideSources" app:title="@string/settings_tv_guide_sources" />

To

<Preference app:key="tvGuideSources" app:selectable="false" app:title="@string/settings_tv_guide_sources" />

You can also do app:selectable="false"
In both And this will show the option but won't be able to open that setting at all. app:enabled="false" will grey it out totally

New Notification