Jun 4, 2026
at
8:13 AM

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
Similar Threads
6 months ago
723
6 months ago
330
6 months ago
428
6 months ago
335
5 months ago
286