-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlint.xml
More file actions
36 lines (33 loc) · 1.81 KB
/
lint.xml
File metadata and controls
36 lines (33 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<!-- Media3 control theming relies on intentional overrides of Exo private resources. -->
<issue id="PrivateResource">
<ignore path="app/src/main/res/values/dimens.xml" />
<ignore path="app/src/main/res/values/exo_overrides.xml" />
<ignore regexp="app/src/main/res/layout/exo_.*\.xml" />
</issue>
<!-- Media3 loads these override resources by convention at runtime; static lint cannot trace them. -->
<issue id="UnusedResources">
<ignore path="app/src/main/res/values/dimens.xml" />
<ignore path="app/src/main/res/values/exo_overrides.xml" />
<ignore path="app/src/main/res/values/strings_exo_controls.xml" />
<ignore regexp="app/src/main/res/layout/exo_.*\.xml" />
<ignore path="app/src/main/res/drawable/exo_controls_button_background.xml" />
<ignore path="app/src/main/res/drawable/ic_audio_track.xml" />
<ignore path="app/src/main/res/drawable/ic_back.xml" />
<ignore path="app/src/main/res/drawable/ic_subtitle_download.xml" />
<ignore path="app/src/main/res/drawable/ic_subtitle_timing.xml" />
<ignore path="app/src/main/res/drawable/ic_volume_boost.xml" />
</issue>
<!-- Keep branded launcher artwork unchanged. -->
<issue id="IconLauncherShape">
<ignore path="app/src/main/res/mipmap-xxxhdpi/ic_launcher_playstore.png" />
</issue>
<!-- Dependency/new-version checks create churn and are reviewed separately from app lint. -->
<issue id="UnsafeOptInUsageError">
<option name="opt-in" value="androidx.media3.common.util.UnstableApi" />
</issue>
<issue id="AndroidGradlePluginVersion" severity="ignore" />
<issue id="GradleDependency" severity="ignore" />
<issue id="NewerVersionAvailable" severity="ignore" />
</lint>