tdf#164785: restore saving/reapplying of CF keys in cells
[LibreOffice.git] / android / source / lint-baseline.xml
blobd78cdfca6bd4445f0d8aa7139ecc0514fc3d371f
1 <?xml version="1.0" encoding="UTF-8"?>
2 <issues format="6" by="lint 8.4.0" type="baseline" client="gradle" dependencies="false" name="AGP (8.4.0)" variant="all" version="8.4.0">
4     <issue
5         id="ScopedStorage"
6         message="WRITE_EXTERNAL_STORAGE is deprecated (and is not granted) when targeting Android 13+. If you need to write to shared storage, use the `MediaStore.createWriteRequest` intent."
7         errorLine1="    &lt;uses-permission android:name=&quot;android.permission.WRITE_EXTERNAL_STORAGE&quot;/>"
8         errorLine2="                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
9         <location
10             file="AndroidManifest.xml"
11             line="9"
12             column="36"/>
13     </issue>
15     <issue
16         id="ScrollViewSize"
17         message="This LinearLayout should use `android:layout_height=&quot;wrap_content&quot;`"
18         errorLine1="                                android:layout_height=&quot;match_parent&quot;"
19         errorLine2="                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
20         <location
21             file="res/layout/toolbar_bottom.xml"
22             line="311"
23             column="33"/>
24     </issue>
26     <issue
27         id="ScrollViewSize"
28         message="This LinearLayout should use `android:layout_height=&quot;wrap_content&quot;`"
29         errorLine1="                                android:layout_height=&quot;match_parent&quot;"
30         errorLine2="                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
31         <location
32             file="res/layout/toolbar_bottom.xml"
33             line="378"
34             column="33"/>
35     </issue>
37     <issue
38         id="CanvasSize"
39         message="Calling `Canvas.getWidth()` is usually wrong; you should be calling `getWidth()` instead"
40         errorLine1="            int horizontalMargin = (int) (canvas.getWidth()*0.1);"
41         errorLine2="                                          ~~~~~~~~~~~~~~~~~">
42         <location
43             file="src/java/org/libreoffice/ui/PageView.java"
44             line="55"
45             column="43"/>
46     </issue>
48     <issue
49         id="CanvasSize"
50         message="Calling `Canvas.getWidth()` is usually wrong; you should be calling `getWidth()` instead"
51         errorLine1="                    new Rect(horizontalMargin,verticalMargin,canvas.getWidth()-horizontalMargin,"
52         errorLine2="                                                             ~~~~~~~~~~~~~~~~~">
53         <location
54             file="src/java/org/libreoffice/ui/PageView.java"
55             line="59"
56             column="62"/>
57     </issue>
59     <issue
60         id="CanvasSize"
61         message="Calling `Canvas.getHeight()` is usually wrong; you should be calling `getHeight()` instead"
62         errorLine1="                        canvas.getHeight()-verticalMargin),"
63         errorLine2="                        ~~~~~~~~~~~~~~~~~~">
64         <location
65             file="src/java/org/libreoffice/ui/PageView.java"
66             line="60"
67             column="25"/>
68     </issue>
70     <issue
71         id="DefaultLocale"
72         message="Implicitly using the default locale is a common source of bugs: Use `String.format(Locale, ...)` instead"
73         errorLine1="        return String.format(&quot;TileIdentifier (%d, %d) z=%f s=(%d, %d)&quot;, x, y, zoom, size.width, size.height);"
74         errorLine2="               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
75         <location
76             file="src/java/org/libreoffice/TileIdentifier.java"
77             line="88"
78             column="16"/>
79     </issue>
81     <issue
82         id="InflateParams"
83         message="Avoid passing `null` as the view root (needed to resolve layout parameters on the inflated layout&apos;s root element)"
84         errorLine1="            final View headerPopupView = inflater.inflate(R.layout.calc_header_popup, null);"
85         errorLine2="                                                                                      ~~~~">
86         <location
87             file="src/java/org/libreoffice/overlay/CalcHeadersController.java"
88             line="118"
89             column="87"/>
90     </issue>
92     <issue
93         id="InflateParams"
94         message="Avoid passing `null` as the view root (needed to resolve layout parameters on the inflated layout&apos;s root element)"
95         errorLine1="            view = layoutInflater.inflate(R.layout.document_part_list_layout, null);"
96         errorLine2="                                                                              ~~~~">
97         <location
98             file="src/java/org/libreoffice/DocumentPartViewListAdapter.java"
99             line="36"
100             column="79"/>
101     </issue>
103     <issue
104         id="SpUsage"
105         message="Should use &quot;`sp`&quot; instead of &quot;`dp`&quot; for text sizes"
106         errorLine1="                    android:textSize=&quot;14dp&quot;"
107         errorLine2="                    ~~~~~~~~~~~~~~~~~~~~~~~">
108         <location
109             file="res/layout/activity_document_browser.xml"
110             line="77"
111             column="21"/>
112     </issue>
114     <issue
115         id="DiscouragedApi"
116         message="Should not restrict activity to fixed orientation. This may not be suitable for different form factors, causing the app to be letterboxed."
117         errorLine1="            android:screenOrientation=&quot;landscape&quot; >"
118         errorLine2="            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
119         <location
120             file="AndroidManifest.xml"
121             line="108"
122             column="13"/>
123     </issue>
125     <issue
126         id="DiscouragedApi"
127         message="Use of `scheduleAtFixedRate` is strongly discouraged because it can lead to unexpected behavior when Android processes become cached (tasks may unexpectedly execute hundreds or thousands of times in quick succession when a process changes from cached to uncached); prefer using `schedule`"
128         errorLine1="        mAnimationTimer.scheduleAtFixedRate(new TimerTask() {"
129         errorLine2="        ^">
130         <location
131             file="src/java/org/mozilla/gecko/gfx/JavaPanZoomController.java"
132             line="526"
133             column="9"/>
134     </issue>
136     <issue
137         id="DiscouragedApi"
138         message="Use of this function is discouraged because resource reflection makes it harder to perform build optimizations and compile-time verification of code. It is much more efficient to retrieve resources by identifier (e.g. `R.foo.bar`) than by name (e.g. `getIdentifier(&quot;bar&quot;, &quot;foo&quot;, null)`)."
139         errorLine1="        int resourceID = resources.getIdentifier(name, &quot;drawable&quot;, packageName);"
140         errorLine2="                                   ~~~~~~~~~~~~~">
141         <location
142             file="src/java/org/mozilla/gecko/gfx/LayerView.java"
143             line="227"
144             column="36"/>
145     </issue>
147     <issue
148         id="SetJavaScriptEnabled"
149         message="Using `setJavaScriptEnabled` can introduce XSS vulnerabilities into your application, review carefully"
150         errorLine1="        mWebView.getSettings().setJavaScriptEnabled(true);"
151         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
152         <location
153             file="src/java/org/libreoffice/PresentationActivity.java"
154             line="39"
155             column="9"/>
156     </issue>
158     <issue
159         id="DrawAllocation"
160         message="Avoid object allocations during draw/layout operations (preallocate and reuse instead)"
161         errorLine1="            mLayerClient.setViewportSize(new FloatSize(right - left, bottom - top), true);"
162         errorLine2="                                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
163         <location
164             file="src/java/org/mozilla/gecko/gfx/LayerView.java"
165             line="293"
166             column="42"/>
167     </issue>
169     <issue
170         id="DrawAllocation"
171         message="Avoid object allocations during draw/layout operations (preallocate and reuse instead)"
172         errorLine1="            canvas.drawBitmap(bmp, new Rect(0, 0, bmp.getWidth(), bmp.getHeight()),"
173         errorLine2="                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
174         <location
175             file="src/java/org/libreoffice/ui/PageView.java"
176             line="58"
177             column="36"/>
178     </issue>
180     <issue
181         id="DrawAllocation"
182         message="Avoid object allocations during draw/layout operations (preallocate and reuse instead)"
183         errorLine1="                    new Rect(horizontalMargin,verticalMargin,canvas.getWidth()-horizontalMargin,"
184         errorLine2="                    ^">
185         <location
186             file="src/java/org/libreoffice/ui/PageView.java"
187             line="59"
188             column="21"/>
189     </issue>
191     <issue
192         id="DrawAllocation"
193         message="Avoid object allocations during draw/layout operations (preallocate and reuse instead)"
194         errorLine1="            canvas.drawText(getContext().getString(R.string.bmp_null), 100, 100, new Paint());"
195         errorLine2="                                                                                 ~~~~~~~~~~~">
196         <location
197             file="src/java/org/libreoffice/ui/PageView.java"
198             line="64"
199             column="82"/>
200     </issue>
202     <issue
203         id="NotifyDataSetChanged"
204         message="It will always be more efficient to use more specific change events if you can. Rely on `notifyDataSetChanged` as a last resort."
205         errorLine1="                ColorPaletteAdapter.this.notifyDataSetChanged();"
206         errorLine2="                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
207         <location
208             file="src/java/org/libreoffice/ColorPaletteAdapter.java"
209             line="118"
210             column="17"/>
211     </issue>
213     <issue
214         id="NotifyDataSetChanged"
215         message="It will always be more efficient to use more specific change events if you can. Rely on `notifyDataSetChanged` as a last resort."
216         errorLine1="                ColorPickerAdapter.this.notifyDataSetChanged();"
217         errorLine2="                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
218         <location
219             file="src/java/org/libreoffice/ColorPickerAdapter.java"
220             line="147"
221             column="17"/>
222     </issue>
224     <issue
225         id="ObsoleteLayoutParam"
226         message="Invalid layout param in a `ScrollView`: `layout_weight`"
227         errorLine1="                                android:layout_weight=&quot;0.25&quot;"
228         errorLine2="                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
229         <location
230             file="res/layout/toolbar_bottom.xml"
231             line="312"
232             column="33"/>
233     </issue>
235     <issue
236         id="ObsoleteLayoutParam"
237         message="Invalid layout param in a `ScrollView`: `layout_weight`"
238         errorLine1="                                android:layout_weight=&quot;0.5&quot;"
239         errorLine2="                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
240         <location
241             file="res/layout/toolbar_bottom.xml"
242             line="379"
243             column="33"/>
244     </issue>
246     <issue
247         id="ObsoleteLayoutParam"
248         message="Invalid layout param in a `LinearLayout`: `layout_below`"
249         errorLine1="            android:layout_below=&quot;@id/fontColorView&quot;"
250         errorLine2="            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
251         <location
252             file="res/layout/toolbar_color_picker.xml"
253             line="63"
254             column="13"/>
255     </issue>
257     <issue
258         id="ObsoleteLayoutParam"
259         message="Invalid layout param in a `LinearLayout`: `layout_alignParentBottom`"
260         errorLine1="            android:layout_alignParentBottom=&quot;true&quot;>"
261         errorLine2="            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
262         <location
263             file="res/layout/toolbar_color_picker.xml"
264             line="64"
265             column="13"/>
266     </issue>
268     <issue
269         id="ObsoleteSdkInt"
270         message="Unnecessary; SDK_INT is always >= 19"
271         errorLine1="@TargetApi(19)"
272         errorLine2="~~~~~~~~~~~~~~">
273         <location
274             file="src/java/org/libreoffice/PDFDocumentAdapter.java"
275             line="20"
276             column="1"/>
277     </issue>
279     <issue
280         id="UseCompoundDrawables"
281         message="This tag and its children can be replaced by one `&lt;TextView/>` and a compound drawable"
282         errorLine1="&lt;LinearLayout"
283         errorLine2=" ~~~~~~~~~~~~">
284         <location
285             file="res/layout/document_part_list_layout.xml"
286             line="2"
287             column="2"/>
288     </issue>
290     <issue
291         id="VectorPath"
292         message="Very long vector path (871 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector."
293         errorLine1="        android:pathData=&quot;M19.43,12.98c0.04,-0.32 0.07,-0.64 0.07,-0.98s-0.03,-0.66 -0.07,-0.98l2.11,-1.65c0.19,-0.15 0.24,-0.42 0.12,-0.64l-2,-3.46c-0.12,-0.22 -0.39,-0.3 -0.61,-0.22l-2.49,1c-0.52,-0.4 -1.08,-0.73 -1.69,-0.98l-0.38,-2.65C14.46,2.18 14.25,2 14,2h-4c-0.25,0 -0.46,0.18 -0.49,0.42l-0.38,2.65c-0.61,0.25 -1.17,0.59 -1.69,0.98l-2.49,-1c-0.23,-0.09 -0.49,0 -0.61,0.22l-2,3.46c-0.13,0.22 -0.07,0.49 0.12,0.64l2.11,1.65c-0.04,0.32 -0.07,0.65 -0.07,0.98s0.03,0.66 0.07,0.98l-2.11,1.65c-0.19,0.15 -0.24,0.42 -0.12,0.64l2,3.46c0.12,0.22 0.39,0.3 0.61,0.22l2.49,-1c0.52,0.4 1.08,0.73 1.69,0.98l0.38,2.65c0.03,0.24 0.24,0.42 0.49,0.42h4c0.25,0 0.46,-0.18 0.49,-0.42l0.38,-2.65c0.61,-0.25 1.17,-0.59 1.69,-0.98l2.49,1c0.23,0.09 0.49,0 0.61,-0.22l2,-3.46c0.12,-0.22 0.07,-0.49 -0.12,-0.64l-2.11,-1.65zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5 3.5,1.57 3.5,3.5 -1.57,3.5 -3.5,3.5z&quot;/>"
294         errorLine2="                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
295         <location
296             file="res/drawable/ic_settings_24dp.xml"
297             line="8"
298             column="27"/>
299     </issue>
301     <issue
302         id="InefficientWeight"
303         message="Use a `layout_height` of `0dp` instead of `wrap_content` for better performance"
304         errorLine1="                    android:layout_height=&quot;wrap_content&quot;"
305         errorLine2="                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
306         <location
307             file="res/layout/activity_document_browser.xml"
308             line="73"
309             column="21"/>
310     </issue>
312     <issue
313         id="InefficientWeight"
314         message="Use a `layout_height` of `0dp` instead of `match_parent` for better performance"
315         errorLine1="                                    android:layout_height=&quot;match_parent&quot;"
316         errorLine2="                                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
317         <location
318             file="res/layout/toolbar_bottom.xml"
319             line="66"
320             column="37"/>
321     </issue>
323     <issue
324         id="NestedWeights"
325         message="Nested weights are bad for performance"
326         errorLine1="                                        android:layout_weight=&quot;0.25&quot;"
327         errorLine2="                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
328         <location
329             file="res/layout/toolbar_bottom.xml"
330             line="74"
331             column="41"/>
332     </issue>
334     <issue
335         id="Overdraw"
336         message="Possible overdraw: Root element paints background `#fff` with a theme that also paints a background (inferred theme is `@style/LibreOfficeTheme`)"
337         errorLine1="    android:background=&quot;#fff&quot;"
338         errorLine2="    ~~~~~~~~~~~~~~~~~~~~~~~~~">
339         <location
340             file="res/layout/activity_main.xml"
341             line="8"
342             column="5"/>
343     </issue>
345     <issue
346         id="Overdraw"
347         message="Possible overdraw: Root element paints background `@color/doorhanger_background_dark` with a theme that also paints a background (inferred theme is `@style/LibreOfficeTheme`)"
348         errorLine1="    android:background=&quot;@color/doorhanger_background_dark&quot;>"
349         errorLine2="    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
350         <location
351             file="res/layout/calc_header_popup.xml"
352             line="5"
353             column="5"/>
354     </issue>
356     <issue
357         id="Overdraw"
358         message="Possible overdraw: Root element paints background `#aaa` with a theme that also paints a background (inferred theme is `@style/LibreOfficeTheme`)"
359         errorLine1="    android:background=&quot;#aaa&quot;"
360         errorLine2="    ~~~~~~~~~~~~~~~~~~~~~~~~~">
361         <location
362             file="res/layout/main.xml"
363             line="12"
364             column="5"/>
365     </issue>
367     <issue
368         id="Overdraw"
369         message="Possible overdraw: Root element paints background `?attr/colorPrimary` with a theme that also paints a background (inferred theme is `@style/LibreOfficeTheme`)"
370         errorLine1="    android:background=&quot;?attr/colorPrimary&quot;"
371         errorLine2="    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
372         <location
373             file="res/layout/toolbar_bottom.xml"
374             line="10"
375             column="5"/>
376     </issue>
378     <issue
379         id="Overdraw"
380         message="Possible overdraw: Root element paints background `?attr/colorPrimary` with a theme that also paints a background (inferred theme is `@style/LibreOfficeTheme`)"
381         errorLine1="    android:background=&quot;?attr/colorPrimary&quot;"
382         errorLine2="    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
383         <location
384             file="res/layout/toolbar_color_picker.xml"
385             line="9"
386             column="5"/>
387     </issue>
389     <issue
390         id="UnusedResources"
391         message="The resource `R.drawable.background` appears to be unused">
392         <location
393             file="res/drawable-mdpi/background.png"/>
394     </issue>
396     <issue
397         id="UnusedResources"
398         message="The resource `R.color.background_light` appears to be unused"
399         errorLine1="    &lt;color name=&quot;background_light&quot;>#FAFAFA&lt;/color> &lt;!--Material Grey 50-->"
400         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~">
401         <location
402             file="res/values/colors.xml"
403             line="12"
404             column="12"/>
405     </issue>
407     <issue
408         id="UnusedResources"
409         message="The resource `R.color.background_normal` appears to be unused"
410         errorLine1="    &lt;color name=&quot;background_normal&quot;>#F5F5F5&lt;/color> &lt;!--Material Grey 100-->"
411         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~">
412         <location
413             file="res/values/colors.xml"
414             line="13"
415             column="12"/>
416     </issue>
418     <issue
419         id="UnusedResources"
420         message="The resource `R.color.background_private` appears to be unused"
421         errorLine1="    &lt;color name=&quot;background_private&quot;>#FF292C29&lt;/color>"
422         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~">
423         <location
424             file="res/values/colors.xml"
425             line="14"
426             column="12"/>
427     </issue>
429     <issue
430         id="UnusedResources"
431         message="The resource `R.color.background_tabs` appears to be unused"
432         errorLine1="    &lt;color name=&quot;background_tabs&quot;>#FF363B40&lt;/color>"
433         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~">
434         <location
435             file="res/values/colors.xml"
436             line="15"
437             column="12"/>
438     </issue>
440     <issue
441         id="UnusedResources"
442         message="The resource `R.color.highlight` appears to be unused"
443         errorLine1="    &lt;color name=&quot;highlight&quot;>#33000000&lt;/color>"
444         errorLine2="           ~~~~~~~~~~~~~~~~">
445         <location
446             file="res/values/colors.xml"
447             line="16"
448             column="12"/>
449     </issue>
451     <issue
452         id="UnusedResources"
453         message="The resource `R.color.highlight_focused` appears to be unused"
454         errorLine1="    &lt;color name=&quot;highlight_focused&quot;>#1A000000&lt;/color>"
455         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~">
456         <location
457             file="res/values/colors.xml"
458             line="17"
459             column="12"/>
460     </issue>
462     <issue
463         id="UnusedResources"
464         message="The resource `R.color.highlight_dark` appears to be unused"
465         errorLine1="    &lt;color name=&quot;highlight_dark&quot;>#33FFFFFF&lt;/color>"
466         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~">
467         <location
468             file="res/values/colors.xml"
469             line="18"
470             column="12"/>
471     </issue>
473     <issue
474         id="UnusedResources"
475         message="The resource `R.color.highlight_dark_focused` appears to be unused"
476         errorLine1="    &lt;color name=&quot;highlight_dark_focused&quot;>#1AFFFFFF&lt;/color>"
477         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
478         <location
479             file="res/values/colors.xml"
480             line="19"
481             column="12"/>
482     </issue>
484     <issue
485         id="UnusedResources"
486         message="The resource `R.color.highlight_shaped` appears to be unused"
487         errorLine1="    &lt;color name=&quot;highlight_shaped&quot;>#FF696D71&lt;/color>"
488         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~">
489         <location
490             file="res/values/colors.xml"
491             line="22"
492             column="12"/>
493     </issue>
495     <issue
496         id="UnusedResources"
497         message="The resource `R.color.highlight_shaped_focused` appears to be unused"
498         errorLine1="    &lt;color name=&quot;highlight_shaped_focused&quot;>#FF565B60&lt;/color>"
499         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
500         <location
501             file="res/values/colors.xml"
502             line="25"
503             column="12"/>
504     </issue>
506     <issue
507         id="UnusedResources"
508         message="The resource `R.color.highlight_nav` appears to be unused"
509         errorLine1="    &lt;color name=&quot;highlight_nav&quot;>#FFA5ACB2&lt;/color>"
510         errorLine2="           ~~~~~~~~~~~~~~~~~~~~">
511         <location
512             file="res/values/colors.xml"
513             line="28"
514             column="12"/>
515     </issue>
517     <issue
518         id="UnusedResources"
519         message="The resource `R.color.highlight_nav_focused` appears to be unused"
520         errorLine1="    &lt;color name=&quot;highlight_nav_focused&quot;>#FFB9C1C7&lt;/color>"
521         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
522         <location
523             file="res/values/colors.xml"
524             line="31"
525             column="12"/>
526     </issue>
528     <issue
529         id="UnusedResources"
530         message="The resource `R.color.highlight_nav_pb` appears to be unused"
531         errorLine1="    &lt;color name=&quot;highlight_nav_pb&quot;>#FF545654&lt;/color>"
532         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~">
533         <location
534             file="res/values/colors.xml"
535             line="34"
536             column="12"/>
537     </issue>
539     <issue
540         id="UnusedResources"
541         message="The resource `R.color.highlight_nav_focused_pb` appears to be unused"
542         errorLine1="    &lt;color name=&quot;highlight_nav_focused_pb&quot;>#FF3F423F&lt;/color>"
543         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
544         <location
545             file="res/values/colors.xml"
546             line="37"
547             column="12"/>
548     </issue>
550     <issue
551         id="UnusedResources"
552         message="The resource `R.color.text_color_primary` appears to be unused"
553         errorLine1="    &lt;color name=&quot;text_color_primary&quot;>#222222&lt;/color>"
554         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~">
555         <location
556             file="res/values/colors.xml"
557             line="43"
558             column="12"/>
559     </issue>
561     <issue
562         id="UnusedResources"
563         message="The resource `R.color.text_color_secondary` appears to be unused"
564         errorLine1="    &lt;color name=&quot;text_color_secondary&quot;>#777777&lt;/color>"
565         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
566         <location
567             file="res/values/colors.xml"
568             line="44"
569             column="12"/>
570     </issue>
572     <issue
573         id="UnusedResources"
574         message="The resource `R.color.text_color_tertiary` appears to be unused"
575         errorLine1="    &lt;color name=&quot;text_color_tertiary&quot;>#9198A1&lt;/color>"
576         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~">
577         <location
578             file="res/values/colors.xml"
579             line="45"
580             column="12"/>
581     </issue>
583     <issue
584         id="UnusedResources"
585         message="The resource `R.color.text_color_primary_inverse` appears to be unused"
586         errorLine1="    &lt;color name=&quot;text_color_primary_inverse&quot;>#FFFFFF&lt;/color>"
587         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
588         <location
589             file="res/values/colors.xml"
590             line="48"
591             column="12"/>
592     </issue>
594     <issue
595         id="UnusedResources"
596         message="The resource `R.color.text_color_secondary_inverse` appears to be unused"
597         errorLine1="    &lt;color name=&quot;text_color_secondary_inverse&quot;>#DDDDDD&lt;/color>"
598         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
599         <location
600             file="res/values/colors.xml"
601             line="49"
602             column="12"/>
603     </issue>
605     <issue
606         id="UnusedResources"
607         message="The resource `R.color.text_color_tertiary_inverse` appears to be unused"
608         errorLine1="    &lt;color name=&quot;text_color_tertiary_inverse&quot;>#A4A7A9&lt;/color>"
609         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
610         <location
611             file="res/values/colors.xml"
612             line="50"
613             column="12"/>
614     </issue>
616     <issue
617         id="UnusedResources"
618         message="The resource `R.color.text_color_primary_disable_only` appears to be unused"
619         errorLine1="    &lt;color name=&quot;text_color_primary_disable_only&quot;>#999999&lt;/color>"
620         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
621         <location
622             file="res/values/colors.xml"
623             line="53"
624             column="12"/>
625     </issue>
627     <issue
628         id="UnusedResources"
629         message="The resource `R.color.text_color_hint` appears to be unused"
630         errorLine1="    &lt;color name=&quot;text_color_hint&quot;>#666666&lt;/color>"
631         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~">
632         <location
633             file="res/values/colors.xml"
634             line="56"
635             column="12"/>
636     </issue>
638     <issue
639         id="UnusedResources"
640         message="The resource `R.color.text_color_hint_inverse` appears to be unused"
641         errorLine1="    &lt;color name=&quot;text_color_hint_inverse&quot;>#7F828A&lt;/color>"
642         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
643         <location
644             file="res/values/colors.xml"
645             line="57"
646             column="12"/>
647     </issue>
649     <issue
650         id="UnusedResources"
651         message="The resource `R.color.text_color_highlight` appears to be unused"
652         errorLine1="    &lt;color name=&quot;text_color_highlight&quot;>#FF9500&lt;/color>"
653         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
654         <location
655             file="res/values/colors.xml"
656             line="60"
657             column="12"/>
658     </issue>
660     <issue
661         id="UnusedResources"
662         message="The resource `R.color.text_color_highlight_inverse` appears to be unused"
663         errorLine1="    &lt;color name=&quot;text_color_highlight_inverse&quot;>#D06BFF&lt;/color>"
664         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
665         <location
666             file="res/values/colors.xml"
667             line="61"
668             column="12"/>
669     </issue>
671     <issue
672         id="UnusedResources"
673         message="The resource `R.color.text_color_link` appears to be unused"
674         errorLine1="    &lt;color name=&quot;text_color_link&quot;>#22629E&lt;/color>"
675         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~">
676         <location
677             file="res/values/colors.xml"
678             line="64"
679             column="12"/>
680     </issue>
682     <issue
683         id="UnusedResources"
684         message="The resource `R.color.splash_background` appears to be unused"
685         errorLine1="    &lt;color name=&quot;splash_background&quot;>#000000&lt;/color>"
686         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~">
687         <location
688             file="res/values/colors.xml"
689             line="66"
690             column="12"/>
691     </issue>
693     <issue
694         id="UnusedResources"
695         message="The resource `R.color.splash_msgfont` appears to be unused"
696         errorLine1="    &lt;color name=&quot;splash_msgfont&quot;>#ffffff&lt;/color>"
697         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~">
698         <location
699             file="res/values/colors.xml"
700             line="67"
701             column="12"/>
702     </issue>
704     <issue
705         id="UnusedResources"
706         message="The resource `R.color.splash_urlfont` appears to be unused"
707         errorLine1="    &lt;color name=&quot;splash_urlfont&quot;>#000000&lt;/color>"
708         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~">
709         <location
710             file="res/values/colors.xml"
711             line="68"
712             column="12"/>
713     </issue>
715     <issue
716         id="UnusedResources"
717         message="The resource `R.color.splash_content` appears to be unused"
718         errorLine1="    &lt;color name=&quot;splash_content&quot;>#ffffff&lt;/color>"
719         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~">
720         <location
721             file="res/values/colors.xml"
722             line="69"
723             column="12"/>
724     </issue>
726     <issue
727         id="UnusedResources"
728         message="The resource `R.color.doorhanger_text` appears to be unused"
729         errorLine1="    &lt;color name=&quot;doorhanger_text&quot;>#FF222222&lt;/color>"
730         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~">
731         <location
732             file="res/values/colors.xml"
733             line="71"
734             column="12"/>
735     </issue>
737     <issue
738         id="UnusedResources"
739         message="The resource `R.color.doorhanger_link` appears to be unused"
740         errorLine1="    &lt;color name=&quot;doorhanger_link&quot;>#FF2AA1FE&lt;/color>"
741         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~">
742         <location
743             file="res/values/colors.xml"
744             line="72"
745             column="12"/>
746     </issue>
748     <issue
749         id="UnusedResources"
750         message="The resource `R.color.doorhanger_divider_dark` appears to be unused"
751         errorLine1="    &lt;color name=&quot;doorhanger_divider_dark&quot;>#FFB3C2CE&lt;/color>"
752         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
753         <location
754             file="res/values/colors.xml"
755             line="74"
756             column="12"/>
757     </issue>
759     <issue
760         id="UnusedResources"
761         message="The resource `R.color.validation_message_text` appears to be unused"
762         errorLine1="    &lt;color name=&quot;validation_message_text&quot;>#ffffff&lt;/color>"
763         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
764         <location
765             file="res/values/colors.xml"
766             line="77"
767             column="12"/>
768     </issue>
770     <issue
771         id="UnusedResources"
772         message="The resource `R.color.url_bar_text_highlight` appears to be unused"
773         errorLine1="    &lt;color name=&quot;url_bar_text_highlight&quot;>#FFFF9500&lt;/color>"
774         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
775         <location
776             file="res/values/colors.xml"
777             line="78"
778             column="12"/>
779     </issue>
781     <issue
782         id="UnusedResources"
783         message="The resource `R.color.url_bar_text_highlight_pb` appears to be unused"
784         errorLine1="    &lt;color name=&quot;url_bar_text_highlight_pb&quot;>#FFD06BFF&lt;/color>"
785         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
786         <location
787             file="res/values/colors.xml"
788             line="79"
789             column="12"/>
790     </issue>
792     <issue
793         id="UnusedResources"
794         message="The resource `R.color.suggestion_primary` appears to be unused"
795         errorLine1="    &lt;color name=&quot;suggestion_primary&quot;>#dddddd&lt;/color>"
796         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~">
797         <location
798             file="res/values/colors.xml"
799             line="80"
800             column="12"/>
801     </issue>
803     <issue
804         id="UnusedResources"
805         message="The resource `R.color.suggestion_pressed` appears to be unused"
806         errorLine1="    &lt;color name=&quot;suggestion_pressed&quot;>#bbbbbb&lt;/color>"
807         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~">
808         <location
809             file="res/values/colors.xml"
810             line="81"
811             column="12"/>
812     </issue>
814     <issue
815         id="UnusedResources"
816         message="The resource `R.color.tab_row_pressed` appears to be unused"
817         errorLine1="    &lt;color name=&quot;tab_row_pressed&quot;>#4D000000&lt;/color>"
818         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~">
819         <location
820             file="res/values/colors.xml"
821             line="82"
822             column="12"/>
823     </issue>
825     <issue
826         id="UnusedResources"
827         message="The resource `R.color.dialogtitle_textcolor` appears to be unused"
828         errorLine1="    &lt;color name=&quot;dialogtitle_textcolor&quot;>#ffffff&lt;/color>"
829         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
830         <location
831             file="res/values/colors.xml"
832             line="83"
833             column="12"/>
834     </issue>
836     <issue
837         id="UnusedResources"
838         message="The resource `R.color.textbox_background` appears to be unused"
839         errorLine1="    &lt;color name=&quot;textbox_background&quot;>#FFF&lt;/color>"
840         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~">
841         <location
842             file="res/values/colors.xml"
843             line="85"
844             column="12"/>
845     </issue>
847     <issue
848         id="UnusedResources"
849         message="The resource `R.color.textbox_background_disabled` appears to be unused"
850         errorLine1="    &lt;color name=&quot;textbox_background_disabled&quot;>#DDD&lt;/color>"
851         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
852         <location
853             file="res/values/colors.xml"
854             line="86"
855             column="12"/>
856     </issue>
858     <issue
859         id="UnusedResources"
860         message="The resource `R.color.textbox_stroke` appears to be unused"
861         errorLine1="    &lt;color name=&quot;textbox_stroke&quot;>#000&lt;/color>"
862         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~">
863         <location
864             file="res/values/colors.xml"
865             line="87"
866             column="12"/>
867     </issue>
869     <issue
870         id="UnusedResources"
871         message="The resource `R.color.textbox_stroke_disabled` appears to be unused"
872         errorLine1="    &lt;color name=&quot;textbox_stroke_disabled&quot;>#666&lt;/color>"
873         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
874         <location
875             file="res/values/colors.xml"
876             line="88"
877             column="12"/>
878     </issue>
880     <issue
881         id="UnusedResources"
882         message="The resource `R.color.url_bar_urltext` appears to be unused"
883         errorLine1="    &lt;color name=&quot;url_bar_urltext&quot;>#A6A6A6&lt;/color>"
884         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~">
885         <location
886             file="res/values/colors.xml"
887             line="90"
888             column="12"/>
889     </issue>
891     <issue
892         id="UnusedResources"
893         message="The resource `R.color.url_bar_domaintext` appears to be unused"
894         errorLine1="    &lt;color name=&quot;url_bar_domaintext&quot;>#000&lt;/color>"
895         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~">
896         <location
897             file="res/values/colors.xml"
898             line="91"
899             column="12"/>
900     </issue>
902     <issue
903         id="UnusedResources"
904         message="The resource `R.color.url_bar_domaintext_private` appears to be unused"
905         errorLine1="    &lt;color name=&quot;url_bar_domaintext_private&quot;>#FFF&lt;/color>"
906         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
907         <location
908             file="res/values/colors.xml"
909             line="92"
910             column="12"/>
911     </issue>
913     <issue
914         id="UnusedResources"
915         message="The resource `R.color.url_bar_blockedtext` appears to be unused"
916         errorLine1="    &lt;color name=&quot;url_bar_blockedtext&quot;>#b14646&lt;/color>"
917         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~">
918         <location
919             file="res/values/colors.xml"
920             line="93"
921             column="12"/>
922     </issue>
924     <issue
925         id="UnusedResources"
926         message="The resource `R.color.url_bar_shadow` appears to be unused"
927         errorLine1="    &lt;color name=&quot;url_bar_shadow&quot;>#12000000&lt;/color>"
928         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~">
929         <location
930             file="res/values/colors.xml"
931             line="94"
932             column="12"/>
933     </issue>
935     <issue
936         id="UnusedResources"
937         message="The resource `R.color.home_last_tab_bar_bg` appears to be unused"
938         errorLine1="    &lt;color name=&quot;home_last_tab_bar_bg&quot;>#FFF5F7F9&lt;/color>"
939         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
940         <location
941             file="res/values/colors.xml"
942             line="96"
943             column="12"/>
944     </issue>
946     <issue
947         id="UnusedResources"
948         message="The resource `R.color.panel_grid_item_image_background` appears to be unused"
949         errorLine1="    &lt;color name=&quot;panel_grid_item_image_background&quot;>#D1D9E1&lt;/color>"
950         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
951         <location
952             file="res/values/colors.xml"
953             line="98"
954             column="12"/>
955     </issue>
957     <issue
958         id="UnusedResources"
959         message="The resource `R.dimen.activity_horizontal_margin` appears to be unused"
960         errorLine1="    &lt;dimen name=&quot;activity_horizontal_margin&quot;>16dp&lt;/dimen>"
961         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
962         <location
963             file="res/values/dimens.xml"
964             line="3"
965             column="12"/>
966     </issue>
968     <issue
969         id="UnusedResources"
970         message="The resource `R.dimen.activity_vertical_margin` appears to be unused"
971         errorLine1="    &lt;dimen name=&quot;activity_vertical_margin&quot;>16dp&lt;/dimen>"
972         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
973         <location
974             file="res/values/dimens.xml"
975             line="4"
976             column="12"/>
977     </issue>
979     <issue
980         id="UnusedResources"
981         message="The resource `R.dimen.text_selection_handle_width` appears to be unused"
982         errorLine1="    &lt;dimen name=&quot;text_selection_handle_width&quot;>30dp&lt;/dimen>"
983         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
984         <location
985             file="res/values/dimens.xml"
986             line="5"
987             column="12"/>
988     </issue>
990     <issue
991         id="UnusedResources"
992         message="The resource `R.dimen.text_selection_handle_height` appears to be unused"
993         errorLine1="    &lt;dimen name=&quot;text_selection_handle_height&quot;>44dp&lt;/dimen>"
994         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
995         <location
996             file="res/values/dimens.xml"
997             line="6"
998             column="12"/>
999     </issue>
1001     <issue
1002         id="UnusedResources"
1003         message="The resource `R.dimen.text_selection_handle_shadow` appears to be unused"
1004         errorLine1="    &lt;dimen name=&quot;text_selection_handle_shadow&quot;>2dp&lt;/dimen>"
1005         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1006         <location
1007             file="res/values/dimens.xml"
1008             line="7"
1009             column="12"/>
1010     </issue>
1012     <issue
1013         id="UnusedResources"
1014         message="The resource `R.dimen.file_icon_width` appears to be unused"
1015         errorLine1="    &lt;dimen name=&quot;file_icon_width&quot;>32dp&lt;/dimen>"
1016         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~">
1017         <location
1018             file="res/values/dimens.xml"
1019             line="10"
1020             column="12"/>
1021     </issue>
1023     <issue
1024         id="UnusedResources"
1025         message="The resource `R.layout.document_viewer` appears to be unused"
1026         errorLine1="&lt;RelativeLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
1027         errorLine2="^">
1028         <location
1029             file="res/layout/document_viewer.xml"
1030             line="8"
1031             column="1"/>
1032     </issue>
1034     <issue
1035         id="UnusedResources"
1036         message="The resource `R.drawable.ic_menu` appears to be unused"
1037         errorLine1="&lt;bitmap xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
1038         errorLine2="^">
1039         <location
1040             file="res/drawable-hdpi/ic_menu.xml"
1041             line="3"
1042             column="1"/>
1043     </issue>
1045     <issue
1046         id="UnusedResources"
1047         message="The resource `R.drawable.ic_menu_black_24dp` appears to be unused">
1048         <location
1049             file="res/drawable-xxxhdpi/ic_menu_black_24dp.png"/>
1050     </issue>
1052     <issue
1053         id="UnusedResources"
1054         message="The resource `R.drawable.ic_settings_24dp` appears to be unused"
1055         errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
1056         errorLine2="^">
1057         <location
1058             file="res/drawable/ic_settings_24dp.xml"
1059             line="1"
1060             column="1"/>
1061     </issue>
1063     <issue
1064         id="UnusedResources"
1065         message="The resource `R.drawable.ic_sort_24dp` appears to be unused"
1066         errorLine1="&lt;vector android:autoMirrored=&quot;true&quot; android:height=&quot;24dp&quot;"
1067         errorLine2="^">
1068         <location
1069             file="res/drawable/ic_sort_24dp.xml"
1070             line="9"
1071             column="1"/>
1072     </issue>
1074     <issue
1075         id="UnusedResources"
1076         message="The resource `R.drawable.light_view_as_grid` appears to be unused">
1077         <location
1078             file="res/drawable-hdpi/light_view_as_grid.png"/>
1079     </issue>
1081     <issue
1082         id="UnusedResources"
1083         message="The resource `R.drawable.light_view_as_list` appears to be unused">
1084         <location
1085             file="res/drawable-hdpi/light_view_as_list.png"/>
1086     </issue>
1088     <issue
1089         id="UnusedResources"
1090         message="The resource `R.layout.main` appears to be unused"
1091         errorLine1="&lt;LinearLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
1092         errorLine2="^">
1093         <location
1094             file="res/layout/main.xml"
1095             line="9"
1096             column="1"/>
1097     </issue>
1099     <issue
1100         id="UnusedResources"
1101         message="The resource `R.drawable.shadow` appears to be unused">
1102         <location
1103             file="res/drawable-mdpi/shadow.png"/>
1104     </issue>
1106     <issue
1107         id="UnusedResources"
1108         message="The resource `R.layout.text_selection_handles` appears to be unused"
1109         errorLine1="&lt;merge xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
1110         errorLine2="^">
1111         <location
1112             file="res/layout/text_selection_handles.xml"
1113             line="6"
1114             column="1"/>
1115     </issue>
1117     <issue
1118         id="UnusedResources"
1119         message="The resource `R.style.LibreOfficeTheme_NavigationView` appears to be unused"
1120         errorLine1="    &lt;style name=&quot;LibreOfficeTheme.NavigationView&quot;>"
1121         errorLine2="           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1122         <location
1123             file="res/values/themes.xml"
1124             line="17"
1125             column="12"/>
1126     </issue>
1128     <issue
1129         id="UselessParent"
1130         message="This `ScrollView` layout or its `LinearLayout` parent is unnecessary"
1131         errorLine1="                        &lt;ScrollView"
1132         errorLine2="                         ~~~~~~~~~~">
1133         <location
1134             file="res/layout/toolbar_bottom.xml"
1135             line="55"
1136             column="26"/>
1137     </issue>
1139     <issue
1140         id="UselessParent"
1141         message="This `ScrollView` layout or its `LinearLayout` parent is unnecessary"
1142         errorLine1="                        &lt;ScrollView"
1143         errorLine2="                         ~~~~~~~~~~">
1144         <location
1145             file="res/layout/toolbar_bottom.xml"
1146             line="193"
1147             column="26"/>
1148     </issue>
1150     <issue
1151         id="UselessParent"
1152         message="This `ScrollView` layout or its `LinearLayout` parent is unnecessary"
1153         errorLine1="                        &lt;ScrollView"
1154         errorLine2="                         ~~~~~~~~~~">
1155         <location
1156             file="res/layout/toolbar_bottom.xml"
1157             line="305"
1158             column="26"/>
1159     </issue>
1161     <issue
1162         id="UselessParent"
1163         message="This `ScrollView` layout or its `LinearLayout` parent is unnecessary"
1164         errorLine1="                        &lt;ScrollView"
1165         errorLine2="                         ~~~~~~~~~~">
1166         <location
1167             file="res/layout/toolbar_bottom.xml"
1168             line="373"
1169             column="26"/>
1170     </issue>
1172     <issue
1173         id="TooDeepLayout"
1174         message="`toolbar_bottom.xml` has more than 10 levels, bad for performance"
1175         errorLine1="                                    &lt;ImageButton"
1176         errorLine2="                                     ~~~~~~~~~~~">
1177         <location
1178             file="res/layout/toolbar_bottom.xml"
1179             line="70"
1180             column="38"/>
1181     </issue>
1183     <issue
1184         id="IconLocation"
1185         message="Found bitmap drawable `res/drawable/calc.png` in densityless folder">
1186         <location
1187             file="res/drawable/calc.png"/>
1188     </issue>
1190     <issue
1191         id="IconLocation"
1192         message="Found bitmap drawable `res/drawable/draw.png` in densityless folder">
1193         <location
1194             file="res/drawable/draw.png"/>
1195     </issue>
1197     <issue
1198         id="IconLocation"
1199         message="Found bitmap drawable `res/drawable/dummy_page.png` in densityless folder">
1200         <location
1201             file="res/drawable/dummy_page.png"/>
1202     </issue>
1204     <issue
1205         id="IconLocation"
1206         message="Found bitmap drawable `res/drawable/impress.png` in densityless folder">
1207         <location
1208             file="res/drawable/impress.png"/>
1209     </issue>
1211     <issue
1212         id="IconLocation"
1213         message="Found bitmap drawable `res/drawable/writer.png` in densityless folder">
1214         <location
1215             file="res/drawable/writer.png"/>
1216     </issue>
1218     <issue
1219         id="IconDensities"
1220         message="Missing the following drawables in `drawable-hdpi`: background.png, decrementindent.png, handle_image_end.png, handle_image_middle.png, handle_image_start.png... (22 more)">
1221         <location
1222             file="res/drawable-hdpi"/>
1223     </issue>
1225     <issue
1226         id="IconDensities"
1227         message="Missing the following drawables in `drawable-mdpi`: decrementindent.png, handle_alias_end.xml, handle_alias_middle.xml, handle_alias_start.xml, handle_image_end.png... (33 more)">
1228         <location
1229             file="res/drawable-mdpi"/>
1230     </issue>
1232     <issue
1233         id="IconDensities"
1234         message="Missing the following drawables in `drawable-xhdpi`: background.png, decrementindent.png, handle_alias_end.xml, handle_alias_middle.xml, handle_alias_start.xml... (32 more)">
1235         <location
1236             file="res/drawable-xhdpi"/>
1237     </issue>
1239     <issue
1240         id="IconMissingDensityFolder"
1241         message="Missing density variation folders in `res`: drawable-xxhdpi">
1242         <location
1243             file="res"/>
1244     </issue>
1246     <issue
1247         id="AlwaysShowAction"
1248         message="Prefer &quot;`ifRoom`&quot; instead of &quot;`always`&quot;"
1249         errorLine1="              app:showAsAction=&quot;always&quot;/>"
1250         errorLine2="              ~~~~~~~~~~~~~~~~~~~~~~~~~">
1251         <location
1252             file="res/menu/main.xml"
1253             line="14"
1254             column="15"/>
1255         <location
1256             file="res/menu/main.xml"
1257             line="20"
1258             column="15"/>
1259         <location
1260             file="res/menu/main.xml"
1261             line="26"
1262             column="15"/>
1263         <location
1264             file="res/menu/main.xml"
1265             line="32"
1266             column="13"/>
1267         <location
1268             file="res/menu/main.xml"
1269             line="112"
1270             column="13"/>
1271         <location
1272             file="res/menu/main.xml"
1273             line="118"
1274             column="13"/>
1275         <location
1276             file="res/menu/main.xml"
1277             line="124"
1278             column="13"/>
1279         <location
1280             file="res/menu/main.xml"
1281             line="130"
1282             column="13"/>
1283         <location
1284             file="res/menu/main.xml"
1285             line="140"
1286             column="9"/>
1287     </issue>
1289     <issue
1290         id="Autofill"
1291         message="Missing `autofillHints` attribute"
1292         errorLine1="            &lt;EditText"
1293         errorLine2="             ~~~~~~~~">
1294         <location
1295             file="res/layout/calc_header_popup.xml"
1296             line="73"
1297             column="14"/>
1298     </issue>
1300     <issue
1301         id="Autofill"
1302         message="Missing `autofillHints` attribute"
1303         errorLine1="    &lt;EditText"
1304         errorLine2="     ~~~~~~~~">
1305         <location
1306             file="res/layout/password_dialog.xml"
1307             line="6"
1308             column="6"/>
1309     </issue>
1311     <issue
1312         id="Autofill"
1313         message="Missing `autofillHints` attribute"
1314         errorLine1="        &lt;EditText"
1315         errorLine2="         ~~~~~~~~">
1316         <location
1317             file="res/layout/toolbar_bottom.xml"
1318             line="454"
1319             column="10"/>
1320     </issue>
1322     <issue
1323         id="Autofill"
1324         message="Missing `autofillHints` attribute"
1325         errorLine1="            &lt;EditText"
1326         errorLine2="             ~~~~~~~~">
1327         <location
1328             file="res/layout/toolbar_bottom.xml"
1329             line="493"
1330             column="14"/>
1331     </issue>
1333     <issue
1334         id="Autofill"
1335         message="Missing `autofillHints` attribute"
1336         errorLine1="            &lt;EditText"
1337         errorLine2="             ~~~~~~~~">
1338         <location
1339             file="res/layout/toolbar_bottom.xml"
1340             line="533"
1341             column="14"/>
1342     </issue>
1344     <issue
1345         id="Autofill"
1346         message="Missing `autofillHints` attribute"
1347         errorLine1="            &lt;EditText"
1348         errorLine2="             ~~~~~~~~">
1349         <location
1350             file="res/layout/toolbar_bottom.xml"
1351             line="543"
1352             column="14"/>
1353     </issue>
1355     <issue
1356         id="Autofill"
1357         message="Missing `autofillHints` attribute"
1358         errorLine1="            &lt;EditText"
1359         errorLine2="             ~~~~~~~~">
1360         <location
1361             file="res/layout/toolbar_bottom.xml"
1362             line="553"
1363             column="14"/>
1364     </issue>
1366     <issue
1367         id="ReportShortcutUsage"
1368         message="Calling this method indicates use of dynamic shortcuts, but there are no calls to methods that track shortcut usage, such as `pushDynamicShortcut` or `reportShortcutUsed`. Calling these methods is recommended, as they track shortcut usage and allow launchers to adjust which shortcuts appear based on activation history. Please see https://developer.android.com/develop/ui/views/launch/shortcuts/managing-shortcuts#track-usage"
1369         errorLine1="            shortcutManager.setDynamicShortcuts(shortcuts);"
1370         errorLine2="            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1371         <location
1372             file="src/java/org/libreoffice/ui/LibreOfficeUIActivity.java"
1373             line="407"
1374             column="13"/>
1375     </issue>
1377     <issue
1378         id="ClickableViewAccessibility"
1379         message="`onTouch` should call `View#performClick` when a click is detected"
1380         errorLine1="                public boolean onTouch(View v, MotionEvent event) {"
1381         errorLine2="                               ~~~~~~~">
1382         <location
1383             file="src/java/org/libreoffice/overlay/CalcHeadersView.java"
1384             line="69"
1385             column="32"/>
1386     </issue>
1388     <issue
1389         id="ClickableViewAccessibility"
1390         message="Custom view `LayerView` overrides `onTouchEvent` but not `performClick`"
1391         errorLine1="    public boolean onTouchEvent(MotionEvent event) {"
1392         errorLine2="                   ~~~~~~~~~~~~">
1393         <location
1394             file="src/java/org/mozilla/gecko/gfx/LayerView.java"
1395             line="115"
1396             column="20"/>
1397     </issue>
1399     <issue
1400         id="ClickableViewAccessibility"
1401         message="`OnSlideSwipeListener#onTouch` should call `View#performClick` when a click is detected"
1402         errorLine1="    public boolean onTouch(View v, MotionEvent me) {"
1403         errorLine2="                   ~~~~~~~">
1404         <location
1405             file="src/java/org/mozilla/gecko/OnSlideSwipeListener.java"
1406             line="89"
1407             column="20"/>
1408     </issue>
1410     <issue
1411         id="ClickableViewAccessibility"
1412         message="Custom view ``WebView`` has `setOnTouchListener` called on it but does not override `performClick`"
1413         errorLine1="        mWebView.setOnTouchListener(new View.OnTouchListener() {"
1414         errorLine2="        ^">
1415         <location
1416             file="src/java/org/libreoffice/PresentationActivity.java"
1417             line="40"
1418             column="9"/>
1419     </issue>
1421     <issue
1422         id="ClickableViewAccessibility"
1423         message="`onTouch` should call `View#performClick` when a click is detected"
1424         errorLine1="            public boolean onTouch(View v, MotionEvent event) {"
1425         errorLine2="                           ~~~~~~~">
1426         <location
1427             file="src/java/org/libreoffice/PresentationActivity.java"
1428             line="42"
1429             column="28"/>
1430     </issue>
1432     <issue
1433         id="ClickableViewAccessibility"
1434         message="`onTouch` should call `View#performClick` when a click is detected"
1435         errorLine1="            public boolean onTouch(View v, MotionEvent event) {"
1436         errorLine2="                           ~~~~~~~">
1437         <location
1438             file="src/java/org/libreoffice/PresentationActivity.java"
1439             line="77"
1440             column="28"/>
1441     </issue>
1443     <issue
1444         id="ContentDescription"
1445         message="Missing `contentDescription` attribute on image"
1446         errorLine1="        &lt;com.google.android.material.floatingactionbutton.FloatingActionButton"
1447         errorLine2="         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1448         <location
1449             file="res/layout/activity_document_browser.xml"
1450             line="137"
1451             column="10"/>
1452     </issue>
1454     <issue
1455         id="ContentDescription"
1456         message="Missing `contentDescription` attribute on image"
1457         errorLine1="        &lt;com.google.android.material.floatingactionbutton.FloatingActionButton"
1458         errorLine2="         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1459         <location
1460             file="res/layout/activity_document_browser.xml"
1461             line="169"
1462             column="10"/>
1463     </issue>
1465     <issue
1466         id="ContentDescription"
1467         message="Missing `contentDescription` attribute on image"
1468         errorLine1="        &lt;com.google.android.material.floatingactionbutton.FloatingActionButton"
1469         errorLine2="         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1470         <location
1471             file="res/layout/activity_document_browser.xml"
1472             line="201"
1473             column="10"/>
1474     </issue>
1476     <issue
1477         id="ContentDescription"
1478         message="Missing `contentDescription` attribute on image"
1479         errorLine1="        &lt;com.google.android.material.floatingactionbutton.FloatingActionButton"
1480         errorLine2="         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1481         <location
1482             file="res/layout/activity_document_browser.xml"
1483             line="233"
1484             column="10"/>
1485     </issue>
1487     <issue
1488         id="ContentDescription"
1489         message="Missing `contentDescription` attribute on image"
1490         errorLine1="    &lt;ImageButton"
1491         errorLine2="     ~~~~~~~~~~~">
1492         <location
1493             file="res/layout/colorbox.xml"
1494             line="6"
1495             column="6"/>
1496     </issue>
1498     <issue
1499         id="ContentDescription"
1500         message="Missing `contentDescription` attribute on image"
1501         errorLine1="    &lt;ImageView"
1502         errorLine2="     ~~~~~~~~~">
1503         <location
1504             file="res/layout/document_part_list_layout.xml"
1505             line="10"
1506             column="6"/>
1507     </issue>
1509     <issue
1510         id="ContentDescription"
1511         message="Missing `contentDescription` attribute on image"
1512         errorLine1="        &lt;ImageButton"
1513         errorLine2="         ~~~~~~~~~~~">
1514         <location
1515             file="res/layout/presentation_mode.xml"
1516             line="16"
1517             column="10"/>
1518     </issue>
1520     <issue
1521         id="ContentDescription"
1522         message="Missing `contentDescription` attribute on image"
1523         errorLine1="        &lt;ImageButton"
1524         errorLine2="         ~~~~~~~~~~~">
1525         <location
1526             file="res/layout/presentation_mode.xml"
1527             line="25"
1528             column="10"/>
1529     </issue>
1531     <issue
1532         id="ContentDescription"
1533         message="Missing `contentDescription` attribute on image"
1534         errorLine1="                                    &lt;ImageButton"
1535         errorLine2="                                     ~~~~~~~~~~~">
1536         <location
1537             file="res/layout/toolbar_bottom.xml"
1538             line="70"
1539             column="38"/>
1540     </issue>
1542     <issue
1543         id="ContentDescription"
1544         message="Missing `contentDescription` attribute on image"
1545         errorLine1="                                    &lt;ImageButton"
1546         errorLine2="                                     ~~~~~~~~~~~">
1547         <location
1548             file="res/layout/toolbar_bottom.xml"
1549             line="80"
1550             column="38"/>
1551     </issue>
1553     <issue
1554         id="ContentDescription"
1555         message="Missing `contentDescription` attribute on image"
1556         errorLine1="                                    &lt;ImageButton"
1557         errorLine2="                                     ~~~~~~~~~~~">
1558         <location
1559             file="res/layout/toolbar_bottom.xml"
1560             line="90"
1561             column="38"/>
1562     </issue>
1564     <issue
1565         id="ContentDescription"
1566         message="Missing `contentDescription` attribute on image"
1567         errorLine1="                                    &lt;ImageButton"
1568         errorLine2="                                     ~~~~~~~~~~~">
1569         <location
1570             file="res/layout/toolbar_bottom.xml"
1571             line="100"
1572             column="38"/>
1573     </issue>
1575     <issue
1576         id="ContentDescription"
1577         message="Missing `contentDescription` attribute on image"
1578         errorLine1="                                    &lt;ImageButton"
1579         errorLine2="                                     ~~~~~~~~~~~">
1580         <location
1581             file="res/layout/toolbar_bottom.xml"
1582             line="110"
1583             column="38"/>
1584     </issue>
1586     <issue
1587         id="ContentDescription"
1588         message="Missing `contentDescription` attribute on image"
1589         errorLine1="                                    &lt;ImageButton"
1590         errorLine2="                                     ~~~~~~~~~~~">
1591         <location
1592             file="res/layout/toolbar_bottom.xml"
1593             line="140"
1594             column="38"/>
1595     </issue>
1597     <issue
1598         id="ContentDescription"
1599         message="Missing `contentDescription` attribute on image"
1600         errorLine1="                                    &lt;ImageButton"
1601         errorLine2="                                     ~~~~~~~~~~~">
1602         <location
1603             file="res/layout/toolbar_bottom.xml"
1604             line="150"
1605             column="38"/>
1606     </issue>
1608     <issue
1609         id="ContentDescription"
1610         message="Missing `contentDescription` attribute on image"
1611         errorLine1="                                    &lt;ImageButton"
1612         errorLine2="                                     ~~~~~~~~~~~">
1613         <location
1614             file="res/layout/toolbar_bottom.xml"
1615             line="160"
1616             column="38"/>
1617     </issue>
1619     <issue
1620         id="ContentDescription"
1621         message="Missing `contentDescription` attribute on image"
1622         errorLine1="                                    &lt;ImageButton"
1623         errorLine2="                                     ~~~~~~~~~~~">
1624         <location
1625             file="res/layout/toolbar_bottom.xml"
1626             line="170"
1627             column="38"/>
1628     </issue>
1630     <issue
1631         id="ContentDescription"
1632         message="Missing `contentDescription` attribute on image"
1633         errorLine1="                                    &lt;ImageButton"
1634         errorLine2="                                     ~~~~~~~~~~~">
1635         <location
1636             file="res/layout/toolbar_bottom.xml"
1637             line="207"
1638             column="38"/>
1639     </issue>
1641     <issue
1642         id="ContentDescription"
1643         message="Missing `contentDescription` attribute on image"
1644         errorLine1="                                    &lt;ImageButton"
1645         errorLine2="                                     ~~~~~~~~~~~">
1646         <location
1647             file="res/layout/toolbar_bottom.xml"
1648             line="217"
1649             column="38"/>
1650     </issue>
1652     <issue
1653         id="ContentDescription"
1654         message="Missing `contentDescription` attribute on image"
1655         errorLine1="                                    &lt;ImageButton"
1656         errorLine2="                                     ~~~~~~~~~~~">
1657         <location
1658             file="res/layout/toolbar_bottom.xml"
1659             line="227"
1660             column="38"/>
1661     </issue>
1663     <issue
1664         id="ContentDescription"
1665         message="Missing `contentDescription` attribute on image"
1666         errorLine1="                                    &lt;ImageButton"
1667         errorLine2="                                     ~~~~~~~~~~~">
1668         <location
1669             file="res/layout/toolbar_bottom.xml"
1670             line="237"
1671             column="38"/>
1672     </issue>
1674     <issue
1675         id="ContentDescription"
1676         message="Missing `contentDescription` attribute on image"
1677         errorLine1="                                    &lt;ImageButton"
1678         errorLine2="                                     ~~~~~~~~~~~">
1679         <location
1680             file="res/layout/toolbar_bottom.xml"
1681             line="253"
1682             column="38"/>
1683     </issue>
1685     <issue
1686         id="ContentDescription"
1687         message="Missing `contentDescription` attribute on image"
1688         errorLine1="                                    &lt;ImageButton"
1689         errorLine2="                                     ~~~~~~~~~~~">
1690         <location
1691             file="res/layout/toolbar_bottom.xml"
1692             line="263"
1693             column="38"/>
1694     </issue>
1696     <issue
1697         id="ContentDescription"
1698         message="Missing `contentDescription` attribute on image"
1699         errorLine1="                                    &lt;ImageButton"
1700         errorLine2="                                     ~~~~~~~~~~~">
1701         <location
1702             file="res/layout/toolbar_bottom.xml"
1703             line="273"
1704             column="38"/>
1705     </issue>
1707     <issue
1708         id="ContentDescription"
1709         message="Missing `contentDescription` attribute on image"
1710         errorLine1="                                    &lt;ImageButton"
1711         errorLine2="                                     ~~~~~~~~~~~">
1712         <location
1713             file="res/layout/toolbar_bottom.xml"
1714             line="283"
1715             column="38"/>
1716     </issue>
1718     <issue
1719         id="ContentDescription"
1720         message="Missing `contentDescription` attribute on image"
1721         errorLine1="                                &lt;ImageButton"
1722         errorLine2="                                 ~~~~~~~~~~~">
1723         <location
1724             file="res/layout/toolbar_bottom.xml"
1725             line="315"
1726             column="34"/>
1727     </issue>
1729     <issue
1730         id="ContentDescription"
1731         message="Missing `contentDescription` attribute on image"
1732         errorLine1="                                &lt;ImageButton"
1733         errorLine2="                                 ~~~~~~~~~~~">
1734         <location
1735             file="res/layout/toolbar_bottom.xml"
1736             line="325"
1737             column="34"/>
1738     </issue>
1740     <issue
1741         id="ContentDescription"
1742         message="Missing `contentDescription` attribute on image"
1743         errorLine1="                                &lt;ImageButton"
1744         errorLine2="                                 ~~~~~~~~~~~">
1745         <location
1746             file="res/layout/toolbar_bottom.xml"
1747             line="335"
1748             column="34"/>
1749     </issue>
1751     <issue
1752         id="ContentDescription"
1753         message="Missing `contentDescription` attribute on image"
1754         errorLine1="                                &lt;ImageButton"
1755         errorLine2="                                 ~~~~~~~~~~~">
1756         <location
1757             file="res/layout/toolbar_bottom.xml"
1758             line="345"
1759             column="34"/>
1760     </issue>
1762     <issue
1763         id="ContentDescription"
1764         message="Missing `contentDescription` attribute on image"
1765         errorLine1="                                &lt;ImageButton"
1766         errorLine2="                                 ~~~~~~~~~~~">
1767         <location
1768             file="res/layout/toolbar_bottom.xml"
1769             line="355"
1770             column="34"/>
1771     </issue>
1773     <issue
1774         id="ContentDescription"
1775         message="Missing `contentDescription` attribute on image"
1776         errorLine1="                                    &lt;ImageButton"
1777         errorLine2="                                     ~~~~~~~~~~~">
1778         <location
1779             file="res/layout/toolbar_bottom.xml"
1780             line="398"
1781             column="38"/>
1782     </issue>
1784     <issue
1785         id="ContentDescription"
1786         message="Missing `contentDescription` attribute on image"
1787         errorLine1="                                    &lt;ImageButton"
1788         errorLine2="                                     ~~~~~~~~~~~">
1789         <location
1790             file="res/layout/toolbar_bottom.xml"
1791             line="427"
1792             column="38"/>
1793     </issue>
1795     <issue
1796         id="ContentDescription"
1797         message="Missing `contentDescription` attribute on image"
1798         errorLine1="            &lt;ImageButton"
1799         errorLine2="             ~~~~~~~~~~~">
1800         <location
1801             file="res/layout/toolbar_bottom.xml"
1802             line="503"
1803             column="14"/>
1804     </issue>
1806     <issue
1807         id="ContentDescription"
1808         message="Missing `contentDescription` attribute on image"
1809         errorLine1="            &lt;ImageButton"
1810         errorLine2="             ~~~~~~~~~~~">
1811         <location
1812             file="res/layout/toolbar_bottom.xml"
1813             line="511"
1814             column="14"/>
1815     </issue>
1817     <issue
1818         id="ContentDescription"
1819         message="Missing `contentDescription` attribute on image"
1820         errorLine1="            &lt;ImageButton"
1821         errorLine2="             ~~~~~~~~~~~">
1822         <location
1823             file="res/layout/toolbar_bottom.xml"
1824             line="519"
1825             column="14"/>
1826     </issue>
1828     <issue
1829         id="ContentDescription"
1830         message="Missing `contentDescription` attribute on image"
1831         errorLine1="            &lt;ImageButton"
1832         errorLine2="             ~~~~~~~~~~~">
1833         <location
1834             file="res/layout/toolbar_bottom.xml"
1835             line="563"
1836             column="14"/>
1837     </issue>
1839     <issue
1840         id="ContentDescription"
1841         message="Missing `contentDescription` attribute on image"
1842         errorLine1="            &lt;ImageButton"
1843         errorLine2="             ~~~~~~~~~~~">
1844         <location
1845             file="res/layout/toolbar_color_picker.xml"
1846             line="30"
1847             column="14"/>
1848     </issue>
1850     <issue
1851         id="KeyboardInaccessibleWidget"
1852         message="&apos;clickable&apos; attribute found, please also add &apos;focusable&apos;"
1853         errorLine1="        android:clickable=&quot;true&quot;"
1854         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~">
1855         <location
1856             file="res/layout/activity_document_browser.xml"
1857             line="111"
1858             column="9"/>
1859     </issue>
1861     <issue
1862         id="KeyboardInaccessibleWidget"
1863         message="&apos;clickable&apos; attribute found, please also add &apos;focusable&apos;"
1864         errorLine1="            android:clickable=&quot;true&quot;"
1865         errorLine2="            ~~~~~~~~~~~~~~~~~~~~~~~~">
1866         <location
1867             file="res/layout/activity_document_browser.xml"
1868             line="143"
1869             column="13"/>
1870     </issue>
1872     <issue
1873         id="KeyboardInaccessibleWidget"
1874         message="&apos;clickable&apos; attribute found, please also add &apos;focusable&apos;"
1875         errorLine1="            android:clickable=&quot;true&quot;"
1876         errorLine2="            ~~~~~~~~~~~~~~~~~~~~~~~~">
1877         <location
1878             file="res/layout/activity_document_browser.xml"
1879             line="175"
1880             column="13"/>
1881     </issue>
1883     <issue
1884         id="KeyboardInaccessibleWidget"
1885         message="&apos;clickable&apos; attribute found, please also add &apos;focusable&apos;"
1886         errorLine1="            android:clickable=&quot;true&quot;"
1887         errorLine2="            ~~~~~~~~~~~~~~~~~~~~~~~~">
1888         <location
1889             file="res/layout/activity_document_browser.xml"
1890             line="207"
1891             column="13"/>
1892     </issue>
1894     <issue
1895         id="KeyboardInaccessibleWidget"
1896         message="&apos;clickable&apos; attribute found, please also add &apos;focusable&apos;"
1897         errorLine1="            android:clickable=&quot;true&quot;"
1898         errorLine2="            ~~~~~~~~~~~~~~~~~~~~~~~~">
1899         <location
1900             file="res/layout/activity_document_browser.xml"
1901             line="239"
1902             column="13"/>
1903     </issue>
1905     <issue
1906         id="KeyboardInaccessibleWidget"
1907         message="&apos;clickable&apos; attribute found, please also add &apos;focusable&apos;"
1908         errorLine1="        android:clickable=&quot;true&quot;"
1909         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~">
1910         <location
1911             file="res/layout/colorbox.xml"
1912             line="11"
1913             column="9"/>
1914     </issue>
1916     <issue
1917         id="KeyboardInaccessibleWidget"
1918         message="&apos;clickable&apos; attribute found, please also add &apos;focusable&apos;"
1919         errorLine1="        android:clickable=&quot;true&quot;"
1920         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~">
1921         <location
1922             file="res/layout/number_picker.xml"
1923             line="30"
1924             column="9"/>
1925     </issue>
1927     <issue
1928         id="KeyboardInaccessibleWidget"
1929         message="&apos;clickable&apos; attribute found, please also add &apos;focusable&apos;"
1930         errorLine1="        android:clickable=&quot;true&quot;"
1931         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~">
1932         <location
1933             file="res/layout/number_picker.xml"
1934             line="64"
1935             column="9"/>
1936     </issue>
1938     <issue
1939         id="KeyboardInaccessibleWidget"
1940         message="&apos;clickable&apos; attribute found, please also add &apos;focusable&apos;"
1941         errorLine1="        android:clickable=&quot;true&quot;"
1942         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~">
1943         <location
1944             file="res/layout/number_picker.xml"
1945             line="95"
1946             column="9"/>
1947     </issue>
1949     <issue
1950         id="KeyboardInaccessibleWidget"
1951         message="&apos;clickable&apos; attribute found, please also add &apos;focusable&apos;"
1952         errorLine1="        android:clickable=&quot;true&quot;"
1953         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~">
1954         <location
1955             file="res/layout/number_picker.xml"
1956             line="126"
1957             column="9"/>
1958     </issue>
1960     <issue
1961         id="LabelFor"
1962         message="Missing accessibility label: provide either a view with an `android:labelFor` that references this view or provide an `android:hint`"
1963         errorLine1="                &lt;EditText"
1964         errorLine2="                 ~~~~~~~~">
1965         <location
1966             file="res/layout/activity_main.xml"
1967             line="42"
1968             column="18"/>
1969     </issue>
1971     <issue
1972         id="LabelFor"
1973         message="Missing accessibility label: provide either a view with an `android:labelFor` that references this view or provide an `android:hint`"
1974         errorLine1="                &lt;EditText"
1975         errorLine2="                 ~~~~~~~~">
1976         <location
1977             file="res/layout/activity_main.xml"
1978             line="52"
1979             column="18"/>
1980     </issue>
1982     <issue
1983         id="LabelFor"
1984         message="Missing accessibility label: provide either a view with an `android:labelFor` that references this view or provide an `android:hint`"
1985         errorLine1="        &lt;EditText"
1986         errorLine2="         ~~~~~~~~">
1987         <location
1988             file="res/layout/toolbar_bottom.xml"
1989             line="454"
1990             column="10"/>
1991     </issue>
1993     <issue
1994         id="HardcodedText"
1995         message="Hardcoded string &quot;Rows:&quot;, should use `@string` resource"
1996         errorLine1="        android:text=&quot;Rows:&quot;"
1997         errorLine2="        ~~~~~~~~~~~~~~~~~~~~">
1998         <location
1999             file="res/layout/number_picker.xml"
2000             line="16"
2001             column="9"/>
2002     </issue>
2004     <issue
2005         id="HardcodedText"
2006         message="Hardcoded string &quot;+&quot;, should use `@string` resource"
2007         errorLine1="        android:text=&quot;+&quot;"
2008         errorLine2="        ~~~~~~~~~~~~~~~~">
2009         <location
2010             file="res/layout/number_picker.xml"
2011             line="32"
2012             column="9"/>
2013     </issue>
2015     <issue
2016         id="HardcodedText"
2017         message="Hardcoded string &quot;3&quot;, should use `@string` resource"
2018         errorLine1="        android:text=&quot;3&quot;"
2019         errorLine2="        ~~~~~~~~~~~~~~~~">
2020         <location
2021             file="res/layout/number_picker.xml"
2022             line="45"
2023             column="9"/>
2024     </issue>
2026     <issue
2027         id="HardcodedText"
2028         message="Hardcoded string &quot;-&quot;, should use `@string` resource"
2029         errorLine1="        android:text=&quot;-&quot;"
2030         errorLine2="        ~~~~~~~~~~~~~~~~">
2031         <location
2032             file="res/layout/number_picker.xml"
2033             line="60"
2034             column="9"/>
2035     </issue>
2037     <issue
2038         id="HardcodedText"
2039         message="Hardcoded string &quot;Columns:&quot;, should use `@string` resource"
2040         errorLine1="        android:text=&quot;Columns:&quot;"
2041         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~">
2042         <location
2043             file="res/layout/number_picker.xml"
2044             line="77"
2045             column="9"/>
2046     </issue>
2048     <issue
2049         id="HardcodedText"
2050         message="Hardcoded string &quot;-&quot;, should use `@string` resource"
2051         errorLine1="        android:text=&quot;-&quot;"
2052         errorLine2="        ~~~~~~~~~~~~~~~~">
2053         <location
2054             file="res/layout/number_picker.xml"
2055             line="90"
2056             column="9"/>
2057     </issue>
2059     <issue
2060         id="HardcodedText"
2061         message="Hardcoded string &quot;3&quot;, should use `@string` resource"
2062         errorLine1="        android:text=&quot;3&quot;"
2063         errorLine2="        ~~~~~~~~~~~~~~~~">
2064         <location
2065             file="res/layout/number_picker.xml"
2066             line="108"
2067             column="9"/>
2068     </issue>
2070     <issue
2071         id="HardcodedText"
2072         message="Hardcoded string &quot;+&quot;, should use `@string` resource"
2073         errorLine1="        android:text=&quot;+&quot;"
2074         errorLine2="        ~~~~~~~~~~~~~~~~">
2075         <location
2076             file="res/layout/number_picker.xml"
2077             line="122"
2078             column="9"/>
2079     </issue>
2081     <issue
2082         id="RelativeOverlap"
2083         message="`@id/slide_show_nav_back` can overlap `@id/slide_show_nav_prev` if @string/slideshow_action_back grows due to localized text expansion"
2084         errorLine1="        &lt;Button"
2085         errorLine2="         ~~~~~~">
2086         <location
2087             file="res/layout/presentation_mode.xml"
2088             line="34"
2089             column="10"/>
2090     </issue>
2092     <issue
2093         id="RelativeOverlap"
2094         message="`TextView-1` can overlap `@id/font_color_picker_button` if @string/font_color grows due to localized text expansion"
2095         errorLine1="                                    &lt;TextView"
2096         errorLine2="                                     ~~~~~~~~">
2097         <location
2098             file="res/layout/toolbar_bottom.xml"
2099             line="386"
2100             column="38"/>
2101     </issue>
2103     <issue
2104         id="RelativeOverlap"
2105         message="`TextView-1` can overlap `@id/font_back_color_picker_button` if @string/highlight_color grows due to localized text expansion"
2106         errorLine1="                                    &lt;TextView"
2107         errorLine2="                                     ~~~~~~~~">
2108         <location
2109             file="res/layout/toolbar_bottom.xml"
2110             line="415"
2111             column="38"/>
2112     </issue>
2114     <issue
2115         id="RelativeOverlap"
2116         message="`@id/button_auto_color` can overlap `@id/button_go_back_color_picker` if @string/automatic grows due to localized text expansion"
2117         errorLine1="            &lt;Button"
2118         errorLine2="             ~~~~~~">
2119         <location
2120             file="res/layout/toolbar_color_picker.xml"
2121             line="38"
2122             column="14"/>
2123     </issue>
2125     <issue
2126         id="RtlHardcoded"
2127         message="Redundant attribute `layout_toRightOf`; already defining `layout_toEndOf` with `targetSdkVersion` 34"
2128         errorLine1="                    android:layout_toRightOf=&quot;@+id/calc_header_top_left&quot;"
2129         errorLine2="                    ~~~~~~~~~~~~~~~~~~~~~~~~">
2130         <location
2131             file="res/layout/activity_main.xml"
2132             line="78"
2133             column="21"/>
2134     </issue>
2136     <issue
2137         id="RtlHardcoded"
2138         message="Redundant attribute `layout_toRightOf`; already defining `layout_toEndOf` with `targetSdkVersion` 34"
2139         errorLine1="                    android:layout_toRightOf=&quot;@+id/calc_header_row&quot;"
2140         errorLine2="                    ~~~~~~~~~~~~~~~~~~~~~~~~">
2141         <location
2142             file="res/layout/activity_main.xml"
2143             line="94"
2144             column="21"/>
2145     </issue>
2147     <issue
2148         id="RtlHardcoded"
2149         message="Redundant attribute `layout_marginRight`; already defining `layout_marginEnd` with `targetSdkVersion` 34"
2150         errorLine1="        android:layout_marginRight=&quot;@dimen/file_icon_margin_end&quot;"
2151         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~~~">
2152         <location
2153             file="res/layout/item_recent_files.xml"
2154             line="26"
2155             column="9"/>
2156     </issue>
2158     <issue
2159         id="RtlHardcoded"
2160         message="Redundant attribute `layout_marginLeft`; already defining `layout_marginStart` with `targetSdkVersion` 34"
2161         errorLine1="        android:layout_marginLeft=&quot;8dp&quot;"
2162         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~~">
2163         <location
2164             file="res/layout/number_picker.xml"
2165             line="14"
2166             column="9"/>
2167     </issue>
2169     <issue
2170         id="RtlHardcoded"
2171         message="Redundant attribute `layout_marginRight`; already defining `layout_marginEnd` with `targetSdkVersion` 34"
2172         errorLine1="        android:layout_marginRight=&quot;8dp&quot;"
2173         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~~~">
2174         <location
2175             file="res/layout/number_picker.xml"
2176             line="27"
2177             column="9"/>
2178     </issue>
2180     <issue
2181         id="RtlHardcoded"
2182         message="Redundant attribute `layout_marginLeft`; already defining `layout_marginStart` with `targetSdkVersion` 34"
2183         errorLine1="        android:layout_marginLeft=&quot;8dp&quot;"
2184         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~~">
2185         <location
2186             file="res/layout/number_picker.xml"
2187             line="75"
2188             column="9"/>
2189     </issue>
2191     <issue
2192         id="RtlHardcoded"
2193         message="Redundant attribute `layout_marginRight`; already defining `layout_marginEnd` with `targetSdkVersion` 34"
2194         errorLine1="        android:layout_marginRight=&quot;8dp&quot;"
2195         errorLine2="        ~~~~~~~~~~~~~~~~~~~~~~~~~~">
2196         <location
2197             file="res/layout/number_picker.xml"
2198             line="120"
2199             column="9"/>
2200     </issue>
2202     <issue
2203         id="RtlHardcoded"
2204         message="Redundant attribute `layout_alignParentRight`; already defining `layout_alignParentEnd` with `targetSdkVersion` 34"
2205         errorLine1="            android:layout_alignParentRight=&quot;true&quot;"
2206         errorLine2="            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
2207         <location
2208             file="res/layout/presentation_mode.xml"
2209             line="21"
2210             column="13"/>
2211     </issue>
2213     <issue
2214         id="RtlHardcoded"
2215         message="Redundant attribute `layout_alignParentRight`; already defining `layout_alignParentEnd` with `targetSdkVersion` 34"
2216         errorLine1="            android:layout_alignParentRight=&quot;true&quot;"
2217         errorLine2="            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
2218         <location
2219             file="res/layout/presentation_mode.xml"
2220             line="31"
2221             column="13"/>
2222     </issue>
2224     <issue
2225         id="RtlHardcoded"
2226         message="Redundant attribute `layout_alignParentLeft`; already defining `layout_alignParentStart` with `targetSdkVersion` 34"
2227         errorLine1="            android:layout_alignParentLeft=&quot;true&quot;"
2228         errorLine2="            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
2229         <location
2230             file="res/layout/presentation_mode.xml"
2231             line="38"
2232             column="13"/>
2233     </issue>
2235     <issue
2236         id="RtlHardcoded"
2237         message="Consider replacing `android:layout_alignParentLeft` with `android:layout_alignParentStart=&quot;true&quot;` to better support right-to-left layouts"
2238         errorLine1="                                        android:layout_alignParentLeft=&quot;true&quot;"
2239         errorLine2="                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
2240         <location
2241             file="res/layout/toolbar_bottom.xml"
2242             line="395"
2243             column="41"/>
2244     </issue>
2246     <issue
2247         id="RtlHardcoded"
2248         message="Consider replacing `android:layout_alignParentRight` with `android:layout_alignParentEnd=&quot;true&quot;` to better support right-to-left layouts"
2249         errorLine1="                                        android:layout_alignParentRight=&quot;true&quot;"
2250         errorLine2="                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
2251         <location
2252             file="res/layout/toolbar_bottom.xml"
2253             line="405"
2254             column="41"/>
2255     </issue>
2257     <issue
2258         id="RtlHardcoded"
2259         message="Consider replacing `android:layout_alignParentLeft` with `android:layout_alignParentStart=&quot;true&quot;` to better support right-to-left layouts"
2260         errorLine1="                                        android:layout_alignParentLeft=&quot;true&quot;"
2261         errorLine2="                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
2262         <location
2263             file="res/layout/toolbar_bottom.xml"
2264             line="424"
2265             column="41"/>
2266     </issue>
2268     <issue
2269         id="RtlHardcoded"
2270         message="Consider replacing `android:layout_alignParentRight` with `android:layout_alignParentEnd=&quot;true&quot;` to better support right-to-left layouts"
2271         errorLine1="                                        android:layout_alignParentRight=&quot;true&quot;"
2272         errorLine2="                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
2273         <location
2274             file="res/layout/toolbar_bottom.xml"
2275             line="434"
2276             column="41"/>
2277     </issue>
2279     <issue
2280         id="RtlHardcoded"
2281         message="Consider replacing `android:layout_alignParentRight` with `android:layout_alignParentEnd=&quot;true&quot;` to better support right-to-left layouts"
2282         errorLine1="                android:layout_alignParentRight=&quot;true&quot;"
2283         errorLine2="                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
2284         <location
2285             file="res/layout/toolbar_color_picker.xml"
2286             line="40"
2287             column="17"/>
2288     </issue>
2290     <issue
2291         id="RtlEnabled"
2292         message="The project references RTL attributes, but does not explicitly enable or disable RTL support with `android:supportsRtl` in the manifest">
2293         <location
2294             file="AndroidManifest.xml"/>
2295     </issue>
2297 </issues>