1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
|
<?xml version="1.0" encoding="UTF-8"?>
<issues format="6" by="lint 8.0.2" type="baseline" client="gradle" dependencies="false" name="AGP (8.0.2)" variant="all" version="8.0.2">
<issue
id="MissingSuperCall"
message="Overriding method should call `super.onDismiss`"
errorLine1=" override fun onDismiss(dialogInterface: DialogInterface) {"
errorLine2=" ~~~~~~~~~">
<location
file="src/main/kotlin/net/mullvad/mullvadvpn/ui/fragment/ConfirmNoEmailDialogFragment.kt"
line="61"
column="18"/>
</issue>
<issue
id="MissingSuperCall"
message="Overriding method should call `super.onActivityResult`"
errorLine1=" override fun onActivityResult(requestCode: Int, resultCode: Int, resultData: Intent?) {"
errorLine2=" ~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/net/mullvad/mullvadvpn/ui/MainActivity.kt"
line="139"
column="18"/>
</issue>
<issue
id="ScopedStorage"
message="READ_EXTERNAL_STORAGE is deprecated (and is not granted) when targeting Android 13+. If you need to query or interact with MediaStore or media files on the shared storage, you should instead use one or more new storage permissions: `READ_MEDIA_IMAGES`, `READ_MEDIA_VIDEO` or `READ_MEDIA_AUDIO`."
errorLine1=" <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/debug/AndroidManifest.xml"
line="4"
column="36"/>
</issue>
<issue
id="ScopedStorage"
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."
errorLine1=" <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/debug/AndroidManifest.xml"
line="5"
column="36"/>
</issue>
<issue
id="ResourceAsColor"
message="Should pass resolved color instead of resource id here: `getResources().getColor(android.R.color.transparent)`"
errorLine1=" dialog.window?.setBackgroundDrawable(ColorDrawable(android.R.color.transparent))"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/net/mullvad/mullvadvpn/ui/fragment/ConfirmNoEmailDialogFragment.kt"
line="50"
column="60"/>
</issue>
<issue
id="ResourceAsColor"
message="Should pass resolved color instead of resource id here: `getResources().getColor(android.R.color.transparent)`"
errorLine1=" dialog.window?.setBackgroundDrawable(ColorDrawable(android.R.color.transparent))"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/net/mullvad/mullvadvpn/ui/fragment/RedeemVoucherDialogFragment.kt"
line="108"
column="60"/>
</issue>
<issue
id="ScrollViewSize"
message="This LinearLayout should use `android:layout_height="wrap_content"`"
errorLine1=" android:layout_height="match_parent""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/login.xml"
line="9"
column="19"/>
</issue>
<issue
id="ScrollViewSize"
message="This LinearLayout should use `android:layout_height="wrap_content"`"
errorLine1=" android:layout_height="match_parent""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/out_of_time.xml"
line="14"
column="23"/>
</issue>
<issue
id="ScrollViewSize"
message="This LinearLayout should use `android:layout_height="wrap_content"`"
errorLine1=" android:layout_height="match_parent""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/welcome.xml"
line="14"
column="23"/>
</issue>
<issue
id="DefaultLocale"
message="Implicitly using the default locale is a common source of bugs: Use `toUpperCase(Locale)` instead. For strings meant to be internal use `Locale.ROOT`, otherwise `Locale.getDefault()`."
errorLine1=" input.replace(index, index + 1, character.toString().toUpperCase())"
errorLine2=" ~~~~~~~~~~~">
<location
file="src/main/kotlin/net/mullvad/mullvadvpn/util/SegmentedInputFormatter.kt"
line="117"
column="74"/>
</issue>
<issue
id="DuplicateIncludedIds"
message="Duplicate id @+id/widgetBarrier, defined or included multiple times in layout/list_item_action.xml: [layout/list_item_action.xml defines @+id/widgetBarrier, layout/list_item_action.xml => layout/list_item_base.xml defines @+id/widgetBarrier]"
errorLine1=" <include layout="@layout/list_item_base" />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/list_item_action.xml"
line="7"
column="5"
message="Duplicate id @+id/widgetBarrier, defined or included multiple times in layout/list_item_action.xml: [layout/list_item_action.xml defines @+id/widgetBarrier, layout/list_item_action.xml => layout/list_item_base.xml defines @+id/widgetBarrier]"/>
<location
file="src/main/res/layout/list_item_action.xml"
line="23"
column="47"
message="Defined here"/>
<location
file="src/main/res/layout/list_item_base.xml"
line="38"
column="47"
message="Defined here, included via layout/list_item_action.xml => layout/list_item_base.xml defines @+id/widgetBarrier"/>
</issue>
<issue
id="DuplicateIncludedIds"
message="Duplicate id @+id/widgetBarrier, defined or included multiple times in layout/list_item_two_action.xml: [layout/list_item_two_action.xml defines @+id/widgetBarrier, layout/list_item_two_action.xml => layout/list_item_base.xml defines @+id/widgetBarrier]"
errorLine1=" <include layout="@layout/list_item_base" />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/list_item_two_action.xml"
line="16"
column="9"
message="Duplicate id @+id/widgetBarrier, defined or included multiple times in layout/list_item_two_action.xml: [layout/list_item_two_action.xml defines @+id/widgetBarrier, layout/list_item_two_action.xml => layout/list_item_base.xml defines @+id/widgetBarrier]"/>
<location
file="src/main/res/layout/list_item_two_action.xml"
line="34"
column="47"
message="Defined here"/>
<location
file="src/main/res/layout/list_item_base.xml"
line="38"
column="47"
message="Defined here, included via layout/list_item_two_action.xml => layout/list_item_base.xml defines @+id/widgetBarrier"/>
</issue>
<issue
id="InlinedApi"
message="Field requires API level 33 (current min is 26): `android.Manifest.permission#POST_NOTIFICATIONS`"
errorLine1=" requestNotificationPermissionLauncher.launch(Manifest.permission.POST_NOTIFICATIONS)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/net/mullvad/mullvadvpn/ui/MainActivity.kt"
line="359"
column="58"/>
</issue>
<issue
id="RedundantLabel"
message="Redundant label can be removed"
errorLine1=" android:label="@string/app_name""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/debug/AndroidManifest.xml"
line="17"
column="13"/>
</issue>
<issue
id="RedundantLabel"
message="Redundant label can be removed"
errorLine1=" android:label="@string/app_name""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/AndroidManifest.xml"
line="33"
column="19"/>
</issue>
<issue
id="Deprecated"
message="`android:editable` is deprecated: Use `inputType` instead"
errorLine1=" android:editable="false""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/view_logs.xml"
line="31"
column="19"/>
</issue>
<issue
id="UseCheckPermission"
message="The result of `checkPermission` is not used"
errorLine1=" mockedPackageManager.checkPermission(internet, packageName)"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/test/kotlin/net/mullvad/mullvadvpn/applist/ApplicationsProviderTest.kt"
line="88"
column="21"/>
</issue>
<issue
id="DataExtractionRules"
message="The attribute `android:allowBackup` is deprecated from Android 12 and higher and may be removed in future versions. Consider adding the attribute `android:dataExtractionRules` specifying an `@xml` resource which configures cloud backups and device transfers on Android 12 and higher."
errorLine1=" android:allowBackup="false""
errorLine2=" ~~~~~">
<location
file="src/main/AndroidManifest.xml"
line="23"
column="39"/>
</issue>
<issue
id="QueryAllPackagesPermission"
message="A `<queries>` declaration should generally be used instead of QUERY_ALL_PACKAGES; \
see https://g.co/dev/packagevisibility for details"
errorLine1=" <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/AndroidManifest.xml"
line="6"
column="22"/>
</issue>
<issue
id="NotifyDataSetChanged"
message="It will always be more efficient to use more specific change events if you can. Rely on `notifyDataSetChanged` as a last resort."
errorLine1=" var accountHistory by observable<String?>(null) { _, _, _ -> notifyDataSetChanged() }"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/net/mullvad/mullvadvpn/ui/widget/AccountHistoryAdapter.kt"
line="16"
column="66"/>
</issue>
<issue
id="NotifyDataSetChanged"
message="It will always be more efficient to use more specific change events if you can. Rely on `notifyDataSetChanged` as a last resort."
errorLine1=" notifyDataSetChanged()"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/kotlin/net/mullvad/mullvadvpn/util/AdapterWithHeader.kt"
line="17"
column="17"/>
</issue>
<issue
id="MergeRootFrame"
message="This `<FrameLayout>` can be replaced with a `<merge>` tag"
errorLine1="<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android""
errorLine2="^">
<location
file="src/main/res/layout/main.xml"
line="1"
column="1"/>
</issue>
<issue
id="InefficientWeight"
message="Use a `layout_height` of `0dp` instead of `wrap_content` for better performance"
errorLine1=" android:layout_height="wrap_content""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/confirm_no_email.xml"
line="17"
column="19"/>
</issue>
<issue
id="InefficientWeight"
message="Use a `layout_height` of `0dp` instead of `wrap_content` for better performance"
errorLine1=" android:layout_height="wrap_content""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/problem_report.xml"
line="38"
column="27"/>
</issue>
<issue
id="InefficientWeight"
message="Use a `layout_height` of `0dp` instead of `wrap_content` for better performance"
errorLine1=" android:layout_height="wrap_content""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/redeem_voucher.xml"
line="13"
column="19"/>
</issue>
<issue
id="NestedWeights"
message="Nested weights are bad for performance"
errorLine1=" android:layout_weight="1" />"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/login.xml"
line="28"
column="20"/>
</issue>
<issue
id="Overdraw"
message="Possible overdraw: Root element paints background `?android:attr/selectableItemBackground` with a theme that also paints a background (inferred theme is `@style/AppTheme`)"
errorLine1=" android:background="?android:attr/selectableItemBackground">"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/notification_banner.xml"
line="8"
column="17"/>
</issue>
<issue
id="Overdraw"
message="Possible overdraw: Root element paints background `@color/darkBlue` with a theme that also paints a background (inferred theme is `@style/AppTheme`)"
errorLine1=" android:background="@color/darkBlue""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/problem_report.xml"
line="5"
column="14"/>
</issue>
<issue
id="Overdraw"
message="Possible overdraw: Root element paints background `@color/darkBlue` with a theme that also paints a background (inferred theme is `@style/AppTheme`)"
errorLine1=" android:background="@color/darkBlue""
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
<location
file="src/main/res/layout/view_logs.xml"
line="5"
column="15"/>
</issue>
<issue
id="TextFields"
message="This text field does not specify an `inputType`"
errorLine1=" <EditText android:id="@+id/login_input""
errorLine2=" ~~~~~~~~">
<location
file="src/main/res/layout/account_input.xml"
line="2"
column="6"/>
</issue>
<issue
id="TextFields"
message="This text field does not specify an `inputType`"
errorLine1=" <EditText android:id="@+id/user_message""
errorLine2=" ~~~~~~~~">
<location
file="src/main/res/layout/problem_report.xml"
line="70"
column="26"/>
</issue>
<issue
id="TextFields"
message="This text field does not specify an `inputType`"
errorLine1=" <EditText android:id="@+id/log_area""
errorLine2=" ~~~~~~~~">
<location
file="src/main/res/layout/view_logs.xml"
line="28"
column="10"/>
</issue>
<issue
id="Autofill"
message="Missing `autofillHints` attribute"
errorLine1=" <EditText android:id="@+id/login_input""
errorLine2=" ~~~~~~~~">
<location
file="src/main/res/layout/account_input.xml"
line="2"
column="6"/>
</issue>
<issue
id="Autofill"
message="Missing `autofillHints` attribute"
errorLine1=" <EditText android:id="@+id/user_email""
errorLine2=" ~~~~~~~~">
<location
file="src/main/res/layout/problem_report.xml"
line="60"
column="26"/>
</issue>
<issue
id="Autofill"
message="Missing `autofillHints` attribute"
errorLine1=" <EditText android:id="@+id/user_message""
errorLine2=" ~~~~~~~~">
<location
file="src/main/res/layout/problem_report.xml"
line="70"
column="26"/>
</issue>
<issue
id="Autofill"
message="Missing `autofillHints` attribute"
errorLine1=" <EditText android:id="@+id/voucher_code""
errorLine2=" ~~~~~~~~">
<location
file="src/main/res/layout/redeem_voucher.xml"
line="19"
column="10"/>
</issue>
<issue
id="Autofill"
message="Missing `autofillHints` attribute"
errorLine1=" <EditText android:id="@+id/log_area""
errorLine2=" ~~~~~~~~">
<location
file="src/main/res/layout/view_logs.xml"
line="28"
column="10"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageButton android:id="@+id/remove""
errorLine2=" ~~~~~~~~~~~">
<location
file="src/main/res/layout/account_history_entry.xml"
line="15"
column="6"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageButton android:id="@+id/login_button""
errorLine2=" ~~~~~~~~~~~">
<location
file="src/main/res/layout/account_input.xml"
line="16"
column="6"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/top_left_corner""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/account_login_border.xml"
line="3"
column="6"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/top_right_corner""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/account_login_border.xml"
line="9"
column="6"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/bottom_right_corner""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/account_login_border.xml"
line="16"
column="6"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/bottom_left_corner""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/account_login_border.xml"
line="23"
column="6"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/left_border""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/account_login_border.xml"
line="31"
column="6"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/right_border""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/account_login_border.xml"
line="38"
column="6"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/top_border""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/account_login_border.xml"
line="45"
column="6"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/bottom_border""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/account_login_border.xml"
line="52"
column="6"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/image""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/button.xml"
line="16"
column="6"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:layout_width="44dp""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/confirm_no_email.xml"
line="11"
column="10"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/appIcon""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/header_bar.xml"
line="6"
column="10"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/appLogo""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/header_bar.xml"
line="14"
column="10"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/logged_in_status""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/login.xml"
line="42"
column="18"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/login_fail_status""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/login.xml"
line="48"
column="18"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/notification_status""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/notification_banner.xml"
line="15"
column="10"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/notification_icon""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/notification_banner.xml"
line="43"
column="6"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:layout_width="60dp""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/out_of_time.xml"
line="16"
column="14"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/sent_successfully_icon""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/problem_report.xml"
line="110"
column="30"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:id="@+id/failed_to_send_icon""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/problem_report.xml"
line="116"
column="30"/>
</issue>
<issue
id="ContentDescription"
message="Missing `contentDescription` attribute on image"
errorLine1=" <ImageView android:layout_width="24dp""
errorLine2=" ~~~~~~~~~">
<location
file="src/main/res/layout/settings_back_button.xml"
line="2"
column="6"/>
</issue>
<issue
id="LabelFor"
message="Missing accessibility label: provide either a view with an `android:labelFor` that references this view or provide an `android:hint`"
errorLine1=" <EditText android:id="@+id/log_area""
errorLine2=" ~~~~~~~~">
<location
file="src/main/res/layout/view_logs.xml"
line="28"
column="10"/>
</issue>
<issue
id="RtlEnabled"
message="The project references RTL attributes, but does not explicitly enable or disable RTL support with `android:supportsRtl` in the manifest">
<location
file="src/main/AndroidManifest.xml"/>
</issue>
</issues>
|