blob: fb25b81d6b6c45218a34bf2a223f78178aaad9e0 [file] [log] [blame]
Alexander Martinz8e9bbca2022-01-11 11:50:03 +01001<?xml version="1.0" encoding="UTF-8"?>
2<issues format="6" by="lint 7.0.4" type="baseline" client="gradle" name="AGP (7.0.4)" variant="all" version="7.0.4">
3
4 <issue
5 id="MissingSuperCall"
6 message="Overriding method should call `super.onRequestPermissionsResult`"
7 errorLine1=" public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions,"
8 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
9 <location
10 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
11 line="510"
12 column="17"/>
13 </issue>
14
15 <issue
16 id="ScopedStorage"
17 message="WRITE_EXTERNAL_STORAGE no longer provides write access when targeting Android 11+, even when using `requestLegacyExternalStorage`"
18 errorLine1=" &lt;uses-permission android:name=&quot;android.permission.WRITE_EXTERNAL_STORAGE&quot; />"
19 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
20 <location
21 file="AndroidManifest.xml"
22 line="37"
23 column="36"/>
24 </issue>
25
26 <issue
27 id="DefaultLocale"
28 message="Implicitly using the default locale is a common source of bugs: Use `toLowerCase(Locale)` instead. For strings meant to be internal use `Locale.ROOT`, otherwise `Locale.getDefault()`."
29 errorLine1=" private static final String CHINESE_LANGUAGE = Locale.CHINESE.getLanguage().toLowerCase();"
30 errorLine2=" ~~~~~~~~~~~">
31 <location
32 file="src/org/lineageos/eleven/locale/LocaleSet.java"
33 line="27"
34 column="81"/>
35 </issue>
36
37 <issue
38 id="DefaultLocale"
39 message="Implicitly using the default locale is a common source of bugs: Use `toLowerCase(Locale)` instead. For strings meant to be internal use `Locale.ROOT`, otherwise `Locale.getDefault()`."
40 errorLine1=" private static final String JAPANESE_LANGUAGE = Locale.JAPANESE.getLanguage().toLowerCase();"
41 errorLine2=" ~~~~~~~~~~~">
42 <location
43 file="src/org/lineageos/eleven/locale/LocaleSet.java"
44 line="28"
45 column="83"/>
46 </issue>
47
48 <issue
49 id="DefaultLocale"
50 message="Implicitly using the default locale is a common source of bugs: Use `toLowerCase(Locale)` instead. For strings meant to be internal use `Locale.ROOT`, otherwise `Locale.getDefault()`."
51 errorLine1=" private static final String KOREAN_LANGUAGE = Locale.KOREAN.getLanguage().toLowerCase();"
52 errorLine2=" ~~~~~~~~~~~">
53 <location
54 file="src/org/lineageos/eleven/locale/LocaleSet.java"
55 line="29"
56 column="79"/>
57 </issue>
58
59 <issue
60 id="DefaultLocale"
61 message="Implicitly using the default locale is a common source of bugs: Use `toLowerCase(Locale)` instead. For strings meant to be internal use `Locale.ROOT`, otherwise `Locale.getDefault()`."
62 errorLine1=" mLanguage = mLocale.getLanguage().toLowerCase();"
63 errorLine2=" ~~~~~~~~~~~">
64 <location
65 file="src/org/lineageos/eleven/locale/LocaleSet.java"
66 line="45"
67 column="51"/>
68 </issue>
69
70 <issue
71 id="DefaultLocale"
72 message="Implicitly using the default locale is a common source of bugs: Use `toLowerCase(Locale)` instead. For strings meant to be internal use `Locale.ROOT`, otherwise `Locale.getDefault()`."
73 errorLine1=" name = name.trim().toLowerCase();"
74 errorLine2=" ~~~~~~~~~~~">
75 <location
76 file="src/org/lineageos/eleven/utils/MusicUtils.java"
77 line="1552"
78 column="28"/>
79 </issue>
80
81 <issue
82 id="OldTargetApi"
83 message="Not targeting the latest versions of Android; compatibility modes apply. Consider testing and updating this version. Consult the `android.os.Build.VERSION_CODES` javadoc for details."
84 errorLine1=" android:targetSdkVersion=&quot;30&quot; />"
85 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
86 <location
87 file="AndroidManifest.xml"
88 line="27"
89 column="9"/>
90 </issue>
91
92 <issue
93 id="OldTargetApi"
94 message="Not targeting the latest versions of Android; compatibility modes apply. Consider testing and updating this version. Consult the android.os.Build.VERSION_CODES javadoc for details."
95 errorLine1=" targetSdkVersion 30"
96 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
97 <location
98 file="build.gradle"
99 line="45"
100 column="9"/>
101 </issue>
102
103 <issue
104 id="Range"
105 message="Value must be ≥ 0 (was -1)"
106 errorLine1=" columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Audio.Playlists.Members.AUDIO_ID);"
107 errorLine2=" ~~~~~~~~~~~">
108 <location
109 file="src/org/lineageos/eleven/utils/MusicUtils.java"
110 line="724"
111 column="13"/>
112 </issue>
113
114 <issue
115 id="Range"
116 message="Value must be ≥ 0 (was -1)"
117 errorLine1=" list[i] = cursor.getLong(columnIndex);"
118 errorLine2=" ~~~~~~~~~~~">
119 <location
120 file="src/org/lineageos/eleven/utils/MusicUtils.java"
121 line="730"
122 column="42"/>
123 </issue>
124
125 <issue
126 id="Range"
127 message="Value must be ≥ 0"
128 errorLine1=" final long lastUpdate = c.getLong(c.getColumnIndex(columnName));"
129 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
130 <location
131 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
132 line="208"
133 column="51"/>
134 </issue>
135
136 <issue
137 id="Range"
138 message="Value must be ≥ 0"
139 errorLine1=" final int lastUpdatedSongCount = c.getInt(c.getColumnIndex(countColumnName));"
140 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
141 <location
142 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
143 line="211"
144 column="59"/>
145 </issue>
146
147 <issue
148 id="Range"
149 message="Value must be ≥ 0"
150 errorLine1=" long id = playlistCursor.getLong(playlistCursor.getColumnIndex("
151 errorLine2=" ^">
152 <location
153 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
154 line="186"
155 column="50"/>
156 </issue>
157
158 <issue
159 id="WrongConstant"
160 message="Must be one of: Cursor.FIELD_TYPE_NULL, Cursor.FIELD_TYPE_INTEGER, Cursor.FIELD_TYPE_FLOAT, Cursor.FIELD_TYPE_STRING, Cursor.FIELD_TYPE_BLOB"
161 errorLine1=" return 0;"
162 errorLine2=" ~">
163 <location
164 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
165 line="154"
166 column="16"/>
167 </issue>
168
169 <issue
170 id="StringFormatMatches"
171 message="Wrong argument type for formatting argument &apos;#1&apos; in `duration_format`: conversion is &apos;`d`&apos;, received `String` (argument #2 in method call)"
172 errorLine1=" return String.format(durationFormat, hoursString, minutesString);"
173 errorLine2=" ~~~~~~~~~~~">
174 <location
175 file="src/org/lineageos/eleven/utils/MusicUtils.java"
176 line="274"
177 column="46"/>
178 <location
179 file="res/values-ug/strings.xml"
180 line="137"
181 column="5"
182 message="Conflicting argument declaration here"/>
183 </issue>
184
185 <issue
186 id="StringFormatMatches"
187 message="Wrong argument type for formatting argument &apos;#2&apos; in `duration_format`: conversion is &apos;`d`&apos;, received `String` (argument #3 in method call)"
188 errorLine1=" return String.format(durationFormat, hoursString, minutesString);"
189 errorLine2=" ~~~~~~~~~~~~~">
190 <location
191 file="src/org/lineageos/eleven/utils/MusicUtils.java"
192 line="274"
193 column="59"/>
194 <location
195 file="res/values-ug/strings.xml"
196 line="137"
197 column="5"
198 message="Conflicting argument declaration here"/>
199 </issue>
200
201 <issue
202 id="StringFormatMatches"
203 message="Inconsistent formatting types for argument #1 in format string `duration_format` (&apos;%1$d&apos;): Found both &apos;`d`&apos; here and &apos;`s`&apos; in values-zh-rHK/strings.xml"
204 errorLine1=" &lt;string name=&quot;duration_format&quot;>&lt;xliff:g id=&quot;HOURS&quot;>%1$d&lt;/xliff:g> سائەت &lt;xliff:g id=&quot;MINUTES&quot;>%2$d&lt;/xliff:g> مىنۇت&lt;/string>"
205 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
206 <location
207 file="res/values-ug/strings.xml"
208 line="137"
209 column="5"/>
210 <location
211 file="res/values-zh-rHK/strings.xml"
212 line="128"
213 column="5"
214 message="Conflicting argument type (`s&apos;) here"/>
215 </issue>
216
217 <issue
218 id="UnusedQuantity"
219 message="For language &quot;cs&quot; (Czech) the following quantities are not relevant: `many`"
220 errorLine1=" &lt;plurals name=&quot;Nalbums&quot;>"
221 errorLine2=" ^">
222 <location
223 file="res/values-cs/plurals.xml"
224 line="19"
225 column="5"/>
226 </issue>
227
228 <issue
229 id="UnusedQuantity"
230 message="For language &quot;sk&quot; (Slovak) the following quantities are not relevant: `many`"
231 errorLine1=" &lt;plurals name=&quot;Nalbums&quot;>"
232 errorLine2=" ^">
233 <location
234 file="res/values-sk/plurals.xml"
235 line="19"
236 column="5"/>
237 </issue>
238
239 <issue
240 id="UnusedQuantity"
241 message="For language &quot;cs&quot; (Czech) the following quantities are not relevant: `many`"
242 errorLine1=" &lt;plurals name=&quot;Nsongs&quot;>"
243 errorLine2=" ^">
244 <location
245 file="res/values-cs/plurals.xml"
246 line="25"
247 column="5"/>
248 </issue>
249
250 <issue
251 id="UnusedQuantity"
252 message="For language &quot;sk&quot; (Slovak) the following quantities are not relevant: `many`"
253 errorLine1=" &lt;plurals name=&quot;Nsongs&quot;>"
254 errorLine2=" ^">
255 <location
256 file="res/values-sk/plurals.xml"
257 line="25"
258 column="5"/>
259 </issue>
260
261 <issue
262 id="UnusedQuantity"
263 message="For language &quot;cs&quot; (Czech) the following quantities are not relevant: `many`"
264 errorLine1=" &lt;plurals name=&quot;Nhours&quot;>"
265 errorLine2=" ^">
266 <location
267 file="res/values-cs/plurals.xml"
268 line="31"
269 column="5"/>
270 </issue>
271
272 <issue
273 id="UnusedQuantity"
274 message="For language &quot;sk&quot; (Slovak) the following quantities are not relevant: `many`"
275 errorLine1=" &lt;plurals name=&quot;Nhours&quot;>"
276 errorLine2=" ^">
277 <location
278 file="res/values-sk/plurals.xml"
279 line="31"
280 column="5"/>
281 </issue>
282
283 <issue
284 id="UnusedQuantity"
285 message="For language &quot;cs&quot; (Czech) the following quantities are not relevant: `many`"
286 errorLine1=" &lt;plurals name=&quot;Nminutes&quot;>"
287 errorLine2=" ^">
288 <location
289 file="res/values-cs/plurals.xml"
290 line="37"
291 column="5"/>
292 </issue>
293
294 <issue
295 id="UnusedQuantity"
296 message="For language &quot;sk&quot; (Slovak) the following quantities are not relevant: `many`"
297 errorLine1=" &lt;plurals name=&quot;Nminutes&quot;>"
298 errorLine2=" ^">
299 <location
300 file="res/values-sk/plurals.xml"
301 line="37"
302 column="5"/>
303 </issue>
304
305 <issue
306 id="UnusedQuantity"
307 message="For language &quot;cs&quot; (Czech) the following quantities are not relevant: `many`"
308 errorLine1=" &lt;plurals name=&quot;NNNtrackstoplaylist&quot;>"
309 errorLine2=" ^">
310 <location
311 file="res/values-cs/plurals.xml"
312 line="43"
313 column="5"/>
314 </issue>
315
316 <issue
317 id="UnusedQuantity"
318 message="For language &quot;sk&quot; (Slovak) the following quantities are not relevant: `many`"
319 errorLine1=" &lt;plurals name=&quot;NNNtrackstoplaylist&quot;>"
320 errorLine2=" ^">
321 <location
322 file="res/values-sk/plurals.xml"
323 line="43"
324 column="5"/>
325 </issue>
326
327 <issue
328 id="UnusedQuantity"
329 message="For language &quot;cs&quot; (Czech) the following quantities are not relevant: `many`"
330 errorLine1=" &lt;plurals name=&quot;NNNtracksfromplaylist&quot;>"
331 errorLine2=" ^">
332 <location
333 file="res/values-cs/plurals.xml"
334 line="49"
335 column="5"/>
336 </issue>
337
338 <issue
339 id="UnusedQuantity"
340 message="For language &quot;sk&quot; (Slovak) the following quantities are not relevant: `many`"
341 errorLine1=" &lt;plurals name=&quot;NNNtracksfromplaylist&quot;>"
342 errorLine2=" ^">
343 <location
344 file="res/values-sk/plurals.xml"
345 line="49"
346 column="5"/>
347 </issue>
348
349 <issue
350 id="UnusedQuantity"
351 message="For language &quot;cs&quot; (Czech) the following quantities are not relevant: `many`"
352 errorLine1=" &lt;plurals name=&quot;NNNtrackstoqueue&quot;>"
353 errorLine2=" ^">
354 <location
355 file="res/values-cs/plurals.xml"
356 line="55"
357 column="5"/>
358 </issue>
359
360 <issue
361 id="UnusedQuantity"
362 message="For language &quot;sk&quot; (Slovak) the following quantities are not relevant: `many`"
363 errorLine1=" &lt;plurals name=&quot;NNNtrackstoqueue&quot;>"
364 errorLine2=" ^">
365 <location
366 file="res/values-sk/plurals.xml"
367 line="55"
368 column="5"/>
369 </issue>
370
371 <issue
372 id="UnusedQuantity"
373 message="For language &quot;cs&quot; (Czech) the following quantities are not relevant: `many`"
374 errorLine1=" &lt;plurals name=&quot;NNNtracksdeleted&quot;>"
375 errorLine2=" ^">
376 <location
377 file="res/values-cs/plurals.xml"
378 line="61"
379 column="5"/>
380 </issue>
381
382 <issue
383 id="UnusedQuantity"
384 message="For language &quot;sk&quot; (Slovak) the following quantities are not relevant: `many`"
385 errorLine1=" &lt;plurals name=&quot;NNNtracksdeleted&quot;>"
386 errorLine2=" ^">
387 <location
388 file="res/values-sk/plurals.xml"
389 line="61"
390 column="5"/>
391 </issue>
392
393 <issue
394 id="UnsupportedChromeOsHardware"
395 message="Expecting `android:required=&quot;false&quot;` for this hardware feature that may not be supported by all Chrome OS devices"
396 errorLine1=" &lt;uses-feature android:name=&quot;android.hardware.sensor.accelerometer&quot; />"
397 errorLine2=" ~~~~~~~~~~~~">
398 <location
399 file="AndroidManifest.xml"
400 line="65"
401 column="6"/>
402 </issue>
403
404 <issue
405 id="IntentFilterExportedReceiver"
406 message="As of Android 12, `android:exported` must be set; use `true` to make the activity \&#xA;available to other apps, and `false` otherwise."
407 errorLine1=" &lt;activity"
408 errorLine2=" ~~~~~~~~">
409 <location
410 file="AndroidManifest.xml"
411 line="117"
412 column="10"/>
413 </issue>
414
415 <issue
416 id="IntentFilterExportedReceiver"
417 message="As of Android 12, `android:exported` must be set; use `true` to make the activity \&#xA;available to other apps, and `false` otherwise."
418 errorLine1=" &lt;receiver android:name=&quot;org.lineageos.eleven.MediaButtonIntentReceiver&quot; >"
419 errorLine2=" ~~~~~~~~">
420 <location
421 file="AndroidManifest.xml"
422 line="198"
423 column="10"/>
424 </issue>
425
426 <issue
427 id="IntentFilterExportedReceiver"
428 message="As of Android 12, `android:exported` must be set; use `true` to make the activity \&#xA;available to other apps, and `false` otherwise."
429 errorLine1=" &lt;receiver android:name=&quot;.locale.LocaleChangeReceiver&quot;>"
430 errorLine2=" ~~~~~~~~">
431 <location
432 file="AndroidManifest.xml"
433 line="204"
434 column="10"/>
435 </issue>
436
437 <issue
438 id="AllowBackup"
439 message="On SDK version 23 and up, your app data will be automatically backed up and restored on app install. Consider adding the attribute `android:fullBackupContent` to specify an `@xml` resource which configures which files to backup, or just set `android:fullBackupOnly=true`. More info: https://developer.android.com/guide/topics/data/autobackup"
440 errorLine1=" android:allowBackup=&quot;true&quot;"
441 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
442 <location
443 file="AndroidManifest.xml"
444 line="69"
445 column="9"/>
446 </issue>
447
448 <issue
449 id="Recycle"
450 message="This animation should be started with `#start()`"
451 errorLine1=" mValueAnimators[i] = new ValueAnimator();"
452 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
453 <location
454 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
455 line="178"
456 column="34"/>
457 </issue>
458
459 <issue
460 id="StaticFieldLeak"
461 message="This field leaks a context object"
462 errorLine1=" protected final Context mContext;"
463 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
464 <location
465 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
466 line="51"
467 column="5"/>
468 </issue>
469
470 <issue
471 id="StaticFieldLeak"
472 message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
473 errorLine1=" new AsyncTask&lt;Void, Void, BitmapWithColors>() {"
474 errorLine2=" ^">
475 <location
476 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
477 line="225"
478 column="13"/>
479 </issue>
480
481 <issue
482 id="StaticFieldLeak"
483 message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
484 errorLine1=" ElevenUtils.execute(new AsyncTask&lt;Void, Void, Void>() {"
485 errorLine2=" ^">
486 <location
487 file="src/org/lineageos/eleven/cache/ImageCache.java"
488 line="134"
489 column="29"/>
490 </issue>
491
492 <issue
493 id="StaticFieldLeak"
494 message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
495 errorLine1=" ElevenUtils.execute(new AsyncTask&lt;Void, Void, Void>() {"
496 errorLine2=" ^">
497 <location
498 file="src/org/lineageos/eleven/cache/ImageCache.java"
499 line="471"
500 column="29"/>
501 </issue>
502
503 <issue
504 id="StaticFieldLeak"
505 message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
506 errorLine1=" ElevenUtils.execute(new AsyncTask&lt;Void, Void, Void>() {"
507 errorLine2=" ^">
508 <location
509 file="src/org/lineageos/eleven/cache/ImageCache.java"
510 line="493"
511 column="29"/>
512 </issue>
513
514 <issue
515 id="StaticFieldLeak"
516 message="This `AsyncTask` class should be static or leaks might occur (anonymous android.os.AsyncTask)"
517 errorLine1=" ElevenUtils.execute(new AsyncTask&lt;Void, Void, Void>() {"
518 errorLine2=" ^">
519 <location
520 file="src/org/lineageos/eleven/cache/ImageCache.java"
521 line="519"
522 column="29"/>
523 </issue>
524
525 <issue
526 id="StaticFieldLeak"
527 message="Do not place Android context classes in static fields (static reference to `LocalizedStore` which has field `mContext` pointing to `Context`); this is a memory leak"
528 errorLine1=" private static LocalizedStore sInstance = null;"
529 errorLine2=" ~~~~~~">
530 <location
531 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
532 line="53"
533 column="13"/>
534 </issue>
535
536 <issue
537 id="StaticFieldLeak"
538 message="Do not place Android context classes in static fields (static reference to `MusicDB` which has field `mContext` pointing to `Context`); this is a memory leak"
539 errorLine1=" private static MusicDB sInstance = null;"
540 errorLine2=" ~~~~~~">
541 <location
542 file="src/org/lineageos/eleven/provider/MusicDB.java"
543 line="44"
544 column="13"/>
545 </issue>
546
547 <issue
548 id="StaticFieldLeak"
549 message="Do not place Android context classes in static fields (static reference to `PlaylistArtworkStore` which has field `mContext` pointing to `Context`); this is a memory leak"
550 errorLine1=" private static PlaylistArtworkStore sInstance = null;"
551 errorLine2=" ~~~~~~">
552 <location
553 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
554 line="33"
555 column="13"/>
556 </issue>
557
558 <issue
559 id="LogConditional"
560 message="The log call Log.d(...) should be conditional: surround with `if (Log.isLoggable(...))` or `if (BuildConfig.DEBUG) { ... }`"
561 errorLine1=" Log.d(TAG, &quot;Locale Changed from: &quot; + mCurrentLocales + &quot; to &quot; + localeSet);"
562 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
563 <location
564 file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
565 line="77"
566 column="9"/>
567 </issue>
568
569 <issue
570 id="LogConditional"
571 message="The log call Log.i(...) should be conditional: surround with `if (Log.isLoggable(...))` or `if (BuildConfig.DEBUG) { ... }`"
572 errorLine1=" Log.i(TAG, &quot;AddressBook Labels [&quot; + mLocales.toString() + &quot;]: &quot;"
573 errorLine2=" ^">
574 <location
575 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
576 line="191"
577 column="9"/>
578 </issue>
579
580 <issue
581 id="HandlerLeak"
582 message="This `Handler` class should be static or leaks might occur (anonymous android.content.AsyncQueryHandler)"
583 errorLine1=" sAsyncQueryHandler = new AsyncQueryHandler(getContentResolver()) {"
584 errorLine2=" ^">
585 <location
586 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
587 line="222"
588 column="30"/>
589 </issue>
590
591 <issue
592 id="Overdraw"
593 message="Possible overdraw: Root element paints background `@color/activity_album_detail_background_color` with a theme that also paints a background (inferred theme is `@style/Eleven.Theme`)"
594 errorLine1=" android:background=&quot;@color/activity_album_detail_background_color&quot; >"
595 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
596 <location
597 file="res/layout/activity_album_detail.xml"
598 line="4"
599 column="5"/>
600 </issue>
601
602 <issue
603 id="Overdraw"
604 message="Possible overdraw: Root element paints background `@color/activity_artist_detail_background_color` with a theme that also paints a background (inferred theme is `@style/Eleven.Theme`)"
605 errorLine1=" android:background=&quot;@color/activity_artist_detail_background_color&quot;>"
606 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
607 <location
608 file="res/layout/activity_artist_detail.xml"
609 line="4"
610 column="5"/>
611 </issue>
612
613 <issue
614 id="Overdraw"
615 message="Possible overdraw: Root element paints background `@color/header_action_bar_color` with a theme that also paints a background (inferred theme is `@style/Eleven.Theme`)"
616 errorLine1=" android:background=&quot;@color/header_action_bar_color&quot;"
617 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
618 <location
619 file="res/layout/header_bar.xml"
620 line="25"
621 column="5"/>
622 </issue>
623
624 <issue
625 id="UnusedResources"
626 message="The resource `R.dimen.list_item_header_size` appears to be unused"
627 errorLine1=" &lt;dimen name=&quot;list_item_header_size&quot;>16.0sp&lt;/dimen>"
628 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
629 <location
630 file="res/values/dimens.xml"
631 line="39"
632 column="12"/>
633 </issue>
634
635 <issue
636 id="UnusedResources"
637 message="The resource `R.layout.list_header` appears to be unused"
638 errorLine1="&lt;TextView xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
639 errorLine2="^">
640 <location
641 file="res/layout/list_header.xml"
642 line="18"
643 column="1"/>
644 </issue>
645
646 <issue
647 id="UsableSpace"
648 message="Consider also using `StorageManager#getAllocatableBytes` and `allocateBytes` which will consider clearable cached data"
649 errorLine1=" return path.getUsableSpace();"
650 errorLine2=" ~~~~~~~~~~~~~~">
651 <location
652 file="src/org/lineageos/eleven/cache/ImageCache.java"
653 line="605"
654 column="21"/>
655 </issue>
656
657 <issue
658 id="SyntheticAccessor"
659 message="Access to `private` field `TAG` of class `AlbumArtPagerAdapter` requires synthetic accessor"
660 errorLine1=" Log.d(TAG, &quot;[&quot; + mFragment.mAudioId + &quot;] Loading image: &quot;"
661 errorLine2=" ~~~">
662 <location
663 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
664 line="283"
665 column="27"/>
666 </issue>
667
668 <issue
669 id="SyntheticAccessor"
670 message="Access to `private` field `mAudioId` of class `AlbumArtFragment` requires synthetic accessor"
671 errorLine1=" Log.d(TAG, &quot;[&quot; + mFragment.mAudioId + &quot;] Loading image: &quot;"
672 errorLine2=" ~~~~~~~~">
673 <location
674 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
675 line="283"
676 column="48"/>
677 </issue>
678
679 <issue
680 id="SyntheticAccessor"
681 message="Access to `private` method `loadImageAsync` of class `AlbumArtFragment` requires synthetic accessor"
682 errorLine1=" mFragment.loadImageAsync(result);"
683 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
684 <location
685 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
686 line="290"
687 column="17"/>
688 </issue>
689
690 <issue
691 id="SyntheticAccessor"
692 message="Access to `private` field `TAG` of class `AlbumArtPagerAdapter` requires synthetic accessor"
693 errorLine1=" Log.d(TAG, &quot;No Image found for audioId: &quot; + mFragment.mAudioId);"
694 errorLine2=" ~~~">
695 <location
696 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
697 line="292"
698 column="23"/>
699 </issue>
700
701 <issue
702 id="SyntheticAccessor"
703 message="Access to `private` field `mAudioId` of class `AlbumArtFragment` requires synthetic accessor"
704 errorLine1=" Log.d(TAG, &quot;No Image found for audioId: &quot; + mFragment.mAudioId);"
705 errorLine2=" ~~~~~~~~">
706 <location
707 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
708 line="292"
709 column="71"/>
710 </issue>
711
712 <issue
713 id="SyntheticAccessor"
714 message="Access to `private` field `mAlbumId` of class `AlbumDetailFragment` requires synthetic accessor"
715 errorLine1=" return new Album(mAlbumId, mAlbumName, mArtistName, -1, null);"
716 errorLine2=" ~~~~~~~~">
717 <location
718 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
719 line="97"
720 column="34"/>
721 </issue>
722
723 <issue
724 id="SyntheticAccessor"
725 message="Access to `private` field `mAlbumName` of class `AlbumDetailFragment` requires synthetic accessor"
726 errorLine1=" return new Album(mAlbumId, mAlbumName, mArtistName, -1, null);"
727 errorLine2=" ~~~~~~~~~~">
728 <location
729 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
730 line="97"
731 column="44"/>
732 </issue>
733
734 <issue
735 id="SyntheticAccessor"
736 message="Access to `private` field `mArtistName` of class `AlbumDetailFragment` requires synthetic accessor"
737 errorLine1=" return new Album(mAlbumId, mAlbumName, mArtistName, -1, null);"
738 errorLine2=" ~~~~~~~~~~~">
739 <location
740 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
741 line="97"
742 column="56"/>
743 </issue>
744
745 <issue
746 id="SyntheticAccessor"
747 message="Access to `private` field `mSongAdapter` of class `AlbumDetailFragment` requires synthetic accessor"
748 errorLine1=" return mSongAdapter.getItem(position);"
749 errorLine2=" ~~~~~~~~~~~~">
750 <location
751 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
752 line="153"
753 column="24"/>
754 </issue>
755
756 <issue
757 id="SyntheticAccessor"
758 message="Access to `private` field `mAlbumId` of class `AlbumDetailFragment` requires synthetic accessor"
759 errorLine1=" return mAlbumId;"
760 errorLine2=" ~~~~~~~~">
761 <location
762 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
763 line="158"
764 column="24"/>
765 </issue>
766
767 <issue
768 id="SyntheticAccessor"
769 message="Access to `private` field `mAdapter` of class `AlbumFragment` requires synthetic accessor"
770 errorLine1=" return mAdapter.getItem(position);"
771 errorLine2=" ~~~~~~~~">
772 <location
773 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
774 line="96"
775 column="24"/>
776 </issue>
777
778 <issue
779 id="SyntheticAccessor"
780 message="Access to `private` field `mLoadingEmptyContainer` of class `ArtistDetailFragment` requires synthetic accessor"
781 errorLine1=" mLoadingEmptyContainer.showLoading();"
782 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
783 <location
784 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
785 line="78"
786 column="21"/>
787 </issue>
788
789 <issue
790 id="SyntheticAccessor"
791 message="Access to `private` field `mLoadingEmptyContainer` of class `ArtistDetailFragment` requires synthetic accessor"
792 errorLine1=" mLoadingEmptyContainer.setVisibility(View.GONE);"
793 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
794 <location
795 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
796 line="96"
797 column="21"/>
798 </issue>
799
800 <issue
801 id="SyntheticAccessor"
802 message="Access to `private` field `mSongAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
803 errorLine1=" handler.post(() -> mSongAdapter.setData(data));"
804 errorLine2=" ~~~~~~~~~~~~">
805 <location
806 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
807 line="98"
808 column="40"/>
809 </issue>
810
811 <issue
812 id="SyntheticAccessor"
813 message="Access to `private` field `mSongAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
814 errorLine1=" mSongAdapter.unload();"
815 errorLine2=" ~~~~~~~~~~~~">
816 <location
817 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
818 line="103"
819 column="21"/>
820 </issue>
821
822 <issue
823 id="SyntheticAccessor"
824 message="Access to `private` field `mAlbumAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
825 errorLine1=" handler.post(() -> mAlbumAdapter.setData(data));"
826 errorLine2=" ~~~~~~~~~~~~~">
827 <location
828 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
829 line="125"
830 column="40"/>
831 </issue>
832
833 <issue
834 id="SyntheticAccessor"
835 message="Access to `private` field `mAlbumAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
836 errorLine1=" mAlbumAdapter.unload();"
837 errorLine2=" ~~~~~~~~~~~~~">
838 <location
839 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
840 line="130"
841 column="21"/>
842 </issue>
843
844 <issue
845 id="SyntheticAccessor"
846 message="Access to `private` field `mArtistId` of class `ArtistDetailFragment` requires synthetic accessor"
847 errorLine1=" return new Artist(mArtistId, mArtistName, 0, 0);"
848 errorLine2=" ~~~~~~~~~">
849 <location
850 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
851 line="174"
852 column="35"/>
853 </issue>
854
855 <issue
856 id="SyntheticAccessor"
857 message="Access to `private` field `mArtistName` of class `ArtistDetailFragment` requires synthetic accessor"
858 errorLine1=" return new Artist(mArtistId, mArtistName, 0, 0);"
859 errorLine2=" ~~~~~~~~~~~">
860 <location
861 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
862 line="174"
863 column="46"/>
864 </issue>
865
866 <issue
867 id="SyntheticAccessor"
868 message="Access to `private` field `mHero` of class `ArtistDetailFragment` requires synthetic accessor"
869 errorLine1=" mHero.getViewTreeObserver().removeOnGlobalLayoutListener(this);"
870 errorLine2=" ~~~~~">
871 <location
872 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
873 line="200"
874 column="25"/>
875 </issue>
876
877 <issue
878 id="SyntheticAccessor"
879 message="Access to `private` field `mArtistName` of class `ArtistDetailFragment` requires synthetic accessor"
880 errorLine1=" loadArtistImage(mArtistName, mHero, true);"
881 errorLine2=" ~~~~~~~~~~~">
882 <location
883 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
884 line="202"
885 column="49"/>
886 </issue>
887
888 <issue
889 id="SyntheticAccessor"
890 message="Access to `private` field `mHero` of class `ArtistDetailFragment` requires synthetic accessor"
891 errorLine1=" loadArtistImage(mArtistName, mHero, true);"
892 errorLine2=" ~~~~~">
893 <location
894 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
895 line="202"
896 column="62"/>
897 </issue>
898
899 <issue
900 id="SyntheticAccessor"
901 message="Access to `private` field `mSongAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
902 errorLine1=" return mSongAdapter.getItem(position);"
903 errorLine2=" ~~~~~~~~~~~~">
904 <location
905 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
906 line="234"
907 column="24"/>
908 </issue>
909
910 <issue
911 id="SyntheticAccessor"
912 message="Access to `private` field `mAlbumAdapter` of class `ArtistDetailFragment` requires synthetic accessor"
913 errorLine1=" return mAlbumAdapter.getItem(position);"
914 errorLine2=" ~~~~~~~~~~~~~">
915 <location
916 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
917 line="259"
918 column="24"/>
919 </issue>
920
921 <issue
922 id="SyntheticAccessor"
923 message="Access to `private` field `mAdapter` of class `ArtistFragment` requires synthetic accessor"
924 errorLine1=" return mAdapter.getItem(position);"
925 errorLine2=" ~~~~~~~~">
926 <location
927 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
928 line="108"
929 column="24"/>
930 </issue>
931
932 <issue
933 id="SyntheticAccessor"
934 message="Access to `private` field `TAG` of class `AudioPlayerFragment` requires synthetic accessor"
935 errorLine1=" Log.w(TAG, &quot;Unexpected page position of &quot; + position"
936 errorLine2=" ~~~">
937 <location
938 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
939 line="377"
940 column="27"/>
941 </issue>
942
943 <issue
944 id="SyntheticAccessor"
945 message="Access to `private` method `refreshCurrentTime` of class `AudioPlayerFragment` requires synthetic accessor"
946 errorLine1=" final long next = mAudioPlayer.get().refreshCurrentTime();"
947 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
948 <location
949 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
950 line="553"
951 column="35"/>
952 </issue>
953
954 <issue
955 id="SyntheticAccessor"
956 message="Access to `private` method `queueNextRefresh` of class `AudioPlayerFragment` requires synthetic accessor"
957 errorLine1=" mAudioPlayer.get().queueNextRefresh(next);"
958 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
959 <location
960 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
961 line="554"
962 column="17"/>
963 </issue>
964
965 <issue
966 id="SyntheticAccessor"
967 message="Access to `private` method `createAndSetAdapter` of class `AudioPlayerFragment` requires synthetic accessor"
968 errorLine1=" mReference.get().createAndSetAdapter();"
969 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
970 <location
971 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
972 line="584"
973 column="21"/>
974 </issue>
975
976 <issue
977 id="SyntheticAccessor"
978 message="Access to `private` method `updateNowPlayingInfo` of class `AudioPlayerFragment` requires synthetic accessor"
979 errorLine1=" audioPlayerFragment.updateNowPlayingInfo();"
980 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
981 <location
982 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
983 line="588"
984 column="17"/>
985 </issue>
986
987 <issue
988 id="SyntheticAccessor"
989 message="Access to `private` field `mMainPlaybackControls` of class `AudioPlayerFragment` requires synthetic accessor"
990 errorLine1=" audioPlayerFragment.mMainPlaybackControls.updatePlayPauseState();"
991 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
992 <location
993 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
994 line="590"
995 column="37"/>
996 </issue>
997
998 <issue
999 id="SyntheticAccessor"
1000 message="Access to `private` field `mVisualizerView` of class `AudioPlayerFragment` requires synthetic accessor"
1001 errorLine1=" audioPlayerFragment.mVisualizerView.setPlaying(MusicUtils.isPlaying());"
1002 errorLine2=" ~~~~~~~~~~~~~~~">
1003 <location
1004 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
1005 line="591"
1006 column="37"/>
1007 </issue>
1008
1009 <issue
1010 id="SyntheticAccessor"
1011 message="Access to `private` field `mMainPlaybackControls` of class `AudioPlayerFragment` requires synthetic accessor"
1012 errorLine1=" audioPlayerFragment.mMainPlaybackControls.updateRepeatState();"
1013 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
1014 <location
1015 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
1016 line="595"
1017 column="37"/>
1018 </issue>
1019
1020 <issue
1021 id="SyntheticAccessor"
1022 message="Access to `private` field `mMainPlaybackControls` of class `AudioPlayerFragment` requires synthetic accessor"
1023 errorLine1=" audioPlayerFragment.mMainPlaybackControls.updateShuffleState();"
1024 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
1025 <location
1026 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
1027 line="597"
1028 column="37"/>
1029 </issue>
1030
1031 <issue
1032 id="SyntheticAccessor"
1033 message="Access to `private` method `createAndSetAdapter` of class `AudioPlayerFragment` requires synthetic accessor"
1034 errorLine1=" audioPlayerFragment.createAndSetAdapter();"
1035 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1036 <location
1037 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
1038 line="600"
1039 column="17"/>
1040 </issue>
1041
1042 <issue
1043 id="SyntheticAccessor"
1044 message="Access to `private` method `createAndSetAdapter` of class `AudioPlayerFragment` requires synthetic accessor"
1045 errorLine1=" audioPlayerFragment.createAndSetAdapter();"
1046 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1047 <location
1048 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
1049 line="603"
1050 column="17"/>
1051 </issue>
1052
1053 <issue
1054 id="SyntheticAccessor"
1055 message="Access to `private` method `pausePlayback` of class `AudioPreviewActivity` requires synthetic accessor"
1056 errorLine1=" pausePlayback();"
1057 errorLine2=" ~~~~~~~~~~~~~">
1058 <location
1059 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
1060 line="160"
1061 column="21"/>
1062 </issue>
1063
1064 <issue
1065 id="SyntheticAccessor"
1066 message="Access to `private` method `onQueryComplete` of class `AudioPreviewActivity` requires synthetic accessor"
1067 errorLine1=" AudioPreviewActivity.this.onQueryComplete(token, cursor);"
1068 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1069 <location
1070 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
1071 line="225"
1072 column="17"/>
1073 </issue>
1074
1075 <issue
1076 id="SyntheticAccessor"
1077 message="Access to `private` field `mPlayPauseButtonContainer` of class `BaseActivity` requires synthetic accessor"
1078 errorLine1=" baseActivity.mPlayPauseButtonContainer.updateState();"
1079 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
1080 <location
1081 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
1082 line="361"
1083 column="30"/>
1084 </issue>
1085
1086 <issue
1087 id="SyntheticAccessor"
1088 message="Access to `private` field `mPlayPauseProgressButton` of class `BaseActivity` requires synthetic accessor"
1089 errorLine1=" baseActivity.mPlayPauseProgressButton.updateState();"
1090 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
1091 <location
1092 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
1093 line="362"
1094 column="30"/>
1095 </issue>
1096
1097 <issue
1098 id="SyntheticAccessor"
1099 message="Access to `private` field `journalWriter` of class `DiskLruCache` requires synthetic accessor"
1100 errorLine1=" if (journalWriter == null) {"
1101 errorLine2=" ~~~~~~~~~~~~~">
1102 <location
1103 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1104 line="170"
1105 column="21"/>
1106 </issue>
1107
1108 <issue
1109 id="SyntheticAccessor"
1110 message="Access to `private` method `trimToSize` of class `DiskLruCache` requires synthetic accessor"
1111 errorLine1=" trimToSize();"
1112 errorLine2=" ~~~~~~~~~~">
1113 <location
1114 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1115 line="173"
1116 column="17"/>
1117 </issue>
1118
1119 <issue
1120 id="SyntheticAccessor"
1121 message="Access to `private` method `journalRebuildRequired` of class `DiskLruCache` requires synthetic accessor"
1122 errorLine1=" if (journalRebuildRequired()) {"
1123 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
1124 <location
1125 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1126 line="174"
1127 column="21"/>
1128 </issue>
1129
1130 <issue
1131 id="SyntheticAccessor"
1132 message="Access to `private` method `rebuildJournal` of class `DiskLruCache` requires synthetic accessor"
1133 errorLine1=" rebuildJournal();"
1134 errorLine2=" ~~~~~~~~~~~~~~">
1135 <location
1136 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1137 line="175"
1138 column="21"/>
1139 </issue>
1140
1141 <issue
1142 id="SyntheticAccessor"
1143 message="Access to `private` field `redundantOpCount` of class `DiskLruCache` requires synthetic accessor"
1144 errorLine1=" redundantOpCount = 0;"
1145 errorLine2=" ~~~~~~~~~~~~~~~~">
1146 <location
1147 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1148 line="176"
1149 column="21"/>
1150 </issue>
1151
1152 <issue
1153 id="SyntheticAccessor"
1154 message="Access to `private` constructor of class `Entry` requires synthetic accessor"
1155 errorLine1=" entry = new Entry(key);"
1156 errorLine2=" ~~~~~~~~~~~~~~">
1157 <location
1158 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1159 line="312"
1160 column="21"/>
1161 </issue>
1162
1163 <issue
1164 id="SyntheticAccessor"
1165 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1166 errorLine1=" entry.readable = true;"
1167 errorLine2=" ~~~~~~~~">
1168 <location
1169 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1170 line="318"
1171 column="19"/>
1172 </issue>
1173
1174 <issue
1175 id="SyntheticAccessor"
1176 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1177 errorLine1=" entry.currentEditor = null;"
1178 errorLine2=" ~~~~~~~~~~~~~">
1179 <location
1180 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1181 line="319"
1182 column="19"/>
1183 </issue>
1184
1185 <issue
1186 id="SyntheticAccessor"
1187 message="Access to `private` method `setLengths` of class `Entry` requires synthetic accessor"
1188 errorLine1=" entry.setLengths(parts);"
1189 errorLine2=" ~~~~~~~~~~~~~~~~">
1190 <location
1191 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1192 line="320"
1193 column="13"/>
1194 </issue>
1195
1196 <issue
1197 id="SyntheticAccessor"
1198 message="Access to `private` constructor of class `Editor` requires synthetic accessor"
1199 errorLine1=" entry.currentEditor = new Editor(entry);"
1200 errorLine2=" ~~~~~~~~~~~~~~~~~">
1201 <location
1202 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1203 line="322"
1204 column="35"/>
1205 </issue>
1206
1207 <issue
1208 id="SyntheticAccessor"
1209 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1210 errorLine1=" entry.currentEditor = new Editor(entry);"
1211 errorLine2=" ~~~~~~~~~~~~~">
1212 <location
1213 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1214 line="322"
1215 column="19"/>
1216 </issue>
1217
1218 <issue
1219 id="SyntheticAccessor"
1220 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1221 errorLine1=" if (entry.currentEditor == null) {"
1222 errorLine2=" ~~~~~~~~~~~~~">
1223 <location
1224 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1225 line="338"
1226 column="23"/>
1227 </issue>
1228
1229 <issue
1230 id="SyntheticAccessor"
1231 message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
1232 errorLine1=" size += entry.lengths[t];"
1233 errorLine2=" ~~~~~~~">
1234 <location
1235 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1236 line="340"
1237 column="35"/>
1238 </issue>
1239
1240 <issue
1241 id="SyntheticAccessor"
1242 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1243 errorLine1=" entry.currentEditor = null;"
1244 errorLine2=" ~~~~~~~~~~~~~">
1245 <location
1246 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1247 line="343"
1248 column="23"/>
1249 </issue>
1250
1251 <issue
1252 id="SyntheticAccessor"
1253 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1254 errorLine1=" if (entry.currentEditor != null) {"
1255 errorLine2=" ~~~~~~~~~~~~~">
1256 <location
1257 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1258 line="375"
1259 column="27"/>
1260 </issue>
1261
1262 <issue
1263 id="SyntheticAccessor"
1264 message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
1265 errorLine1=" writer.write(DIRTY + &apos; &apos; + entry.key + &apos;\n&apos;);"
1266 errorLine2=" ~~~">
1267 <location
1268 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1269 line="376"
1270 column="54"/>
1271 </issue>
1272
1273 <issue
1274 id="SyntheticAccessor"
1275 message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
1276 errorLine1=" writer.write(CLEAN + &apos; &apos; + entry.key + entry.getLengths() + &apos;\n&apos;);"
1277 errorLine2=" ~~~">
1278 <location
1279 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1280 line="378"
1281 column="54"/>
1282 </issue>
1283
1284 <issue
1285 id="SyntheticAccessor"
1286 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1287 errorLine1=" if (!entry.readable) {"
1288 errorLine2=" ~~~~~~~~">
1289 <location
1290 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1291 line="422"
1292 column="20"/>
1293 </issue>
1294
1295 <issue
1296 id="SyntheticAccessor"
1297 message="Access to `private` constructor of class `Snapshot` requires synthetic accessor"
1298 errorLine1=" return new Snapshot(ins);"
1299 errorLine2=" ~~~~~~~~~~~~~~~~~">
1300 <location
1301 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1302 line="452"
1303 column="16"/>
1304 </issue>
1305
1306 <issue
1307 id="SyntheticAccessor"
1308 message="Access to `private` field `sequenceNumber` of class `Entry` requires synthetic accessor"
1309 errorLine1=" || entry.sequenceNumber != expectedSequenceNumber)) {"
1310 errorLine2=" ~~~~~~~~~~~~~~">
1311 <location
1312 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1313 line="468"
1314 column="26"/>
1315 </issue>
1316
1317 <issue
1318 id="SyntheticAccessor"
1319 message="Access to `private` constructor of class `Entry` requires synthetic accessor"
1320 errorLine1=" entry = new Entry(key);"
1321 errorLine2=" ~~~~~~~~~~~~~~">
1322 <location
1323 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1324 line="472"
1325 column="21"/>
1326 </issue>
1327
1328 <issue
1329 id="SyntheticAccessor"
1330 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1331 errorLine1=" } else if (entry.currentEditor != null) {"
1332 errorLine2=" ~~~~~~~~~~~~~">
1333 <location
1334 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1335 line="474"
1336 column="26"/>
1337 </issue>
1338
1339 <issue
1340 id="SyntheticAccessor"
1341 message="Access to `private` constructor of class `Editor` requires synthetic accessor"
1342 errorLine1=" Editor editor = new Editor(entry);"
1343 errorLine2=" ~~~~~~~~~~~~~~~~~">
1344 <location
1345 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1346 line="478"
1347 column="25"/>
1348 </issue>
1349
1350 <issue
1351 id="SyntheticAccessor"
1352 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1353 errorLine1=" entry.currentEditor = editor;"
1354 errorLine2=" ~~~~~~~~~~~~~">
1355 <location
1356 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1357 line="479"
1358 column="15"/>
1359 </issue>
1360
1361 <issue
1362 id="SyntheticAccessor"
1363 message="Access to `private` field `entry` of class `Editor` requires synthetic accessor"
1364 errorLine1=" Entry entry = editor.entry;"
1365 errorLine2=" ~~~~~">
1366 <location
1367 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1368 line="488"
1369 column="30"/>
1370 </issue>
1371
1372 <issue
1373 id="SyntheticAccessor"
1374 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1375 errorLine1=" if (entry.currentEditor != editor) {"
1376 errorLine2=" ~~~~~~~~~~~~~">
1377 <location
1378 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1379 line="489"
1380 column="19"/>
1381 </issue>
1382
1383 <issue
1384 id="SyntheticAccessor"
1385 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1386 errorLine1=" if (success &amp;&amp; !entry.readable) {"
1387 errorLine2=" ~~~~~~~~">
1388 <location
1389 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1390 line="494"
1391 column="31"/>
1392 </issue>
1393
1394 <issue
1395 id="SyntheticAccessor"
1396 message="Access to `private` field `written` of class `Editor` requires synthetic accessor"
1397 errorLine1=" if (!editor.written[i]) {"
1398 errorLine2=" ~~~~~~~">
1399 <location
1400 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1401 line="496"
1402 column="29"/>
1403 </issue>
1404
1405 <issue
1406 id="SyntheticAccessor"
1407 message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
1408 errorLine1=" long oldLength = entry.lengths[i];"
1409 errorLine2=" ~~~~~~~">
1410 <location
1411 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1412 line="514"
1413 column="44"/>
1414 </issue>
1415
1416 <issue
1417 id="SyntheticAccessor"
1418 message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
1419 errorLine1=" entry.lengths[i] = newLength;"
1420 errorLine2=" ~~~~~~~">
1421 <location
1422 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1423 line="516"
1424 column="27"/>
1425 </issue>
1426
1427 <issue
1428 id="SyntheticAccessor"
1429 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1430 errorLine1=" entry.currentEditor = null;"
1431 errorLine2=" ~~~~~~~~~~~~~">
1432 <location
1433 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1434 line="525"
1435 column="15"/>
1436 </issue>
1437
1438 <issue
1439 id="SyntheticAccessor"
1440 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1441 errorLine1=" if (entry.readable | success) {"
1442 errorLine2=" ~~~~~~~~">
1443 <location
1444 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1445 line="526"
1446 column="19"/>
1447 </issue>
1448
1449 <issue
1450 id="SyntheticAccessor"
1451 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1452 errorLine1=" entry.readable = true;"
1453 errorLine2=" ~~~~~~~~">
1454 <location
1455 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1456 line="527"
1457 column="19"/>
1458 </issue>
1459
1460 <issue
1461 id="SyntheticAccessor"
1462 message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
1463 errorLine1=" journalWriter.write(CLEAN + &apos; &apos; + entry.key + entry.getLengths() + &apos;\n&apos;);"
1464 errorLine2=" ~~~">
1465 <location
1466 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1467 line="528"
1468 column="53"/>
1469 </issue>
1470
1471 <issue
1472 id="SyntheticAccessor"
1473 message="Access to `private` field `sequenceNumber` of class `Entry` requires synthetic accessor"
1474 errorLine1=" entry.sequenceNumber = nextSequenceNumber++;"
1475 errorLine2=" ~~~~~~~~~~~~~~">
1476 <location
1477 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1478 line="530"
1479 column="23"/>
1480 </issue>
1481
1482 <issue
1483 id="SyntheticAccessor"
1484 message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
1485 errorLine1=" lruEntries.remove(entry.key);"
1486 errorLine2=" ~~~">
1487 <location
1488 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1489 line="533"
1490 column="37"/>
1491 </issue>
1492
1493 <issue
1494 id="SyntheticAccessor"
1495 message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
1496 errorLine1=" journalWriter.write(REMOVE + &apos; &apos; + entry.key + &apos;\n&apos;);"
1497 errorLine2=" ~~~">
1498 <location
1499 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1500 line="534"
1501 column="54"/>
1502 </issue>
1503
1504 <issue
1505 id="SyntheticAccessor"
1506 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1507 errorLine1=" if (entry == null || entry.currentEditor != null) {"
1508 errorLine2=" ~~~~~~~~~~~~~">
1509 <location
1510 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1511 line="564"
1512 column="36"/>
1513 </issue>
1514
1515 <issue
1516 id="SyntheticAccessor"
1517 message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
1518 errorLine1=" size -= entry.lengths[i];"
1519 errorLine2=" ~~~~~~~">
1520 <location
1521 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1522 line="573"
1523 column="27"/>
1524 </issue>
1525
1526 <issue
1527 id="SyntheticAccessor"
1528 message="Access to `private` field `lengths` of class `Entry` requires synthetic accessor"
1529 errorLine1=" entry.lengths[i] = 0;"
1530 errorLine2=" ~~~~~~~">
1531 <location
1532 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1533 line="574"
1534 column="19"/>
1535 </issue>
1536
1537 <issue
1538 id="SyntheticAccessor"
1539 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1540 errorLine1=" if (entry.currentEditor != null) {"
1541 errorLine2=" ~~~~~~~~~~~~~">
1542 <location
1543 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1544 line="618"
1545 column="23"/>
1546 </issue>
1547
1548 <issue
1549 id="SyntheticAccessor"
1550 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1551 errorLine1=" entry.currentEditor.abort();"
1552 errorLine2=" ~~~~~~~~~~~~~">
1553 <location
1554 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1555 line="619"
1556 column="23"/>
1557 </issue>
1558
1559 <issue
1560 id="SyntheticAccessor"
1561 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1562 errorLine1=" this.written = (entry.readable) ? null : new boolean[valueCount];"
1563 errorLine2=" ~~~~~~~~">
1564 <location
1565 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1566 line="693"
1567 column="35"/>
1568 </issue>
1569
1570 <issue
1571 id="SyntheticAccessor"
1572 message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
1573 errorLine1=" this.written = (entry.readable) ? null : new boolean[valueCount];"
1574 errorLine2=" ~~~~~~~~~~">
1575 <location
1576 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1577 line="693"
1578 column="66"/>
1579 </issue>
1580
1581 <issue
1582 id="SyntheticAccessor"
1583 message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
1584 errorLine1=" if (index &lt; 0 || index >= valueCount) {"
1585 errorLine2=" ~~~~~~~~~~">
1586 <location
1587 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1588 line="704"
1589 column="39"/>
1590 </issue>
1591
1592 <issue
1593 id="SyntheticAccessor"
1594 message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
1595 errorLine1=" + &quot;of &quot; + valueCount);"
1596 errorLine2=" ~~~~~~~~~~">
1597 <location
1598 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1599 line="707"
1600 column="35"/>
1601 </issue>
1602
1603 <issue
1604 id="SyntheticAccessor"
1605 message="Access to `private` field `currentEditor` of class `Entry` requires synthetic accessor"
1606 errorLine1=" if (entry.currentEditor != this) {"
1607 errorLine2=" ~~~~~~~~~~~~~">
1608 <location
1609 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1610 line="710"
1611 column="27"/>
1612 </issue>
1613
1614 <issue
1615 id="SyntheticAccessor"
1616 message="Access to `private` field `readable` of class `Entry` requires synthetic accessor"
1617 errorLine1=" if (!entry.readable) {"
1618 errorLine2=" ~~~~~~~~">
1619 <location
1620 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1621 line="713"
1622 column="28"/>
1623 </issue>
1624
1625 <issue
1626 id="SyntheticAccessor"
1627 message="Access to `private` field `directory` of class `DiskLruCache` requires synthetic accessor"
1628 errorLine1=" directory.mkdirs();"
1629 errorLine2=" ~~~~~~~~~">
1630 <location
1631 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1632 line="723"
1633 column="21"/>
1634 </issue>
1635
1636 <issue
1637 id="SyntheticAccessor"
1638 message="Access to `private` field `NULL_OUTPUT_STREAM` of class `DiskLruCache` requires synthetic accessor"
1639 errorLine1=" return NULL_OUTPUT_STREAM;"
1640 errorLine2=" ~~~~~~~~~~~~~~~~~~">
1641 <location
1642 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1643 line="728"
1644 column="32"/>
1645 </issue>
1646
1647 <issue
1648 id="SyntheticAccessor"
1649 message="Access to `private` constructor of class `FaultHidingOutputStream` requires synthetic accessor"
1650 errorLine1=" return new FaultHidingOutputStream(outputStream);"
1651 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
1652 <location
1653 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1654 line="731"
1655 column="24"/>
1656 </issue>
1657
1658 <issue
1659 id="SyntheticAccessor"
1660 message="Access to `private` method `completeEdit` of class `DiskLruCache` requires synthetic accessor"
1661 errorLine1=" completeEdit(this, false);"
1662 errorLine2=" ~~~~~~~~~~~~">
1663 <location
1664 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1665 line="741"
1666 column="17"/>
1667 </issue>
1668
1669 <issue
1670 id="SyntheticAccessor"
1671 message="Access to `private` field `key` of class `Entry` requires synthetic accessor"
1672 errorLine1=" remove(entry.key); // The previous entry is stale."
1673 errorLine2=" ~~~">
1674 <location
1675 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1676 line="742"
1677 column="30"/>
1678 </issue>
1679
1680 <issue
1681 id="SyntheticAccessor"
1682 message="Access to `private` method `completeEdit` of class `DiskLruCache` requires synthetic accessor"
1683 errorLine1=" completeEdit(this, true);"
1684 errorLine2=" ~~~~~~~~~~~~">
1685 <location
1686 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1687 line="744"
1688 column="17"/>
1689 </issue>
1690
1691 <issue
1692 id="SyntheticAccessor"
1693 message="Access to `private` method `completeEdit` of class `DiskLruCache` requires synthetic accessor"
1694 errorLine1=" completeEdit(this, false);"
1695 errorLine2=" ~~~~~~~~~~~~">
1696 <location
1697 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1698 line="753"
1699 column="13"/>
1700 </issue>
1701
1702 <issue
1703 id="SyntheticAccessor"
1704 message="Access to `private` field `hasErrors` of class `Editor` requires synthetic accessor"
1705 errorLine1=" hasErrors = true;"
1706 errorLine2=" ~~~~~~~~~">
1707 <location
1708 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1709 line="766"
1710 column="21"/>
1711 </issue>
1712
1713 <issue
1714 id="SyntheticAccessor"
1715 message="Access to `private` field `hasErrors` of class `Editor` requires synthetic accessor"
1716 errorLine1=" hasErrors = true;"
1717 errorLine2=" ~~~~~~~~~">
1718 <location
1719 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1720 line="775"
1721 column="21"/>
1722 </issue>
1723
1724 <issue
1725 id="SyntheticAccessor"
1726 message="Access to `private` field `hasErrors` of class `Editor` requires synthetic accessor"
1727 errorLine1=" hasErrors = true;"
1728 errorLine2=" ~~~~~~~~~">
1729 <location
1730 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1731 line="784"
1732 column="21"/>
1733 </issue>
1734
1735 <issue
1736 id="SyntheticAccessor"
1737 message="Access to `private` field `hasErrors` of class `Editor` requires synthetic accessor"
1738 errorLine1=" hasErrors = true;"
1739 errorLine2=" ~~~~~~~~~">
1740 <location
1741 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1742 line="793"
1743 column="21"/>
1744 </issue>
1745
1746 <issue
1747 id="SyntheticAccessor"
1748 message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
1749 errorLine1=" this.lengths = new long[valueCount];"
1750 errorLine2=" ~~~~~~~~~~">
1751 <location
1752 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1753 line="824"
1754 column="37"/>
1755 </issue>
1756
1757 <issue
1758 id="SyntheticAccessor"
1759 message="Access to `private` field `valueCount` of class `DiskLruCache` requires synthetic accessor"
1760 errorLine1=" if (strings.length != valueCount) {"
1761 errorLine2=" ~~~~~~~~~~">
1762 <location
1763 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1764 line="839"
1765 column="35"/>
1766 </issue>
1767
1768 <issue
1769 id="SyntheticAccessor"
1770 message="Access to `private` field `directory` of class `DiskLruCache` requires synthetic accessor"
1771 errorLine1=" return new File(directory, key + &quot;.&quot; + i);"
1772 errorLine2=" ~~~~~~~~~">
1773 <location
1774 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1775 line="857"
1776 column="29"/>
1777 </issue>
1778
1779 <issue
1780 id="SyntheticAccessor"
1781 message="Access to `private` field `directory` of class `DiskLruCache` requires synthetic accessor"
1782 errorLine1=" return new File(directory, key + &quot;.&quot; + i + &quot;.tmp&quot;);"
1783 errorLine2=" ~~~~~~~~~">
1784 <location
1785 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
1786 line="861"
1787 column="29"/>
1788 </issue>
1789
1790 <issue
1791 id="SyntheticAccessor"
1792 message="Access to `private` method `updateVisualizerColor` of class `HomeActivity` requires synthetic accessor"
1793 errorLine1=" updateVisualizerColor(bmc != null"
1794 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
1795 <location
1796 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
1797 line="235"
1798 column="21"/>
1799 </issue>
1800
1801 <issue
1802 id="SyntheticAccessor"
1803 message="Access to `private` method `updateStatusBarColor` of class `HomeActivity` requires synthetic accessor"
1804 errorLine1=" updateStatusBarColor(bmc != null"
1805 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
1806 <location
1807 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
1808 line="237"
1809 column="21"/>
1810 </issue>
1811
1812 <issue
1813 id="SyntheticAccessor"
1814 message="Access to `private` method `initDiskCache` of class `ImageCache` requires synthetic accessor"
1815 errorLine1=" initDiskCache(context);"
1816 errorLine2=" ~~~~~~~~~~~~~">
1817 <location
1818 file="src/org/lineageos/eleven/cache/ImageCache.java"
1819 line="139"
1820 column="17"/>
1821 </issue>
1822
1823 <issue
1824 id="SyntheticAccessor"
1825 message="Access to `private` field `mLruCache` of class `ImageCache` requires synthetic accessor"
1826 errorLine1=" mLruCache.trimToSize(mLruCache.size() / 2);"
1827 errorLine2=" ~~~~~~~~~">
1828 <location
1829 file="src/org/lineageos/eleven/cache/ImageCache.java"
1830 line="191"
1831 column="21"/>
1832 </issue>
1833
1834 <issue
1835 id="SyntheticAccessor"
1836 message="Access to `private` field `mLruCache` of class `ImageCache` requires synthetic accessor"
1837 errorLine1=" mLruCache.trimToSize(mLruCache.size() / 2);"
1838 errorLine2=" ~~~~~~~~~">
1839 <location
1840 file="src/org/lineageos/eleven/cache/ImageCache.java"
1841 line="191"
1842 column="42"/>
1843 </issue>
1844
1845 <issue
1846 id="SyntheticAccessor"
1847 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1848 errorLine1=" if (mDiskCache != null) {"
1849 errorLine2=" ~~~~~~~~~~">
1850 <location
1851 file="src/org/lineageos/eleven/cache/ImageCache.java"
1852 line="475"
1853 column="21"/>
1854 </issue>
1855
1856 <issue
1857 id="SyntheticAccessor"
1858 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1859 errorLine1=" if (!mDiskCache.isClosed()) {"
1860 errorLine2=" ~~~~~~~~~~">
1861 <location
1862 file="src/org/lineageos/eleven/cache/ImageCache.java"
1863 line="477"
1864 column="30"/>
1865 </issue>
1866
1867 <issue
1868 id="SyntheticAccessor"
1869 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1870 errorLine1=" mDiskCache.flush();"
1871 errorLine2=" ~~~~~~~~~~">
1872 <location
1873 file="src/org/lineageos/eleven/cache/ImageCache.java"
1874 line="478"
1875 column="29"/>
1876 </issue>
1877
1878 <issue
1879 id="SyntheticAccessor"
1880 message="Access to `private` field `TAG` of class `ImageCache` requires synthetic accessor"
1881 errorLine1=" Log.e(TAG, &quot;flush&quot;, e);"
1882 errorLine2=" ~~~">
1883 <location
1884 file="src/org/lineageos/eleven/cache/ImageCache.java"
1885 line="481"
1886 column="31"/>
1887 </issue>
1888
1889 <issue
1890 id="SyntheticAccessor"
1891 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1892 errorLine1=" if (mDiskCache != null) {"
1893 errorLine2=" ~~~~~~~~~~">
1894 <location
1895 file="src/org/lineageos/eleven/cache/ImageCache.java"
1896 line="499"
1897 column="25"/>
1898 </issue>
1899
1900 <issue
1901 id="SyntheticAccessor"
1902 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1903 errorLine1=" mDiskCache.delete();"
1904 errorLine2=" ~~~~~~~~~~">
1905 <location
1906 file="src/org/lineageos/eleven/cache/ImageCache.java"
1907 line="500"
1908 column="25"/>
1909 </issue>
1910
1911 <issue
1912 id="SyntheticAccessor"
1913 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1914 errorLine1=" mDiskCache = null;"
1915 errorLine2=" ~~~~~~~~~~">
1916 <location
1917 file="src/org/lineageos/eleven/cache/ImageCache.java"
1918 line="501"
1919 column="25"/>
1920 </issue>
1921
1922 <issue
1923 id="SyntheticAccessor"
1924 message="Access to `private` field `TAG` of class `ImageCache` requires synthetic accessor"
1925 errorLine1=" Log.e(TAG, &quot;clearCaches&quot;, e);"
1926 errorLine2=" ~~~">
1927 <location
1928 file="src/org/lineageos/eleven/cache/ImageCache.java"
1929 line="504"
1930 column="27"/>
1931 </issue>
1932
1933 <issue
1934 id="SyntheticAccessor"
1935 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1936 errorLine1=" if (mDiskCache != null) {"
1937 errorLine2=" ~~~~~~~~~~">
1938 <location
1939 file="src/org/lineageos/eleven/cache/ImageCache.java"
1940 line="523"
1941 column="21"/>
1942 </issue>
1943
1944 <issue
1945 id="SyntheticAccessor"
1946 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1947 errorLine1=" if (!mDiskCache.isClosed()) {"
1948 errorLine2=" ~~~~~~~~~~">
1949 <location
1950 file="src/org/lineageos/eleven/cache/ImageCache.java"
1951 line="525"
1952 column="30"/>
1953 </issue>
1954
1955 <issue
1956 id="SyntheticAccessor"
1957 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1958 errorLine1=" mDiskCache.close();"
1959 errorLine2=" ~~~~~~~~~~">
1960 <location
1961 file="src/org/lineageos/eleven/cache/ImageCache.java"
1962 line="526"
1963 column="29"/>
1964 </issue>
1965
1966 <issue
1967 id="SyntheticAccessor"
1968 message="Access to `private` field `mDiskCache` of class `ImageCache` requires synthetic accessor"
1969 errorLine1=" mDiskCache = null;"
1970 errorLine2=" ~~~~~~~~~~">
1971 <location
1972 file="src/org/lineageos/eleven/cache/ImageCache.java"
1973 line="527"
1974 column="29"/>
1975 </issue>
1976
1977 <issue
1978 id="SyntheticAccessor"
1979 message="Access to `private` field `TAG` of class `ImageCache` requires synthetic accessor"
1980 errorLine1=" Log.e(TAG, &quot;close&quot;, e);"
1981 errorLine2=" ~~~">
1982 <location
1983 file="src/org/lineageos/eleven/cache/ImageCache.java"
1984 line="530"
1985 column="31"/>
1986 </issue>
1987
1988 <issue
1989 id="SyntheticAccessor"
1990 message="Access to `private` field `CHINESE_LANGUAGE` of class `LocaleSet` requires synthetic accessor"
1991 errorLine1=" return CHINESE_LANGUAGE.equals(language) ||"
1992 errorLine2=" ~~~~~~~~~~~~~~~~">
1993 <location
1994 file="src/org/lineageos/eleven/locale/LocaleSet.java"
1995 line="37"
1996 column="20"/>
1997 </issue>
1998
1999 <issue
2000 id="SyntheticAccessor"
2001 message="Access to `private` field `JAPANESE_LANGUAGE` of class `LocaleSet` requires synthetic accessor"
2002 errorLine1=" JAPANESE_LANGUAGE.equals(language) ||"
2003 errorLine2=" ~~~~~~~~~~~~~~~~~">
2004 <location
2005 file="src/org/lineageos/eleven/locale/LocaleSet.java"
2006 line="38"
2007 column="21"/>
2008 </issue>
2009
2010 <issue
2011 id="SyntheticAccessor"
2012 message="Access to `private` field `KOREAN_LANGUAGE` of class `LocaleSet` requires synthetic accessor"
2013 errorLine1=" KOREAN_LANGUAGE.equals(language);"
2014 errorLine2=" ~~~~~~~~~~~~~~~">
2015 <location
2016 file="src/org/lineageos/eleven/locale/LocaleSet.java"
2017 line="39"
2018 column="21"/>
2019 </issue>
2020
2021 <issue
2022 id="SyntheticAccessor"
2023 message="Access to `private` field `mLocaleSetManager` of class `LocalizedStore` requires synthetic accessor"
2024 errorLine1=" if (msg.what == LOCALE_CHANGED &amp;&amp; mLocaleSetManager.localeSetNeedsUpdate()) {"
2025 errorLine2=" ~~~~~~~~~~~~~~~~~">
2026 <location
2027 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
2028 line="98"
2029 column="51"/>
2030 </issue>
2031
2032 <issue
2033 id="SyntheticAccessor"
2034 message="Access to `private` field `mLocaleSetManager` of class `LocalizedStore` requires synthetic accessor"
2035 errorLine1=" rebuildLocaleData(mLocaleSetManager.getSystemLocaleSet());"
2036 errorLine2=" ~~~~~~~~~~~~~~~~~">
2037 <location
2038 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
2039 line="99"
2040 column="39"/>
2041 </issue>
2042
2043 <issue
2044 id="SyntheticAccessor"
2045 message="Access to `private` method `rebuildLocaleData` of class `LocalizedStore` requires synthetic accessor"
2046 errorLine1=" rebuildLocaleData(mLocaleSetManager.getSystemLocaleSet());"
2047 errorLine2=" ~~~~~~~~~~~~~~~~~">
2048 <location
2049 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
2050 line="99"
2051 column="21"/>
2052 </issue>
2053
2054 <issue
2055 id="SyntheticAccessor"
2056 message="Access to `private` member of class `SortData` requires synthetic accessor"
2057 errorLine1=" SortData sortData = new SortData();"
2058 errorLine2=" ~~~~~~~~~~~~~~">
2059 <location
2060 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
2061 line="347"
2062 column="29"/>
2063 </issue>
2064
2065 <issue
2066 id="SyntheticAccessor"
2067 message="Access to `private` method `createOrderBy` of class `LocalizedStore` requires synthetic accessor"
2068 errorLine1=" return createOrderBy(NAME_BUCKET, NAME, descending);"
2069 errorLine2=" ~~~~~~~~~~~~~">
2070 <location
2071 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
2072 line="561"
2073 column="20"/>
2074 </issue>
2075
2076 <issue
2077 id="SyntheticAccessor"
2078 message="Access to `private` method `createOrderBy` of class `LocalizedStore` requires synthetic accessor"
2079 errorLine1=" return createOrderBy(NAME_BUCKET, NAME, descending);"
2080 errorLine2=" ~~~~~~~~~~~~~">
2081 <location
2082 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
2083 line="589"
2084 column="20"/>
2085 </issue>
2086
2087 <issue
2088 id="SyntheticAccessor"
2089 message="Access to `private` method `createOrderBy` of class `LocalizedStore` requires synthetic accessor"
2090 errorLine1=" return createOrderBy(NAME_BUCKET, NAME, descending);"
2091 errorLine2=" ~~~~~~~~~~~~~">
2092 <location
2093 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
2094 line="615"
2095 column="20"/>
2096 </issue>
2097
2098 <issue
2099 id="SyntheticAccessor"
2100 message="Access to `private` method `refreshCurrentTimeText` of class `MainPlaybackControls` requires synthetic accessor"
2101 errorLine1=" refreshCurrentTimeText(progress);"
2102 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
2103 <location
2104 file="src/org/lineageos/eleven/widgets/MainPlaybackControls.java"
2105 line="77"
2106 column="21"/>
2107 </issue>
2108
2109 <issue
2110 id="SyntheticAccessor"
2111 message="Access to `private` constructor of class `ServiceStub` requires synthetic accessor"
2112 errorLine1=" private final IBinder mBinder = new ServiceStub(this);"
2113 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
2114 <location
2115 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2116 line="387"
2117 column="37"/>
2118 </issue>
2119
2120 <issue
2121 id="SyntheticAccessor"
2122 message="Access to `private` method `releaseServiceUiAndStop` of class `MusicPlaybackService` requires synthetic accessor"
2123 errorLine1=" releaseServiceUiAndStop();"
2124 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
2125 <location
2126 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2127 line="728"
2128 column="17"/>
2129 </issue>
2130
2131 <issue
2132 id="SyntheticAccessor"
2133 message="Access to `private` method `handleHeadsetHookClick` of class `MusicPlaybackService` requires synthetic accessor"
2134 errorLine1=" handleHeadsetHookClick(ke.getEventTime());"
2135 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
2136 <location
2137 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2138 line="742"
2139 column="29"/>
2140 </issue>
2141
2142 <issue
2143 id="SyntheticAccessor"
2144 message="Access to `private` method `saveQueue` of class `MusicPlaybackService` requires synthetic accessor"
2145 errorLine1=" saveQueue(true);"
2146 errorLine2=" ~~~~~~~~~">
2147 <location
2148 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2149 line="975"
2150 column="25"/>
2151 </issue>
2152
2153 <issue
2154 id="SyntheticAccessor"
2155 message="Access to `private` field `mQueueIsSaveable` of class `MusicPlaybackService` requires synthetic accessor"
2156 errorLine1=" mQueueIsSaveable = false;"
2157 errorLine2=" ~~~~~~~~~~~~~~~~">
2158 <location
2159 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2160 line="976"
2161 column="25"/>
2162 </issue>
2163
2164 <issue
2165 id="SyntheticAccessor"
2166 message="Access to `private` field `mMediaMountedCount` of class `MusicPlaybackService` requires synthetic accessor"
2167 errorLine1=" mMediaMountedCount++;"
2168 errorLine2=" ~~~~~~~~~~~~~~~~~~">
2169 <location
2170 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2171 line="979"
2172 column="25"/>
2173 </issue>
2174
2175 <issue
2176 id="SyntheticAccessor"
2177 message="Access to `private` field `mCardId` of class `MusicPlaybackService` requires synthetic accessor"
2178 errorLine1=" mCardId = getCardId();"
2179 errorLine2=" ~~~~~~~">
2180 <location
2181 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2182 line="980"
2183 column="25"/>
2184 </issue>
2185
2186 <issue
2187 id="SyntheticAccessor"
2188 message="Access to `private` method `getCardId` of class `MusicPlaybackService` requires synthetic accessor"
2189 errorLine1=" mCardId = getCardId();"
2190 errorLine2=" ~~~~~~~~~">
2191 <location
2192 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2193 line="980"
2194 column="35"/>
2195 </issue>
2196
2197 <issue
2198 id="SyntheticAccessor"
2199 message="Access to `private` method `reloadQueue` of class `MusicPlaybackService` requires synthetic accessor"
2200 errorLine1=" reloadQueue();"
2201 errorLine2=" ~~~~~~~~~~~">
2202 <location
2203 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2204 line="981"
2205 column="25"/>
2206 </issue>
2207
2208 <issue
2209 id="SyntheticAccessor"
2210 message="Access to `private` field `mQueueIsSaveable` of class `MusicPlaybackService` requires synthetic accessor"
2211 errorLine1=" mQueueIsSaveable = true;"
2212 errorLine2=" ~~~~~~~~~~~~~~~~">
2213 <location
2214 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2215 line="982"
2216 column="25"/>
2217 </issue>
2218
2219 <issue
2220 id="SyntheticAccessor"
2221 message="Access to `private` method `notifyChange` of class `MusicPlaybackService` requires synthetic accessor"
2222 errorLine1=" notifyChange(QUEUE_CHANGED);"
2223 errorLine2=" ~~~~~~~~~~~~">
2224 <location
2225 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2226 line="983"
2227 column="25"/>
2228 </issue>
2229
2230 <issue
2231 id="SyntheticAccessor"
2232 message="Access to `private` method `notifyChange` of class `MusicPlaybackService` requires synthetic accessor"
2233 errorLine1=" notifyChange(META_CHANGED);"
2234 errorLine2=" ~~~~~~~~~~~~">
2235 <location
2236 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2237 line="984"
2238 column="25"/>
2239 </issue>
2240
2241 <issue
2242 id="SyntheticAccessor"
2243 message="Access to `private` field `mCurrentVolume` of class `MusicPlayerHandler` requires synthetic accessor"
2244 errorLine1=" mPlayerHandler.mCurrentVolume = 0f;"
2245 errorLine2=" ~~~~~~~~~~~~~~">
2246 <location
2247 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2248 line="2523"
2249 column="36"/>
2250 </issue>
2251
2252 <issue
2253 id="SyntheticAccessor"
2254 message="Access to `private` field `mAppWidgetSmall` of class `MusicPlaybackService` requires synthetic accessor"
2255 errorLine1=" mAppWidgetSmall.performUpdate(MusicPlaybackService.this, small);"
2256 errorLine2=" ~~~~~~~~~~~~~~~">
2257 <location
2258 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2259 line="2925"
2260 column="17"/>
2261 </issue>
2262
2263 <issue
2264 id="SyntheticAccessor"
2265 message="Access to `private` field `mAppWidgetLarge` of class `MusicPlaybackService` requires synthetic accessor"
2266 errorLine1=" mAppWidgetLarge.performUpdate(MusicPlaybackService.this, large);"
2267 errorLine2=" ~~~~~~~~~~~~~~~">
2268 <location
2269 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2270 line="2928"
2271 column="17"/>
2272 </issue>
2273
2274 <issue
2275 id="SyntheticAccessor"
2276 message="Access to `private` field `mAppWidgetLargeAlternate` of class `MusicPlaybackService` requires synthetic accessor"
2277 errorLine1=" mAppWidgetLargeAlternate.performUpdate(MusicPlaybackService.this, largeAlt);"
2278 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
2279 <location
2280 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2281 line="2932"
2282 column="17"/>
2283 </issue>
2284
2285 <issue
2286 id="SyntheticAccessor"
2287 message="Access to `private` method `handleCommandIntent` of class `MusicPlaybackService` requires synthetic accessor"
2288 errorLine1=" handleCommandIntent(intent);"
2289 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
2290 <location
2291 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2292 line="2934"
2293 column="17"/>
2294 </issue>
2295
2296 <issue
2297 id="SyntheticAccessor"
2298 message="Access to `private` field `mPlayer` of class `MusicPlaybackService` requires synthetic accessor"
2299 errorLine1=" service.mPlayer.setVolume(mCurrentVolume);"
2300 errorLine2=" ~~~~~~~">
2301 <location
2302 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2303 line="3002"
2304 column="33"/>
2305 </issue>
2306
2307 <issue
2308 id="SyntheticAccessor"
2309 message="Access to `private` field `mPlayer` of class `MusicPlaybackService` requires synthetic accessor"
2310 errorLine1=" service.mPlayer.setVolume(mCurrentVolume);"
2311 errorLine2=" ~~~~~~~">
2312 <location
2313 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2314 line="3011"
2315 column="33"/>
2316 </issue>
2317
2318 <issue
2319 id="SyntheticAccessor"
2320 message="Access to `private` method `sendErrorMessage` of class `MusicPlaybackService` requires synthetic accessor"
2321 errorLine1=" service.sendErrorMessage(info.mTrackName);"
2322 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
2323 <location
2324 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2325 line="3016"
2326 column="29"/>
2327 </issue>
2328
2329 <issue
2330 id="SyntheticAccessor"
2331 message="Access to `private` method `openCurrentAndNext` of class `MusicPlaybackService` requires synthetic accessor"
2332 errorLine1=" service.openCurrentAndNext();"
2333 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
2334 <location
2335 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2336 line="3022"
2337 column="29"/>
2338 </issue>
2339
2340 <issue
2341 id="SyntheticAccessor"
2342 message="Access to `private` field `mNextPlayPos` of class `MusicPlaybackService` requires synthetic accessor"
2343 errorLine1=" service.setAndRecordPlayPos(service.mNextPlayPos);"
2344 errorLine2=" ~~~~~~~~~~~~">
2345 <location
2346 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2347 line="3026"
2348 column="61"/>
2349 </issue>
2350
2351 <issue
2352 id="SyntheticAccessor"
2353 message="Access to `private` method `setNextTrack` of class `MusicPlaybackService` requires synthetic accessor"
2354 errorLine1=" service.setNextTrack();"
2355 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
2356 <location
2357 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2358 line="3027"
2359 column="25"/>
2360 </issue>
2361
2362 <issue
2363 id="SyntheticAccessor"
2364 message="Access to `private` field `mCursor` of class `MusicPlaybackService` requires synthetic accessor"
2365 errorLine1=" if (service.mCursor != null) {"
2366 errorLine2=" ~~~~~~~">
2367 <location
2368 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2369 line="3028"
2370 column="37"/>
2371 </issue>
2372
2373 <issue
2374 id="SyntheticAccessor"
2375 message="Access to `private` field `mCursor` of class `MusicPlaybackService` requires synthetic accessor"
2376 errorLine1=" service.mCursor.close();"
2377 errorLine2=" ~~~~~~~">
2378 <location
2379 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2380 line="3029"
2381 column="37"/>
2382 </issue>
2383
2384 <issue
2385 id="SyntheticAccessor"
2386 message="Access to `private` field `mCursor` of class `MusicPlaybackService` requires synthetic accessor"
2387 errorLine1=" service.mCursor = null;"
2388 errorLine2=" ~~~~~~~">
2389 <location
2390 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2391 line="3030"
2392 column="37"/>
2393 </issue>
2394
2395 <issue
2396 id="SyntheticAccessor"
2397 message="Access to `private` field `mPlayPos` of class `MusicPlaybackService` requires synthetic accessor"
2398 errorLine1=" service.updateCursor(service.mPlaylist.get(service.mPlayPos).mId);"
2399 errorLine2=" ~~~~~~~~">
2400 <location
2401 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2402 line="3032"
2403 column="76"/>
2404 </issue>
2405
2406 <issue
2407 id="SyntheticAccessor"
2408 message="Access to `private` field `mPlaylist` of class `MusicPlaybackService` requires synthetic accessor"
2409 errorLine1=" service.updateCursor(service.mPlaylist.get(service.mPlayPos).mId);"
2410 errorLine2=" ~~~~~~~~~">
2411 <location
2412 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2413 line="3032"
2414 column="54"/>
2415 </issue>
2416
2417 <issue
2418 id="SyntheticAccessor"
2419 message="Access to `private` method `updateCursor` of class `MusicPlaybackService` requires synthetic accessor"
2420 errorLine1=" service.updateCursor(service.mPlaylist.get(service.mPlayPos).mId);"
2421 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
2422 <location
2423 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2424 line="3032"
2425 column="25"/>
2426 </issue>
2427
2428 <issue
2429 id="SyntheticAccessor"
2430 message="Access to `private` method `notifyChange` of class `MusicPlaybackService` requires synthetic accessor"
2431 errorLine1=" service.notifyChange(META_CHANGED);"
2432 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
2433 <location
2434 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2435 line="3033"
2436 column="25"/>
2437 </issue>
2438
2439 <issue
2440 id="SyntheticAccessor"
2441 message="Access to `private` field `mRepeatMode` of class `MusicPlaybackService` requires synthetic accessor"
2442 errorLine1=" if (service.mRepeatMode == REPEAT_CURRENT) {"
2443 errorLine2=" ~~~~~~~~~~~">
2444 <location
2445 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2446 line="3036"
2447 column="37"/>
2448 </issue>
2449
2450 <issue
2451 id="SyntheticAccessor"
2452 message="Access to `private` field `mLyrics` of class `MusicPlaybackService` requires synthetic accessor"
2453 errorLine1=" service.mLyrics = (String) msg.obj;"
2454 errorLine2=" ~~~~~~~">
2455 <location
2456 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2457 line="3044"
2458 column="33"/>
2459 </issue>
2460
2461 <issue
2462 id="SyntheticAccessor"
2463 message="Access to `private` method `notifyChange` of class `MusicPlaybackService` requires synthetic accessor"
2464 errorLine1=" service.notifyChange(NEW_LYRICS);"
2465 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
2466 <location
2467 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2468 line="3045"
2469 column="25"/>
2470 </issue>
2471
2472 <issue
2473 id="SyntheticAccessor"
2474 message="Access to `private` method `togglePlayPause` of class `MusicPlaybackService` requires synthetic accessor"
2475 errorLine1=" service.togglePlayPause();"
2476 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
2477 <location
2478 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2479 line="3066"
2480 column="33"/>
2481 </issue>
2482
2483 <issue
2484 id="SyntheticAccessor"
2485 message="Access to `private` field `mHeadsetHookWakeLock` of class `MusicPlaybackService` requires synthetic accessor"
2486 errorLine1=" service.mHeadsetHookWakeLock.release();"
2487 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
2488 <location
2489 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2490 line="3076"
2491 column="33"/>
2492 </issue>
2493
2494 <issue
2495 id="SyntheticAccessor"
2496 message="Access to `private` field `mHandler` of class `MultiPlayer` requires synthetic accessor"
2497 errorLine1=" mHandler.obtainMessage(LYRICS, text).sendToTarget();"
2498 errorLine2=" ~~~~~~~~">
2499 <location
2500 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2501 line="3170"
2502 column="21"/>
2503 </issue>
2504
2505 <issue
2506 id="SyntheticAccessor"
2507 message="Access to `private` field `mSession` of class `MusicPlaybackService` requires synthetic accessor"
2508 errorLine1=" mSession.setQueue(items);"
2509 errorLine2=" ~~~~~~~~">
2510 <location
2511 file="src/org/lineageos/eleven/MusicPlaybackService.java"
2512 line="3722"
2513 column="17"/>
2514 </issue>
2515
2516 <issue
2517 id="SyntheticAccessor"
2518 message="Access to `private` constructor of class `ServiceToken` requires synthetic accessor"
2519 errorLine1=" ServiceToken token = new ServiceToken(context, binder);"
2520 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
2521 <location
2522 file="src/org/lineageos/eleven/utils/MusicUtils.java"
2523 line="119"
2524 column="34"/>
2525 </issue>
2526
2527 <issue
2528 id="SyntheticAccessor"
2529 message="Access to `private` field `mBinder` of class `ServiceToken` requires synthetic accessor"
2530 errorLine1=" final ServiceBinder binder = token.mBinder;"
2531 errorLine2=" ~~~~~~~">
2532 <location
2533 file="src/org/lineageos/eleven/utils/MusicUtils.java"
2534 line="133"
2535 column="44"/>
2536 </issue>
2537
2538 <issue
2539 id="SyntheticAccessor"
2540 message="Access to `private` method `discard` of class `ServiceToken` requires synthetic accessor"
2541 errorLine1=" token.discard();"
2542 errorLine2=" ~~~~~~~~~~~~~">
2543 <location
2544 file="src/org/lineageos/eleven/utils/MusicUtils.java"
2545 line="137"
2546 column="9"/>
2547 </issue>
2548
2549 <issue
2550 id="SyntheticAccessor"
2551 message="Access to `private` field `mBinder` of class `ServiceToken` requires synthetic accessor"
2552 errorLine1=" IElevenService service = token != null ? token.mBinder.mServiceConnection : null;"
2553 errorLine2=" ~~~~~~~">
2554 <location
2555 file="src/org/lineageos/eleven/utils/MusicUtils.java"
2556 line="202"
2557 column="60"/>
2558 </issue>
2559
2560 <issue
2561 id="SyntheticAccessor"
2562 message="Access to `private` field `mServiceConnection` of class `ServiceBinder` requires synthetic accessor"
2563 errorLine1=" IElevenService service = token != null ? token.mBinder.mServiceConnection : null;"
2564 errorLine2=" ~~~~~~~~~~~~~~~~~~">
2565 <location
2566 file="src/org/lineageos/eleven/utils/MusicUtils.java"
2567 line="202"
2568 column="68"/>
2569 </issue>
2570
2571 <issue
2572 id="SyntheticAccessor"
2573 message="Access to `private` member of class `Holder` requires synthetic accessor"
2574 errorLine1=" final Holder mHolder = new Holder();"
2575 errorLine2=" ~~~~~~~~~~~~">
2576 <location
2577 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
2578 line="73"
2579 column="32"/>
2580 </issue>
2581
2582 <issue
2583 id="SyntheticAccessor"
2584 message="Access to `private` field `mPlaylistId` of class `PlaylistDetailFragment` requires synthetic accessor"
2585 errorLine1=" return new Playlist(mPlaylistId, getTitle(), 0);"
2586 errorLine2=" ~~~~~~~~~~~">
2587 <location
2588 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
2589 line="120"
2590 column="37"/>
2591 </issue>
2592
2593 <issue
2594 id="SyntheticAccessor"
2595 message="Access to `private` field `mAdapter` of class `PlaylistDetailFragment` requires synthetic accessor"
2596 errorLine1=" return mAdapter.getItem(position);"
2597 errorLine2=" ~~~~~~~~">
2598 <location
2599 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
2600 line="142"
2601 column="24"/>
2602 </issue>
2603
2604 <issue
2605 id="SyntheticAccessor"
2606 message="Access to `private` field `mPlaylistId` of class `PlaylistDetailFragment` requires synthetic accessor"
2607 errorLine1=" return mPlaylistId;"
2608 errorLine2=" ~~~~~~~~~~~">
2609 <location
2610 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
2611 line="155"
2612 column="24"/>
2613 </issue>
2614
2615 <issue
2616 id="SyntheticAccessor"
2617 message="Access to `private` method `remove` of class `PlaylistDetailFragment` requires synthetic accessor"
2618 errorLine1=" remove(mSong);"
2619 errorLine2=" ~~~~~~">
2620 <location
2621 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
2622 line="165"
2623 column="17"/>
2624 </issue>
2625
2626 <issue
2627 id="SyntheticAccessor"
2628 message="Access to `private` field `mPlaylistId` of class `PlaylistDetailFragment` requires synthetic accessor"
2629 errorLine1=" MusicUtils.removeFromPlaylist(activity, mSong.mSongId, mPlaylistId);"
2630 errorLine2=" ~~~~~~~~~~~">
2631 <location
2632 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
2633 line="168"
2634 column="76"/>
2635 </issue>
2636
2637 <issue
2638 id="SyntheticAccessor"
2639 message="Access to `private` field `mAdapter` of class `PlaylistFragment` requires synthetic accessor"
2640 errorLine1=" return mAdapter.getItem(position);"
2641 errorLine2=" ~~~~~~~~">
2642 <location
2643 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
2644 line="94"
2645 column="24"/>
2646 </issue>
2647
2648 <issue
2649 id="SyntheticAccessor"
2650 message="Access to `private` field `mAdapter` of class `QueueFragment` requires synthetic accessor"
2651 errorLine1=" mSong = mAdapter.getItem(mSelectedPosition);"
2652 errorLine2=" ~~~~~~~~">
2653 <location
2654 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
2655 line="127"
2656 column="25"/>
2657 </issue>
2658
2659 <issue
2660 id="SyntheticAccessor"
2661 message="Access to `private` field `mAdapter` of class `QueueFragment` requires synthetic accessor"
2662 errorLine1=" mReference.get().mAdapter.setCurrentlyPlayingTrack(MusicUtils.getCurrentTrack());"
2663 errorLine2=" ~~~~~~~~">
2664 <location
2665 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
2666 line="372"
2667 column="34"/>
2668 </issue>
2669
2670 <issue
2671 id="SyntheticAccessor"
2672 message="Access to `private` method `doRepeat` of class `RepeatingImageButton` requires synthetic accessor"
2673 errorLine1=" doRepeat(false);"
2674 errorLine2=" ~~~~~~~~">
2675 <location
2676 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
2677 line="140"
2678 column="13"/>
2679 </issue>
2680
2681 <issue
2682 id="SyntheticAccessor"
2683 message="Access to `private` field `mFirstPanel` of class `SlidingPanelActivity` requires synthetic accessor"
2684 errorLine1=" mFirstPanel.setSlidingEnabled(false);"
2685 errorLine2=" ~~~~~~~~~~~">
2686 <location
2687 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
2688 line="155"
2689 column="21"/>
2690 </issue>
2691
2692 <issue
2693 id="SyntheticAccessor"
2694 message="Access to `private` field `mFirstPanel` of class `SlidingPanelActivity` requires synthetic accessor"
2695 errorLine1=" mFirstPanel.setSlidingEnabled(true);"
2696 errorLine2=" ~~~~~~~~~~~">
2697 <location
2698 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
2699 line="169"
2700 column="17"/>
2701 </issue>
2702
2703 <issue
2704 id="SyntheticAccessor"
2705 message="Access to `private` member of class `DragHelperCallback` requires synthetic accessor"
2706 errorLine1=" mDragHelper = ViewDragHelper.create(this, 0.5f, new DragHelperCallback());"
2707 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
2708 <location
2709 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2710 line="380"
2711 column="57"/>
2712 </issue>
2713
2714 <issue
2715 id="SyntheticAccessor"
2716 message="Access to `private` field `mIsUnableToDrag` of class `SlidingUpPanelLayout` requires synthetic accessor"
2717 errorLine1=" if (mIsUnableToDrag) {"
2718 errorLine2=" ~~~~~~~~~~~~~~~">
2719 <location
2720 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2721 line="1039"
2722 column="17"/>
2723 </issue>
2724
2725 <issue
2726 id="SyntheticAccessor"
2727 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2728 errorLine1=" return child == mSlideableView;"
2729 errorLine2=" ~~~~~~~~~~~~~~">
2730 <location
2731 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2732 line="1043"
2733 column="29"/>
2734 </issue>
2735
2736 <issue
2737 id="SyntheticAccessor"
2738 message="Access to `private` field `mDragHelper` of class `SlidingUpPanelLayout` requires synthetic accessor"
2739 errorLine1=" if (mDragHelper == null ||"
2740 errorLine2=" ~~~~~~~~~~~">
2741 <location
2742 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2743 line="1048"
2744 column="17"/>
2745 </issue>
2746
2747 <issue
2748 id="SyntheticAccessor"
2749 message="Access to `private` field `mDragHelper` of class `SlidingUpPanelLayout` requires synthetic accessor"
2750 errorLine1=" mDragHelper.getViewDragState() != ViewDragHelper.STATE_IDLE) {"
2751 errorLine2=" ~~~~~~~~~~~">
2752 <location
2753 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2754 line="1049"
2755 column="21"/>
2756 </issue>
2757
2758 <issue
2759 id="SyntheticAccessor"
2760 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
2761 errorLine1=" mSlideOffset = computeSlideOffset(mSlideableView.getTop());"
2762 errorLine2=" ~~~~~~~~~~~~">
2763 <location
2764 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2765 line="1053"
2766 column="13"/>
2767 </issue>
2768
2769 <issue
2770 id="SyntheticAccessor"
2771 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2772 errorLine1=" mSlideOffset = computeSlideOffset(mSlideableView.getTop());"
2773 errorLine2=" ~~~~~~~~~~~~~~">
2774 <location
2775 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2776 line="1053"
2777 column="47"/>
2778 </issue>
2779
2780 <issue
2781 id="SyntheticAccessor"
2782 message="Access to `private` method `computeSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
2783 errorLine1=" mSlideOffset = computeSlideOffset(mSlideableView.getTop());"
2784 errorLine2=" ~~~~~~~~~~~~~~~~~~">
2785 <location
2786 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2787 line="1053"
2788 column="28"/>
2789 </issue>
2790
2791 <issue
2792 id="SyntheticAccessor"
2793 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
2794 errorLine1=" if (mSlideOffset == 1) {"
2795 errorLine2=" ~~~~~~~~~~~~">
2796 <location
2797 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2798 line="1054"
2799 column="17"/>
2800 </issue>
2801
2802 <issue
2803 id="SyntheticAccessor"
2804 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2805 errorLine1=" if (mSlideState != SlideState.EXPANDED) {"
2806 errorLine2=" ~~~~~~~~~~~">
2807 <location
2808 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2809 line="1055"
2810 column="21"/>
2811 </issue>
2812
2813 <issue
2814 id="SyntheticAccessor"
2815 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2816 errorLine1=" mSlideState = SlideState.EXPANDED;"
2817 errorLine2=" ~~~~~~~~~~~">
2818 <location
2819 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2820 line="1057"
2821 column="21"/>
2822 </issue>
2823
2824 <issue
2825 id="SyntheticAccessor"
2826 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2827 errorLine1=" dispatchOnPanelExpanded(mSlideableView);"
2828 errorLine2=" ~~~~~~~~~~~~~~">
2829 <location
2830 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2831 line="1058"
2832 column="45"/>
2833 </issue>
2834
2835 <issue
2836 id="SyntheticAccessor"
2837 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
2838 errorLine1=" } else if (mSlideOffset == 0) {"
2839 errorLine2=" ~~~~~~~~~~~~">
2840 <location
2841 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2842 line="1060"
2843 column="24"/>
2844 </issue>
2845
2846 <issue
2847 id="SyntheticAccessor"
2848 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2849 errorLine1=" if (mSlideState != SlideState.COLLAPSED) {"
2850 errorLine2=" ~~~~~~~~~~~">
2851 <location
2852 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2853 line="1061"
2854 column="21"/>
2855 </issue>
2856
2857 <issue
2858 id="SyntheticAccessor"
2859 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2860 errorLine1=" mSlideState = SlideState.COLLAPSED;"
2861 errorLine2=" ~~~~~~~~~~~">
2862 <location
2863 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2864 line="1062"
2865 column="21"/>
2866 </issue>
2867
2868 <issue
2869 id="SyntheticAccessor"
2870 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2871 errorLine1=" dispatchOnPanelCollapsed(mSlideableView);"
2872 errorLine2=" ~~~~~~~~~~~~~~">
2873 <location
2874 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2875 line="1063"
2876 column="46"/>
2877 </issue>
2878
2879 <issue
2880 id="SyntheticAccessor"
2881 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
2882 errorLine1=" } else if (mSlideOffset &lt; 0) {"
2883 errorLine2=" ~~~~~~~~~~~~">
2884 <location
2885 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2886 line="1065"
2887 column="24"/>
2888 </issue>
2889
2890 <issue
2891 id="SyntheticAccessor"
2892 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2893 errorLine1=" mSlideState = SlideState.HIDDEN;"
2894 errorLine2=" ~~~~~~~~~~~">
2895 <location
2896 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2897 line="1066"
2898 column="17"/>
2899 </issue>
2900
2901 <issue
2902 id="SyntheticAccessor"
2903 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2904 errorLine1=" mSlideableView.setVisibility(View.GONE);"
2905 errorLine2=" ~~~~~~~~~~~~~~">
2906 <location
2907 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2908 line="1067"
2909 column="17"/>
2910 </issue>
2911
2912 <issue
2913 id="SyntheticAccessor"
2914 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2915 errorLine1=" dispatchOnPanelHidden(mSlideableView);"
2916 errorLine2=" ~~~~~~~~~~~~~~">
2917 <location
2918 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2919 line="1068"
2920 column="39"/>
2921 </issue>
2922
2923 <issue
2924 id="SyntheticAccessor"
2925 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2926 errorLine1=" } else if (mSlideState != SlideState.ANCHORED) {"
2927 errorLine2=" ~~~~~~~~~~~">
2928 <location
2929 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2930 line="1069"
2931 column="24"/>
2932 </issue>
2933
2934 <issue
2935 id="SyntheticAccessor"
2936 message="Access to `private` field `mSlideState` of class `SlidingUpPanelLayout` requires synthetic accessor"
2937 errorLine1=" mSlideState = SlideState.ANCHORED;"
2938 errorLine2=" ~~~~~~~~~~~">
2939 <location
2940 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2941 line="1071"
2942 column="17"/>
2943 </issue>
2944
2945 <issue
2946 id="SyntheticAccessor"
2947 message="Access to `private` field `mSlideableView` of class `SlidingUpPanelLayout` requires synthetic accessor"
2948 errorLine1=" dispatchOnPanelAnchored(mSlideableView);"
2949 errorLine2=" ~~~~~~~~~~~~~~">
2950 <location
2951 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2952 line="1072"
2953 column="41"/>
2954 </issue>
2955
2956 <issue
2957 id="SyntheticAccessor"
2958 message="Access to `private` method `onPanelDragged` of class `SlidingUpPanelLayout` requires synthetic accessor"
2959 errorLine1=" onPanelDragged(top);"
2960 errorLine2=" ~~~~~~~~~~~~~~">
2961 <location
2962 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2963 line="1083"
2964 column="13"/>
2965 </issue>
2966
2967 <issue
2968 id="SyntheticAccessor"
2969 message="Access to `private` field `mIsSlidingUp` of class `SlidingUpPanelLayout` requires synthetic accessor"
2970 errorLine1=" float direction = mIsSlidingUp ? -yvel : yvel;"
2971 errorLine2=" ~~~~~~~~~~~~">
2972 <location
2973 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2974 line="1092"
2975 column="31"/>
2976 </issue>
2977
2978 <issue
2979 id="SyntheticAccessor"
2980 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
2981 errorLine1=" target = computePanelTopPosition(1.0f);"
2982 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
2983 <location
2984 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2985 line="1096"
2986 column="26"/>
2987 </issue>
2988
2989 <issue
2990 id="SyntheticAccessor"
2991 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
2992 errorLine1=" target = computePanelTopPosition(0.0f);"
2993 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
2994 <location
2995 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
2996 line="1099"
2997 column="26"/>
2998 </issue>
2999
3000 <issue
3001 id="SyntheticAccessor"
3002 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
3003 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= (1.f + mAnchorPoint) / 2) {"
3004 errorLine2=" ~~~~~~~~~~~~">
3005 <location
3006 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3007 line="1100"
3008 column="24"/>
3009 </issue>
3010
3011 <issue
3012 id="SyntheticAccessor"
3013 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
3014 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= (1.f + mAnchorPoint) / 2) {"
3015 errorLine2=" ~~~~~~~~~~~~">
3016 <location
3017 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3018 line="1100"
3019 column="68"/>
3020 </issue>
3021
3022 <issue
3023 id="SyntheticAccessor"
3024 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
3025 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= (1.f + mAnchorPoint) / 2) {"
3026 errorLine2=" ~~~~~~~~~~~~">
3027 <location
3028 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3029 line="1100"
3030 column="45"/>
3031 </issue>
3032
3033 <issue
3034 id="SyntheticAccessor"
3035 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
3036 errorLine1=" target = computePanelTopPosition(1.0f);"
3037 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
3038 <location
3039 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3040 line="1102"
3041 column="26"/>
3042 </issue>
3043
3044 <issue
3045 id="SyntheticAccessor"
3046 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
3047 errorLine1=" } else if (mAnchorPoint == 1 &amp;&amp; mSlideOffset >= 0.5f) {"
3048 errorLine2=" ~~~~~~~~~~~~">
3049 <location
3050 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3051 line="1103"
3052 column="24"/>
3053 </issue>
3054
3055 <issue
3056 id="SyntheticAccessor"
3057 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
3058 errorLine1=" } else if (mAnchorPoint == 1 &amp;&amp; mSlideOffset >= 0.5f) {"
3059 errorLine2=" ~~~~~~~~~~~~">
3060 <location
3061 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3062 line="1103"
3063 column="45"/>
3064 </issue>
3065
3066 <issue
3067 id="SyntheticAccessor"
3068 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
3069 errorLine1=" target = computePanelTopPosition(1.0f);"
3070 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
3071 <location
3072 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3073 line="1105"
3074 column="26"/>
3075 </issue>
3076
3077 <issue
3078 id="SyntheticAccessor"
3079 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
3080 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= mAnchorPoint) {"
3081 errorLine2=" ~~~~~~~~~~~~">
3082 <location
3083 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3084 line="1106"
3085 column="24"/>
3086 </issue>
3087
3088 <issue
3089 id="SyntheticAccessor"
3090 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
3091 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= mAnchorPoint) {"
3092 errorLine2=" ~~~~~~~~~~~~">
3093 <location
3094 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3095 line="1106"
3096 column="61"/>
3097 </issue>
3098
3099 <issue
3100 id="SyntheticAccessor"
3101 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
3102 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= mAnchorPoint) {"
3103 errorLine2=" ~~~~~~~~~~~~">
3104 <location
3105 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3106 line="1106"
3107 column="45"/>
3108 </issue>
3109
3110 <issue
3111 id="SyntheticAccessor"
3112 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
3113 errorLine1=" target = computePanelTopPosition(mAnchorPoint);"
3114 errorLine2=" ~~~~~~~~~~~~">
3115 <location
3116 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3117 line="1107"
3118 column="50"/>
3119 </issue>
3120
3121 <issue
3122 id="SyntheticAccessor"
3123 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
3124 errorLine1=" target = computePanelTopPosition(mAnchorPoint);"
3125 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
3126 <location
3127 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3128 line="1107"
3129 column="26"/>
3130 </issue>
3131
3132 <issue
3133 id="SyntheticAccessor"
3134 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
3135 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= mAnchorPoint / 2) {"
3136 errorLine2=" ~~~~~~~~~~~~">
3137 <location
3138 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3139 line="1108"
3140 column="24"/>
3141 </issue>
3142
3143 <issue
3144 id="SyntheticAccessor"
3145 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
3146 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= mAnchorPoint / 2) {"
3147 errorLine2=" ~~~~~~~~~~~~">
3148 <location
3149 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3150 line="1108"
3151 column="61"/>
3152 </issue>
3153
3154 <issue
3155 id="SyntheticAccessor"
3156 message="Access to `private` field `mSlideOffset` of class `SlidingUpPanelLayout` requires synthetic accessor"
3157 errorLine1=" } else if (mAnchorPoint != 1 &amp;&amp; mSlideOffset >= mAnchorPoint / 2) {"
3158 errorLine2=" ~~~~~~~~~~~~">
3159 <location
3160 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3161 line="1108"
3162 column="45"/>
3163 </issue>
3164
3165 <issue
3166 id="SyntheticAccessor"
3167 message="Access to `private` field `mAnchorPoint` of class `SlidingUpPanelLayout` requires synthetic accessor"
3168 errorLine1=" target = computePanelTopPosition(mAnchorPoint);"
3169 errorLine2=" ~~~~~~~~~~~~">
3170 <location
3171 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3172 line="1109"
3173 column="50"/>
3174 </issue>
3175
3176 <issue
3177 id="SyntheticAccessor"
3178 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
3179 errorLine1=" target = computePanelTopPosition(mAnchorPoint);"
3180 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
3181 <location
3182 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3183 line="1109"
3184 column="26"/>
3185 </issue>
3186
3187 <issue
3188 id="SyntheticAccessor"
3189 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
3190 errorLine1=" target = computePanelTopPosition(0.0f);"
3191 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
3192 <location
3193 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3194 line="1112"
3195 column="26"/>
3196 </issue>
3197
3198 <issue
3199 id="SyntheticAccessor"
3200 message="Access to `private` field `mDragHelper` of class `SlidingUpPanelLayout` requires synthetic accessor"
3201 errorLine1=" if (mDragHelper != null) {"
3202 errorLine2=" ~~~~~~~~~~~">
3203 <location
3204 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3205 line="1115"
3206 column="17"/>
3207 </issue>
3208
3209 <issue
3210 id="SyntheticAccessor"
3211 message="Access to `private` field `mDragHelper` of class `SlidingUpPanelLayout` requires synthetic accessor"
3212 errorLine1=" mDragHelper.settleCapturedViewAt(releasedChild.getLeft(), target);"
3213 errorLine2=" ~~~~~~~~~~~">
3214 <location
3215 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3216 line="1116"
3217 column="17"/>
3218 </issue>
3219
3220 <issue
3221 id="SyntheticAccessor"
3222 message="Access to `private` field `mSlideRange` of class `SlidingUpPanelLayout` requires synthetic accessor"
3223 errorLine1=" return mSlideRange;"
3224 errorLine2=" ~~~~~~~~~~~">
3225 <location
3226 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3227 line="1123"
3228 column="20"/>
3229 </issue>
3230
3231 <issue
3232 id="SyntheticAccessor"
3233 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
3234 errorLine1=" final int collapsedTop = computePanelTopPosition(0.f);"
3235 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
3236 <location
3237 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3238 line="1128"
3239 column="38"/>
3240 </issue>
3241
3242 <issue
3243 id="SyntheticAccessor"
3244 message="Access to `private` method `computePanelTopPosition` of class `SlidingUpPanelLayout` requires synthetic accessor"
3245 errorLine1=" final int expandedTop = computePanelTopPosition(1.0f);"
3246 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
3247 <location
3248 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3249 line="1129"
3250 column="37"/>
3251 </issue>
3252
3253 <issue
3254 id="SyntheticAccessor"
3255 message="Access to `private` field `mIsSlidingUp` of class `SlidingUpPanelLayout` requires synthetic accessor"
3256 errorLine1=" if (mIsSlidingUp) {"
3257 errorLine2=" ~~~~~~~~~~~~">
3258 <location
3259 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3260 line="1130"
3261 column="17"/>
3262 </issue>
3263
3264 <issue
3265 id="SyntheticAccessor"
3266 message="Access to `private` constructor of class `SavedState` requires synthetic accessor"
3267 errorLine1=" return new SavedState(in);"
3268 errorLine2=" ~~~~~~~~~~~~~~~~~~">
3269 <location
3270 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
3271 line="1189"
3272 column="32"/>
3273 </issue>
3274
3275 <issue
3276 id="SyntheticAccessor"
3277 message="Access to `private` method `onLoaded` of class `SrtManager` requires synthetic accessor"
3278 errorLine1=" onLoaded(this, SrtParser.getSrtEntries(f));"
3279 errorLine2=" ~~~~~~~~">
3280 <location
3281 file="src/org/lineageos/eleven/utils/SrtManager.java"
3282 line="90"
3283 column="17"/>
3284 </issue>
3285
3286 <issue
3287 id="SyntheticAccessor"
3288 message="Access to `private` field `charset` of class `StrictLineReader` requires synthetic accessor"
3289 errorLine1=" return new String(buf, 0, length, charset.name());"
3290 errorLine2=" ~~~~~~~">
3291 <location
3292 file="src/org/lineageos/eleven/cache/disklrucache/StrictLineReader.java"
3293 line="153"
3294 column="47"/>
3295 </issue>
3296
3297 <issue
3298 id="SyntheticAccessor"
3299 message="Access to `private` field `mValueAnimators` of class `VisualizerView` requires synthetic accessor"
3300 errorLine1=" mValueAnimators[i].cancel();"
3301 errorLine2=" ~~~~~~~~~~~~~~~">
3302 <location
3303 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3304 line="73"
3305 column="25"/>
3306 </issue>
3307
3308 <issue
3309 id="SyntheticAccessor"
3310 message="Access to `private` field `mValueAnimators` of class `VisualizerView` requires synthetic accessor"
3311 errorLine1=" mValueAnimators[i].setFloatValues("
3312 errorLine2=" ~~~~~~~~~~~~~~~">
3313 <location
3314 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3315 line="80"
3316 column="25"/>
3317 </issue>
3318
3319 <issue
3320 id="SyntheticAccessor"
3321 message="Access to `private` field `mFFTPoints` of class `VisualizerView` requires synthetic accessor"
3322 errorLine1=" mFFTPoints[i * 4 + 1],"
3323 errorLine2=" ~~~~~~~~~~">
3324 <location
3325 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3326 line="81"
3327 column="33"/>
3328 </issue>
3329
3330 <issue
3331 id="SyntheticAccessor"
3332 message="Access to `private` field `mFFTPoints` of class `VisualizerView` requires synthetic accessor"
3333 errorLine1=" mFFTPoints[3] - (dbValue * 16f));"
3334 errorLine2=" ~~~~~~~~~~">
3335 <location
3336 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3337 line="82"
3338 column="33"/>
3339 </issue>
3340
3341 <issue
3342 id="SyntheticAccessor"
3343 message="Access to `private` field `mValueAnimators` of class `VisualizerView` requires synthetic accessor"
3344 errorLine1=" mValueAnimators[i].start();"
3345 errorLine2=" ~~~~~~~~~~~~~~~">
3346 <location
3347 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3348 line="83"
3349 column="25"/>
3350 </issue>
3351
3352 <issue
3353 id="SyntheticAccessor"
3354 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3355 errorLine1=" mVisualizer = new Visualizer(0);"
3356 errorLine2=" ~~~~~~~~~~~">
3357 <location
3358 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3359 line="92"
3360 column="17"/>
3361 </issue>
3362
3363 <issue
3364 id="SyntheticAccessor"
3365 message="Access to `private` field `TAG` of class `VisualizerView` requires synthetic accessor"
3366 errorLine1=" Log.e(TAG, &quot;error initializing visualizer&quot;, e);"
3367 errorLine2=" ~~~">
3368 <location
3369 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3370 line="94"
3371 column="23"/>
3372 </issue>
3373
3374 <issue
3375 id="SyntheticAccessor"
3376 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3377 errorLine1=" mVisualizer.setEnabled(false);"
3378 errorLine2=" ~~~~~~~~~~~">
3379 <location
3380 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3381 line="98"
3382 column="13"/>
3383 </issue>
3384
3385 <issue
3386 id="SyntheticAccessor"
3387 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3388 errorLine1=" mVisualizer.setCaptureSize(66);"
3389 errorLine2=" ~~~~~~~~~~~">
3390 <location
3391 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3392 line="99"
3393 column="13"/>
3394 </issue>
3395
3396 <issue
3397 id="SyntheticAccessor"
3398 message="Access to `private` field `mVisualizerListener` of class `VisualizerView` requires synthetic accessor"
3399 errorLine1=" mVisualizer.setDataCaptureListener(mVisualizerListener, Visualizer.getMaxCaptureRate(),"
3400 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
3401 <location
3402 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3403 line="100"
3404 column="48"/>
3405 </issue>
3406
3407 <issue
3408 id="SyntheticAccessor"
3409 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3410 errorLine1=" mVisualizer.setDataCaptureListener(mVisualizerListener, Visualizer.getMaxCaptureRate(),"
3411 errorLine2=" ~~~~~~~~~~~">
3412 <location
3413 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3414 line="100"
3415 column="13"/>
3416 </issue>
3417
3418 <issue
3419 id="SyntheticAccessor"
3420 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3421 errorLine1=" mVisualizer.setEnabled(true);"
3422 errorLine2=" ~~~~~~~~~~~">
3423 <location
3424 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3425 line="102"
3426 column="13"/>
3427 </issue>
3428
3429 <issue
3430 id="SyntheticAccessor"
3431 message="Access to `private` field `mUnlinkVisualizer` of class `VisualizerView` requires synthetic accessor"
3432 errorLine1=" AsyncTask.execute(mUnlinkVisualizer);"
3433 errorLine2=" ~~~~~~~~~~~~~~~~~">
3434 <location
3435 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3436 line="109"
3437 column="31"/>
3438 </issue>
3439
3440 <issue
3441 id="SyntheticAccessor"
3442 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3443 errorLine1=" if (mVisualizer != null) {"
3444 errorLine2=" ~~~~~~~~~~~">
3445 <location
3446 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3447 line="116"
3448 column="17"/>
3449 </issue>
3450
3451 <issue
3452 id="SyntheticAccessor"
3453 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3454 errorLine1=" mVisualizer.setEnabled(false);"
3455 errorLine2=" ~~~~~~~~~~~">
3456 <location
3457 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3458 line="117"
3459 column="17"/>
3460 </issue>
3461
3462 <issue
3463 id="SyntheticAccessor"
3464 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3465 errorLine1=" mVisualizer.release();"
3466 errorLine2=" ~~~~~~~~~~~">
3467 <location
3468 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3469 line="118"
3470 column="17"/>
3471 </issue>
3472
3473 <issue
3474 id="SyntheticAccessor"
3475 message="Access to `private` field `mVisualizer` of class `VisualizerView` requires synthetic accessor"
3476 errorLine1=" mVisualizer = null;"
3477 errorLine2=" ~~~~~~~~~~~">
3478 <location
3479 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
3480 line="119"
3481 column="17"/>
3482 </issue>
3483
3484 <issue
3485 id="DuplicateStrings"
3486 message="Duplicate string value `Hljómplötur`, used in `header_albums` and `page_albums`"
3487 errorLine1=" &lt;string name=&quot;page_albums&quot;>Hljómplötur&lt;/string>"
3488 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3489 <location
3490 file="res/values-is/strings.xml"
3491 line="20"
3492 column="5"/>
3493 <location
3494 file="res/values-is/strings.xml"
3495 line="21"
3496 column="5"
3497 message="Duplicates value in `page_albums`"/>
3498 </issue>
3499
3500 <issue
3501 id="DuplicateStrings"
3502 message="Duplicate string value `เพลง`, used in `app_name` and `page_songs`"
3503 errorLine1=" &lt;string name=&quot;app_name&quot;>เพลง&lt;/string>"
3504 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3505 <location
3506 file="res/values-th/strings.xml"
3507 line="20"
3508 column="5"/>
3509 <location
3510 file="res/values-th/strings.xml"
3511 line="23"
3512 column="5"
3513 message="Duplicates value in `app_name`"/>
3514 </issue>
3515
3516 <issue
3517 id="DuplicateStrings"
3518 message="Duplicate string value `음악`, used in `app_name` and `page_songs`"
3519 errorLine1=" &lt;string name=&quot;app_name&quot;>음악&lt;/string>"
3520 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3521 <location
3522 file="res/values-ko/strings.xml"
3523 line="20"
3524 column="5"/>
3525 <location
3526 file="res/values-ko/strings.xml"
3527 line="23"
3528 column="5"
3529 message="Duplicates value in `app_name`"/>
3530 </issue>
3531
3532 <issue
3533 id="DuplicateStrings"
3534 message="Duplicate string value `Albumoj`, used in `header_albums` and `page_albums`"
3535 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumoj&lt;/string>"
3536 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3537 <location
3538 file="res/values-eo/strings.xml"
3539 line="21"
3540 column="5"/>
3541 <location
3542 file="res/values-eo/strings.xml"
3543 line="23"
3544 column="5"
3545 message="Duplicates value in `page_albums`"/>
3546 </issue>
3547
3548 <issue
3549 id="DuplicateStrings"
3550 message="Duplicate string value `Artis`, used in `page_artists` and `sort_order_entry_artist`"
3551 errorLine1=" &lt;string name=&quot;page_artists&quot;>Artis&lt;/string>"
3552 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3553 <location
3554 file="res/values-in/strings.xml"
3555 line="21"
3556 column="5"/>
3557 <location
3558 file="res/values-in/strings.xml"
3559 line="47"
3560 column="5"
3561 message="Duplicates value in `page_artists`"/>
3562 </issue>
3563
3564 <issue
3565 id="DuplicateStrings"
3566 message="Duplicate string value `Nghệ sĩ`, used in `page_artists` and `sort_order_entry_artist`"
3567 errorLine1=" &lt;string name=&quot;page_artists&quot;>Nghệ sĩ&lt;/string>"
3568 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3569 <location
3570 file="res/values-vi/strings.xml"
3571 line="21"
3572 column="5"/>
3573 <location
3574 file="res/values-vi/strings.xml"
3575 line="47"
3576 column="5"
3577 message="Duplicates value in `page_artists`"/>
3578 </issue>
3579
3580 <issue
3581 id="DuplicateStrings"
3582 message="Duplicate string value `سەنئەتكار`, used in `page_artists` and `sort_order_entry_artist`"
3583 errorLine1=" &lt;string name=&quot;page_artists&quot;>سەنئەتكار&lt;/string>"
3584 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3585 <location
3586 file="res/values-ug/strings.xml"
3587 line="21"
3588 column="5"/>
3589 <location
3590 file="res/values-ug/strings.xml"
3591 line="47"
3592 column="5"
3593 message="Duplicates value in `page_artists`"/>
3594 </issue>
3595
3596 <issue
3597 id="DuplicateStrings"
3598 message="Duplicate string value `कलाकार`, used in `page_artists` and `sort_order_entry_artist`"
3599 errorLine1=" &lt;string name=&quot;page_artists&quot;>कलाकार&lt;/string>"
3600 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3601 <location
3602 file="res/values-hi/strings.xml"
3603 line="21"
3604 column="5"/>
3605 <location
3606 file="res/values-hi/strings.xml"
3607 line="47"
3608 column="5"
3609 message="Duplicates value in `page_artists`"/>
3610 </issue>
3611
3612 <issue
3613 id="DuplicateStrings"
3614 message="Duplicate string value `कलाकार`, used in `page_artists` and `sort_order_entry_artist`"
3615 errorLine1=" &lt;string name=&quot;page_artists&quot;>कलाकार&lt;/string>"
3616 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3617 <location
3618 file="res/values-mr/strings.xml"
3619 line="21"
3620 column="5"/>
3621 <location
3622 file="res/values-mr/strings.xml"
3623 line="47"
3624 column="5"
3625 message="Duplicates value in `page_artists`"/>
3626 </issue>
3627
3628 <issue
3629 id="DuplicateStrings"
3630 message="Duplicate string value `ศิลปิน`, used in `page_artists` and `sort_order_entry_artist`"
3631 errorLine1=" &lt;string name=&quot;page_artists&quot;>ศิลปิน&lt;/string>"
3632 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3633 <location
3634 file="res/values-th/strings.xml"
3635 line="21"
3636 column="5"/>
3637 <location
3638 file="res/values-th/strings.xml"
3639 line="47"
3640 column="5"
3641 message="Duplicates value in `page_artists`"/>
3642 </issue>
3643
3644 <issue
3645 id="DuplicateStrings"
3646 message="Duplicate string value `アーティスト`, used in `page_artists` and `sort_order_entry_artist`"
3647 errorLine1=" &lt;string name=&quot;page_artists&quot;>アーティスト&lt;/string>"
3648 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3649 <location
3650 file="res/values-ja/strings.xml"
3651 line="21"
3652 column="5"/>
3653 <location
3654 file="res/values-ja/strings.xml"
3655 line="47"
3656 column="5"
3657 message="Duplicates value in `page_artists`"/>
3658 </issue>
3659
3660 <issue
3661 id="DuplicateStrings"
3662 message="Duplicate string value `演出者`, used in `page_artists` and `sort_order_entry_artist`"
3663 errorLine1=" &lt;string name=&quot;page_artists&quot;>演出者&lt;/string>"
3664 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3665 <location
3666 file="res/values-zh-rTW/strings.xml"
3667 line="21"
3668 column="5"/>
3669 <location
3670 file="res/values-zh-rTW/strings.xml"
3671 line="47"
3672 column="5"
3673 message="Duplicates value in `page_artists`"/>
3674 </issue>
3675
3676 <issue
3677 id="DuplicateStrings"
3678 message="Duplicate string value `艺术家`, used in `page_artists` and `sort_order_entry_artist`"
3679 errorLine1=" &lt;string name=&quot;page_artists&quot;>艺术家&lt;/string>"
3680 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3681 <location
3682 file="res/values-zh-rCN/strings.xml"
3683 line="21"
3684 column="5"/>
3685 <location
3686 file="res/values-zh-rCN/strings.xml"
3687 line="47"
3688 column="5"
3689 message="Duplicates value in `page_artists`"/>
3690 </issue>
3691
3692 <issue
3693 id="DuplicateStrings"
3694 message="Duplicate string value `아티스트`, used in `page_artists` and `sort_order_entry_artist`"
3695 errorLine1=" &lt;string name=&quot;page_artists&quot;>아티스트&lt;/string>"
3696 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3697 <location
3698 file="res/values-ko/strings.xml"
3699 line="21"
3700 column="5"/>
3701 <location
3702 file="res/values-ko/strings.xml"
3703 line="47"
3704 column="5"
3705 message="Duplicates value in `page_artists`"/>
3706 </issue>
3707
3708 <issue
3709 id="DuplicateStrings"
3710 message="Duplicate string value `Alba`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
3711 errorLine1=" &lt;string name=&quot;page_albums&quot;>Alba&lt;/string>"
3712 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3713 <location
3714 file="res/values-cs/strings.xml"
3715 line="22"
3716 column="5"/>
3717 <location
3718 file="res/values-cs/strings.xml"
3719 line="26"
3720 column="5"
3721 message="Duplicates value in `page_albums`"/>
3722 <location
3723 file="res/values-cs/strings.xml"
3724 line="48"
3725 column="5"
3726 message="Duplicates value in `page_albums`"/>
3727 </issue>
3728
3729 <issue
3730 id="DuplicateStrings"
3731 message="Duplicate string value `Albaman`, used in `header_albums` and `page_albums`"
3732 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albaman&lt;/string>"
3733 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3734 <location
3735 file="res/values-gd/strings.xml"
3736 line="22"
3737 column="5"/>
3738 <location
3739 file="res/values-gd/strings.xml"
3740 line="26"
3741 column="5"
3742 message="Duplicates value in `page_albums`"/>
3743 </issue>
3744
3745 <issue
3746 id="DuplicateStrings"
3747 message="Duplicate string value `Alben`, used in `header_albums` and `page_albums`"
3748 errorLine1=" &lt;string name=&quot;page_albums&quot;>Alben&lt;/string>"
3749 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3750 <location
3751 file="res/values-de/strings.xml"
3752 line="22"
3753 column="5"/>
3754 <location
3755 file="res/values-de/strings.xml"
3756 line="26"
3757 column="5"
3758 message="Duplicates value in `page_albums`"/>
3759 </issue>
3760
3761 <issue
3762 id="DuplicateStrings"
3763 message="Duplicate string value `Alben`, used in `header_albums` and `page_albums`"
3764 errorLine1=" &lt;string name=&quot;page_albums&quot;>Alben&lt;/string>"
3765 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3766 <location
3767 file="res/values-lb/strings.xml"
3768 line="22"
3769 column="5"/>
3770 <location
3771 file="res/values-lb/strings.xml"
3772 line="26"
3773 column="5"
3774 message="Duplicates value in `page_albums`"/>
3775 </issue>
3776
3777 <issue
3778 id="DuplicateStrings"
3779 message="Duplicate string value `Albomlar`, used in `header_albums` and `page_albums`"
3780 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albomlar&lt;/string>"
3781 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3782 <location
3783 file="res/values-az/strings.xml"
3784 line="22"
3785 column="5"/>
3786 <location
3787 file="res/values-az/strings.xml"
3788 line="26"
3789 column="5"
3790 message="Duplicates value in `page_albums`"/>
3791 </issue>
3792
3793 <issue
3794 id="DuplicateStrings"
3795 message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
3796 errorLine1=" &lt;string name=&quot;page_albums&quot;>Album&lt;/string>"
3797 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3798 <location
3799 file="res/values-da/strings.xml"
3800 line="22"
3801 column="5"/>
3802 <location
3803 file="res/values-da/strings.xml"
3804 line="26"
3805 column="5"
3806 message="Duplicates value in `page_albums`"/>
3807 <location
3808 file="res/values-da/strings.xml"
3809 line="48"
3810 column="5"
3811 message="Duplicates value in `page_albums`"/>
3812 </issue>
3813
3814 <issue
3815 id="DuplicateStrings"
3816 message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
3817 errorLine1=" &lt;string name=&quot;page_albums&quot;>Album&lt;/string>"
3818 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3819 <location
3820 file="res/values-in/strings.xml"
3821 line="22"
3822 column="5"/>
3823 <location
3824 file="res/values-in/strings.xml"
3825 line="26"
3826 column="5"
3827 message="Duplicates value in `page_albums`"/>
3828 <location
3829 file="res/values-in/strings.xml"
3830 line="48"
3831 column="5"
3832 message="Duplicates value in `page_albums`"/>
3833 </issue>
3834
3835 <issue
3836 id="DuplicateStrings"
3837 message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
3838 errorLine1=" &lt;string name=&quot;page_albums&quot;>Album&lt;/string>"
3839 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3840 <location
3841 file="res/values-it/strings.xml"
3842 line="22"
3843 column="5"/>
3844 <location
3845 file="res/values-it/strings.xml"
3846 line="26"
3847 column="5"
3848 message="Duplicates value in `page_albums`"/>
3849 <location
3850 file="res/values-it/strings.xml"
3851 line="48"
3852 column="5"
3853 message="Duplicates value in `page_albums`"/>
3854 </issue>
3855
3856 <issue
3857 id="DuplicateStrings"
3858 message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
3859 errorLine1=" &lt;string name=&quot;page_albums&quot;>Album&lt;/string>"
3860 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3861 <location
3862 file="res/values-sv/strings.xml"
3863 line="22"
3864 column="5"/>
3865 <location
3866 file="res/values-sv/strings.xml"
3867 line="26"
3868 column="5"
3869 message="Duplicates value in `page_albums`"/>
3870 <location
3871 file="res/values-sv/strings.xml"
3872 line="48"
3873 column="5"
3874 message="Duplicates value in `page_albums`"/>
3875 </issue>
3876
3877 <issue
3878 id="DuplicateStrings"
3879 message="Duplicate string value `Album`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
3880 errorLine1=" &lt;string name=&quot;page_albums&quot;>Album&lt;/string>"
3881 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3882 <location
3883 file="res/values-vi/strings.xml"
3884 line="22"
3885 column="5"/>
3886 <location
3887 file="res/values-vi/strings.xml"
3888 line="26"
3889 column="5"
3890 message="Duplicates value in `page_albums`"/>
3891 <location
3892 file="res/values-vi/strings.xml"
3893 line="48"
3894 column="5"
3895 message="Duplicates value in `page_albums`"/>
3896 </issue>
3897
3898 <issue
3899 id="DuplicateStrings"
3900 message="Duplicate string value `Albumai`, used in `header_albums` and `page_albums`"
3901 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumai&lt;/string>"
3902 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3903 <location
3904 file="res/values-lt/strings.xml"
3905 line="22"
3906 column="5"/>
3907 <location
3908 file="res/values-lt/strings.xml"
3909 line="26"
3910 column="5"
3911 message="Duplicates value in `page_albums`"/>
3912 </issue>
3913
3914 <issue
3915 id="DuplicateStrings"
3916 message="Duplicate string value `Albumak`, used in `header_albums` and `page_albums`"
3917 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumak&lt;/string>"
3918 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3919 <location
3920 file="res/values-eu/strings.xml"
3921 line="22"
3922 column="5"/>
3923 <location
3924 file="res/values-eu/strings.xml"
3925 line="26"
3926 column="5"
3927 message="Duplicates value in `page_albums`"/>
3928 </issue>
3929
3930 <issue
3931 id="DuplicateStrings"
3932 message="Duplicate string value `Albume`, used in `header_albums` and `page_albums`"
3933 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albume&lt;/string>"
3934 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3935 <location
3936 file="res/values-ro/strings.xml"
3937 line="22"
3938 column="5"/>
3939 <location
3940 file="res/values-ro/strings.xml"
3941 line="26"
3942 column="5"
3943 message="Duplicates value in `page_albums`"/>
3944 </issue>
3945
3946 <issue
3947 id="DuplicateStrings"
3948 message="Duplicate string value `Albumer`, used in `header_albums` and `page_albums`"
3949 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumer&lt;/string>"
3950 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3951 <location
3952 file="res/values-nb/strings.xml"
3953 line="22"
3954 column="5"/>
3955 <location
3956 file="res/values-nb/strings.xml"
3957 line="26"
3958 column="5"
3959 message="Duplicates value in `page_albums`"/>
3960 </issue>
3961
3962 <issue
3963 id="DuplicateStrings"
3964 message="Duplicate string value `Albumet`, used in `header_albums` and `page_albums`"
3965 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumet&lt;/string>"
3966 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3967 <location
3968 file="res/values-sq/strings.xml"
3969 line="22"
3970 column="5"/>
3971 <location
3972 file="res/values-sq/strings.xml"
3973 line="25"
3974 column="5"
3975 message="Duplicates value in `page_albums`"/>
3976 </issue>
3977
3978 <issue
3979 id="DuplicateStrings"
3980 message="Duplicate string value `Albumi`, used in `header_albums` and `page_albums`"
3981 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumi&lt;/string>"
3982 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3983 <location
3984 file="res/values-hr/strings.xml"
3985 line="22"
3986 column="5"/>
3987 <location
3988 file="res/values-hr/strings.xml"
3989 line="26"
3990 column="5"
3991 message="Duplicates value in `page_albums`"/>
3992 </issue>
3993
3994 <issue
3995 id="DuplicateStrings"
3996 message="Duplicate string value `Albumi`, used in `header_albums` and `page_albums`"
3997 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumi&lt;/string>"
3998 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
3999 <location
4000 file="res/values-lv/strings.xml"
4001 line="22"
4002 column="5"/>
4003 <location
4004 file="res/values-lv/strings.xml"
4005 line="26"
4006 column="5"
4007 message="Duplicates value in `page_albums`"/>
4008 </issue>
4009
4010 <issue
4011 id="DuplicateStrings"
4012 message="Duplicate string value `Albumi`, used in `header_albums` and `page_albums`"
4013 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumi&lt;/string>"
4014 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4015 <location
4016 file="res/values-sl/strings.xml"
4017 line="22"
4018 column="5"/>
4019 <location
4020 file="res/values-sl/strings.xml"
4021 line="26"
4022 column="5"
4023 message="Duplicates value in `page_albums`"/>
4024 </issue>
4025
4026 <issue
4027 id="DuplicateStrings"
4028 message="Duplicate string value `Albumid`, used in `header_albums` and `page_albums`"
4029 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumid&lt;/string>"
4030 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4031 <location
4032 file="res/values-et/strings.xml"
4033 line="22"
4034 column="5"/>
4035 <location
4036 file="res/values-et/strings.xml"
4037 line="26"
4038 column="5"
4039 message="Duplicates value in `page_albums`"/>
4040 </issue>
4041
4042 <issue
4043 id="DuplicateStrings"
4044 message="Duplicate string value `Albumok`, used in `header_albums` and `page_albums`"
4045 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumok&lt;/string>"
4046 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4047 <location
4048 file="res/values-hu/strings.xml"
4049 line="22"
4050 column="5"/>
4051 <location
4052 file="res/values-hu/strings.xml"
4053 line="26"
4054 column="5"
4055 message="Duplicates value in `page_albums`"/>
4056 </issue>
4057
4058 <issue
4059 id="DuplicateStrings"
4060 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4061 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4062 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4063 <location
4064 file="res/values-af/strings.xml"
4065 line="22"
4066 column="5"/>
4067 <location
4068 file="res/values-af/strings.xml"
4069 line="26"
4070 column="5"
4071 message="Duplicates value in `page_albums`"/>
4072 </issue>
4073
4074 <issue
4075 id="DuplicateStrings"
4076 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4077 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4078 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4079 <location
4080 file="res/values-en-rAU/strings.xml"
4081 line="22"
4082 column="5"/>
4083 <location
4084 file="res/values-en-rAU/strings.xml"
4085 line="26"
4086 column="5"
4087 message="Duplicates value in `page_albums`"/>
4088 </issue>
4089
4090 <issue
4091 id="DuplicateStrings"
4092 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4093 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4094 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4095 <location
4096 file="res/values-en-rCA/strings.xml"
4097 line="22"
4098 column="5"/>
4099 <location
4100 file="res/values-en-rCA/strings.xml"
4101 line="26"
4102 column="5"
4103 message="Duplicates value in `page_albums`"/>
4104 </issue>
4105
4106 <issue
4107 id="DuplicateStrings"
4108 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4109 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4110 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4111 <location
4112 file="res/values-en-rGB/strings.xml"
4113 line="22"
4114 column="5"/>
4115 <location
4116 file="res/values-en-rGB/strings.xml"
4117 line="26"
4118 column="5"
4119 message="Duplicates value in `page_albums`"/>
4120 </issue>
4121
4122 <issue
4123 id="DuplicateStrings"
4124 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4125 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4126 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4127 <location
4128 file="res/values-en-rIN/strings.xml"
4129 line="22"
4130 column="5"/>
4131 <location
4132 file="res/values-en-rIN/strings.xml"
4133 line="26"
4134 column="5"
4135 message="Duplicates value in `page_albums`"/>
4136 </issue>
4137
4138 <issue
4139 id="DuplicateStrings"
4140 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4141 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4142 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4143 <location
4144 file="res/values-fr/strings.xml"
4145 line="22"
4146 column="5"/>
4147 <location
4148 file="res/values-fr/strings.xml"
4149 line="26"
4150 column="5"
4151 message="Duplicates value in `page_albums`"/>
4152 </issue>
4153
4154 <issue
4155 id="DuplicateStrings"
4156 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4157 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4158 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4159 <location
4160 file="res/values-fy-rNL/strings.xml"
4161 line="22"
4162 column="5"/>
4163 <location
4164 file="res/values-fy-rNL/strings.xml"
4165 line="26"
4166 column="5"
4167 message="Duplicates value in `page_albums`"/>
4168 </issue>
4169
4170 <issue
4171 id="DuplicateStrings"
4172 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4173 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4174 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4175 <location
4176 file="res/values-nl/strings.xml"
4177 line="22"
4178 column="5"/>
4179 <location
4180 file="res/values-nl/strings.xml"
4181 line="26"
4182 column="5"
4183 message="Duplicates value in `page_albums`"/>
4184 </issue>
4185
4186 <issue
4187 id="DuplicateStrings"
4188 message="Duplicate string value `Albumy`, used in `header_albums` and `page_albums`"
4189 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumy&lt;/string>"
4190 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4191 <location
4192 file="res/values-pl/strings.xml"
4193 line="22"
4194 column="5"/>
4195 <location
4196 file="res/values-pl/strings.xml"
4197 line="26"
4198 column="5"
4199 message="Duplicates value in `page_albums`"/>
4200 </issue>
4201
4202 <issue
4203 id="DuplicateStrings"
4204 message="Duplicate string value `Albumy`, used in `header_albums` and `page_albums`"
4205 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albumy&lt;/string>"
4206 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4207 <location
4208 file="res/values-sk/strings.xml"
4209 line="22"
4210 column="5"/>
4211 <location
4212 file="res/values-sk/strings.xml"
4213 line="26"
4214 column="5"
4215 message="Duplicates value in `page_albums`"/>
4216 </issue>
4217
4218 <issue
4219 id="DuplicateStrings"
4220 message="Duplicate string value `Albümler`, used in `header_albums` and `page_albums`"
4221 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albümler&lt;/string>"
4222 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4223 <location
4224 file="res/values-tr/strings.xml"
4225 line="22"
4226 column="5"/>
4227 <location
4228 file="res/values-tr/strings.xml"
4229 line="26"
4230 column="5"
4231 message="Duplicates value in `page_albums`"/>
4232 </issue>
4233
4234 <issue
4235 id="DuplicateStrings"
4236 message="Duplicate string value `Casgliadau`, used in `header_albums` and `page_albums`"
4237 errorLine1=" &lt;string name=&quot;page_albums&quot;>Casgliadau&lt;/string>"
4238 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4239 <location
4240 file="res/values-cy/strings.xml"
4241 line="22"
4242 column="5"/>
4243 <location
4244 file="res/values-cy/strings.xml"
4245 line="26"
4246 column="5"
4247 message="Duplicates value in `page_albums`"/>
4248 </issue>
4249
4250 <issue
4251 id="DuplicateStrings"
4252 message="Duplicate string value `Àlbums`, used in `header_albums` and `page_albums`"
4253 errorLine1=" &lt;string name=&quot;page_albums&quot;>Àlbums&lt;/string>"
4254 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4255 <location
4256 file="res/values-ca/strings.xml"
4257 line="22"
4258 column="5"/>
4259 <location
4260 file="res/values-ca/strings.xml"
4261 line="26"
4262 column="5"
4263 message="Duplicates value in `page_albums`"/>
4264 </issue>
4265
4266 <issue
4267 id="DuplicateStrings"
4268 message="Duplicate string value `Álbumes`, used in `header_albums` and `page_albums`"
4269 errorLine1=" &lt;string name=&quot;page_albums&quot;>Álbumes&lt;/string>"
4270 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4271 <location
4272 file="res/values-ast-rES/strings.xml"
4273 line="22"
4274 column="5"/>
4275 <location
4276 file="res/values-ast-rES/strings.xml"
4277 line="26"
4278 column="5"
4279 message="Duplicates value in `page_albums`"/>
4280 </issue>
4281
4282 <issue
4283 id="DuplicateStrings"
4284 message="Duplicate string value `Álbumes`, used in `header_albums` and `page_albums`"
4285 errorLine1=" &lt;string name=&quot;page_albums&quot;>Álbumes&lt;/string>"
4286 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4287 <location
4288 file="res/values-es-rUS/strings.xml"
4289 line="22"
4290 column="5"/>
4291 <location
4292 file="res/values-es-rUS/strings.xml"
4293 line="26"
4294 column="5"
4295 message="Duplicates value in `page_albums`"/>
4296 </issue>
4297
4298 <issue
4299 id="DuplicateStrings"
4300 message="Duplicate string value `Álbumes`, used in `header_albums` and `page_albums`"
4301 errorLine1=" &lt;string name=&quot;page_albums&quot;>Álbumes&lt;/string>"
4302 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4303 <location
4304 file="res/values-es/strings.xml"
4305 line="22"
4306 column="5"/>
4307 <location
4308 file="res/values-es/strings.xml"
4309 line="26"
4310 column="5"
4311 message="Duplicates value in `page_albums`"/>
4312 </issue>
4313
4314 <issue
4315 id="DuplicateStrings"
4316 message="Duplicate string value `Álbums`, used in `header_albums` and `page_albums`"
4317 errorLine1=" &lt;string name=&quot;page_albums&quot;>Álbums&lt;/string>"
4318 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4319 <location
4320 file="res/values-gl/strings.xml"
4321 line="22"
4322 column="5"/>
4323 <location
4324 file="res/values-gl/strings.xml"
4325 line="26"
4326 column="5"
4327 message="Duplicates value in `page_albums`"/>
4328 </issue>
4329
4330 <issue
4331 id="DuplicateStrings"
4332 message="Duplicate string value `Álbuns`, used in `header_albums` and `page_albums`"
4333 errorLine1=" &lt;string name=&quot;page_albums&quot;>Álbuns&lt;/string>"
4334 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4335 <location
4336 file="res/values-pt-rBR/strings.xml"
4337 line="22"
4338 column="5"/>
4339 <location
4340 file="res/values-pt-rBR/strings.xml"
4341 line="26"
4342 column="5"
4343 message="Duplicates value in `page_albums`"/>
4344 </issue>
4345
4346 <issue
4347 id="DuplicateStrings"
4348 message="Duplicate string value `Álbuns`, used in `header_albums` and `page_albums`"
4349 errorLine1=" &lt;string name=&quot;page_albums&quot;>Álbuns&lt;/string>"
4350 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4351 <location
4352 file="res/values-pt-rPT/strings.xml"
4353 line="22"
4354 column="5"/>
4355 <location
4356 file="res/values-pt-rPT/strings.xml"
4357 line="26"
4358 column="5"
4359 message="Duplicates value in `page_albums`"/>
4360 </issue>
4361
4362 <issue
4363 id="DuplicateStrings"
4364 message="Duplicate string value `Άλμπουμ`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4365 errorLine1=" &lt;string name=&quot;page_albums&quot;>Άλμπουμ&lt;/string>"
4366 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4367 <location
4368 file="res/values-el/strings.xml"
4369 line="22"
4370 column="5"/>
4371 <location
4372 file="res/values-el/strings.xml"
4373 line="26"
4374 column="5"
4375 message="Duplicates value in `page_albums`"/>
4376 <location
4377 file="res/values-el/strings.xml"
4378 line="48"
4379 column="5"
4380 message="Duplicates value in `page_albums`"/>
4381 </issue>
4382
4383 <issue
4384 id="DuplicateStrings"
4385 message="Duplicate string value `Албуми`, used in `header_albums` and `page_albums`"
4386 errorLine1=" &lt;string name=&quot;page_albums&quot;>Албуми&lt;/string>"
4387 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4388 <location
4389 file="res/values-bg/strings.xml"
4390 line="22"
4391 column="5"/>
4392 <location
4393 file="res/values-bg/strings.xml"
4394 line="26"
4395 column="5"
4396 message="Duplicates value in `page_albums`"/>
4397 </issue>
4398
4399 <issue
4400 id="DuplicateStrings"
4401 message="Duplicate string value `Албуми`, used in `header_albums` and `page_albums`"
4402 errorLine1=" &lt;string name=&quot;page_albums&quot;>Албуми&lt;/string>"
4403 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4404 <location
4405 file="res/values-sr/strings.xml"
4406 line="22"
4407 column="5"/>
4408 <location
4409 file="res/values-sr/strings.xml"
4410 line="26"
4411 column="5"
4412 message="Duplicates value in `page_albums`"/>
4413 </issue>
4414
4415 <issue
4416 id="DuplicateStrings"
4417 message="Duplicate string value `Альбоми`, used in `header_albums` and `page_albums`"
4418 errorLine1=" &lt;string name=&quot;page_albums&quot;>Альбоми&lt;/string>"
4419 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4420 <location
4421 file="res/values-uk/strings.xml"
4422 line="22"
4423 column="5"/>
4424 <location
4425 file="res/values-uk/strings.xml"
4426 line="26"
4427 column="5"
4428 message="Duplicates value in `page_albums`"/>
4429 </issue>
4430
4431 <issue
4432 id="DuplicateStrings"
4433 message="Duplicate string value `Альбомы`, used in `header_albums` and `page_albums`"
4434 errorLine1=" &lt;string name=&quot;page_albums&quot;>Альбомы&lt;/string>"
4435 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4436 <location
4437 file="res/values-be/strings.xml"
4438 line="22"
4439 column="5"/>
4440 <location
4441 file="res/values-be/strings.xml"
4442 line="26"
4443 column="5"
4444 message="Duplicates value in `page_albums`"/>
4445 </issue>
4446
4447 <issue
4448 id="DuplicateStrings"
4449 message="Duplicate string value `Альбомы`, used in `header_albums` and `page_albums`"
4450 errorLine1=" &lt;string name=&quot;page_albums&quot;>Альбомы&lt;/string>"
4451 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4452 <location
4453 file="res/values-ru/strings.xml"
4454 line="22"
4455 column="5"/>
4456 <location
4457 file="res/values-ru/strings.xml"
4458 line="26"
4459 column="5"
4460 message="Duplicates value in `page_albums`"/>
4461 </issue>
4462
4463 <issue
4464 id="DuplicateStrings"
4465 message="Duplicate string value `אלבומים`, used in `header_albums` and `page_albums`"
4466 errorLine1=" &lt;string name=&quot;page_albums&quot;>אלבומים&lt;/string>"
4467 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4468 <location
4469 file="res/values-iw/strings.xml"
4470 line="22"
4471 column="5"/>
4472 <location
4473 file="res/values-iw/strings.xml"
4474 line="26"
4475 column="5"
4476 message="Duplicates value in `page_albums`"/>
4477 </issue>
4478
4479 <issue
4480 id="DuplicateStrings"
4481 message="Duplicate string value `آلبوم‌ها`, used in `header_albums` and `page_albums`"
4482 errorLine1=" &lt;string name=&quot;page_albums&quot;>آلبوم‌ها&lt;/string>"
4483 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4484 <location
4485 file="res/values-fa/strings.xml"
4486 line="22"
4487 column="5"/>
4488 <location
4489 file="res/values-fa/strings.xml"
4490 line="26"
4491 column="5"
4492 message="Duplicates value in `page_albums`"/>
4493 </issue>
4494
4495 <issue
4496 id="DuplicateStrings"
4497 message="Duplicate string value `ألبومات`, used in `header_albums` and `page_albums`"
4498 errorLine1=" &lt;string name=&quot;page_albums&quot;>ألبومات&lt;/string>"
4499 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4500 <location
4501 file="res/values-ar/strings.xml"
4502 line="22"
4503 column="5"/>
4504 <location
4505 file="res/values-ar/strings.xml"
4506 line="26"
4507 column="5"
4508 message="Duplicates value in `page_albums`"/>
4509 </issue>
4510
4511 <issue
4512 id="DuplicateStrings"
4513 message="Duplicate string value `ئالبۇم`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4514 errorLine1=" &lt;string name=&quot;page_albums&quot;>ئالبۇم&lt;/string>"
4515 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4516 <location
4517 file="res/values-ug/strings.xml"
4518 line="22"
4519 column="5"/>
4520 <location
4521 file="res/values-ug/strings.xml"
4522 line="26"
4523 column="5"
4524 message="Duplicates value in `page_albums`"/>
4525 <location
4526 file="res/values-ug/strings.xml"
4527 line="48"
4528 column="5"
4529 message="Duplicates value in `page_albums`"/>
4530 </issue>
4531
4532 <issue
4533 id="DuplicateStrings"
4534 message="Duplicate string value `ئەلبوم`, used in `header_albums` and `page_albums`"
4535 errorLine1=" &lt;string name=&quot;page_albums&quot;>ئەلبوم&lt;/string>"
4536 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4537 <location
4538 file="res/values-ku/strings.xml"
4539 line="22"
4540 column="5"/>
4541 <location
4542 file="res/values-ku/strings.xml"
4543 line="26"
4544 column="5"
4545 message="Duplicates value in `page_albums`"/>
4546 </issue>
4547
4548 <issue
4549 id="DuplicateStrings"
4550 message="Duplicate string value `अल्बम्स`, used in `header_albums` and `page_albums`"
4551 errorLine1=" &lt;string name=&quot;page_albums&quot;>अल्बम्स&lt;/string>"
4552 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4553 <location
4554 file="res/values-mr/strings.xml"
4555 line="22"
4556 column="5"/>
4557 <location
4558 file="res/values-mr/strings.xml"
4559 line="26"
4560 column="5"
4561 message="Duplicates value in `page_albums`"/>
4562 </issue>
4563
4564 <issue
4565 id="DuplicateStrings"
4566 message="Duplicate string value `एल्बम`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4567 errorLine1=" &lt;string name=&quot;page_albums&quot;>एल्बम&lt;/string>"
4568 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4569 <location
4570 file="res/values-hi/strings.xml"
4571 line="22"
4572 column="5"/>
4573 <location
4574 file="res/values-hi/strings.xml"
4575 line="26"
4576 column="5"
4577 message="Duplicates value in `page_albums`"/>
4578 <location
4579 file="res/values-hi/strings.xml"
4580 line="48"
4581 column="5"
4582 message="Duplicates value in `page_albums`"/>
4583 </issue>
4584
4585 <issue
4586 id="DuplicateStrings"
4587 message="Duplicate string value `এলবামসমূহ`, used in `header_albums` and `page_albums`"
4588 errorLine1=" &lt;string name=&quot;page_albums&quot;>এলবামসমূহ&lt;/string>"
4589 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4590 <location
4591 file="res/values-as/strings.xml"
4592 line="22"
4593 column="5"/>
4594 <location
4595 file="res/values-as/strings.xml"
4596 line="26"
4597 column="5"
4598 message="Duplicates value in `page_albums`"/>
4599 </issue>
4600
4601 <issue
4602 id="DuplicateStrings"
4603 message="Duplicate string value `આલબ્મ્સ`, used in `header_albums` and `page_albums`"
4604 errorLine1=" &lt;string name=&quot;page_albums&quot;>આલબ્મ્સ&lt;/string>"
4605 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4606 <location
4607 file="res/values-gu/strings.xml"
4608 line="22"
4609 column="5"/>
4610 <location
4611 file="res/values-gu/strings.xml"
4612 line="26"
4613 column="5"
4614 message="Duplicates value in `page_albums`"/>
4615 </issue>
4616
4617 <issue
4618 id="DuplicateStrings"
4619 message="Duplicate string value `ଆଲବମଗୁଡିକ`, used in `header_albums` and `page_albums`"
4620 errorLine1=" &lt;string name=&quot;page_albums&quot;>ଆଲବମଗୁଡିକ&lt;/string>"
4621 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4622 <location
4623 file="res/values-or/strings.xml"
4624 line="22"
4625 column="5"/>
4626 <location
4627 file="res/values-or/strings.xml"
4628 line="26"
4629 column="5"
4630 message="Duplicates value in `page_albums`"/>
4631 </issue>
4632
4633 <issue
4634 id="DuplicateStrings"
4635 message="Duplicate string value `ஆல்பங்கள்`, used in `header_albums` and `page_albums`"
4636 errorLine1=" &lt;string name=&quot;page_albums&quot;>ஆல்பங்கள்&lt;/string>"
4637 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4638 <location
4639 file="res/values-ta/strings.xml"
4640 line="22"
4641 column="5"/>
4642 <location
4643 file="res/values-ta/strings.xml"
4644 line="26"
4645 column="5"
4646 message="Duplicates value in `page_albums`"/>
4647 </issue>
4648
4649 <issue
4650 id="DuplicateStrings"
4651 message="Duplicate string value `ఆల్బమ్‌లు`, used in `header_albums` and `page_albums`"
4652 errorLine1=" &lt;string name=&quot;page_albums&quot;>ఆల్బమ్‌లు&lt;/string>"
4653 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4654 <location
4655 file="res/values-te/strings.xml"
4656 line="22"
4657 column="5"/>
4658 <location
4659 file="res/values-te/strings.xml"
4660 line="26"
4661 column="5"
4662 message="Duplicates value in `page_albums`"/>
4663 </issue>
4664
4665 <issue
4666 id="DuplicateStrings"
4667 message="Duplicate string value `ആൽബങ്ങൾ`, used in `header_albums` and `page_albums`"
4668 errorLine1=" &lt;string name=&quot;page_albums&quot;>ആൽബങ്ങൾ&lt;/string>"
4669 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4670 <location
4671 file="res/values-ml/strings.xml"
4672 line="22"
4673 column="5"/>
4674 <location
4675 file="res/values-ml/strings.xml"
4676 line="26"
4677 column="5"
4678 message="Duplicates value in `page_albums`"/>
4679 </issue>
4680
4681 <issue
4682 id="DuplicateStrings"
4683 message="Duplicate string value `อัลบั้ม`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4684 errorLine1=" &lt;string name=&quot;page_albums&quot;>อัลบั้ม&lt;/string>"
4685 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4686 <location
4687 file="res/values-th/strings.xml"
4688 line="22"
4689 column="5"/>
4690 <location
4691 file="res/values-th/strings.xml"
4692 line="26"
4693 column="5"
4694 message="Duplicates value in `page_albums`"/>
4695 <location
4696 file="res/values-th/strings.xml"
4697 line="48"
4698 column="5"
4699 message="Duplicates value in `page_albums`"/>
4700 </issue>
4701
4702 <issue
4703 id="DuplicateStrings"
4704 message="Duplicate string value `アルバム`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4705 errorLine1=" &lt;string name=&quot;page_albums&quot;>アルバム&lt;/string>"
4706 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4707 <location
4708 file="res/values-ja/strings.xml"
4709 line="22"
4710 column="5"/>
4711 <location
4712 file="res/values-ja/strings.xml"
4713 line="26"
4714 column="5"
4715 message="Duplicates value in `page_albums`"/>
4716 <location
4717 file="res/values-ja/strings.xml"
4718 line="48"
4719 column="5"
4720 message="Duplicates value in `page_albums`"/>
4721 </issue>
4722
4723 <issue
4724 id="DuplicateStrings"
4725 message="Duplicate string value `专辑`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4726 errorLine1=" &lt;string name=&quot;page_albums&quot;>专辑&lt;/string>"
4727 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4728 <location
4729 file="res/values-zh-rCN/strings.xml"
4730 line="22"
4731 column="5"/>
4732 <location
4733 file="res/values-zh-rCN/strings.xml"
4734 line="26"
4735 column="5"
4736 message="Duplicates value in `page_albums`"/>
4737 <location
4738 file="res/values-zh-rCN/strings.xml"
4739 line="48"
4740 column="5"
4741 message="Duplicates value in `page_albums`"/>
4742 </issue>
4743
4744 <issue
4745 id="DuplicateStrings"
4746 message="Duplicate string value `專輯`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4747 errorLine1=" &lt;string name=&quot;page_albums&quot;>專輯&lt;/string>"
4748 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4749 <location
4750 file="res/values-zh-rTW/strings.xml"
4751 line="22"
4752 column="5"/>
4753 <location
4754 file="res/values-zh-rTW/strings.xml"
4755 line="26"
4756 column="5"
4757 message="Duplicates value in `page_albums`"/>
4758 <location
4759 file="res/values-zh-rTW/strings.xml"
4760 line="48"
4761 column="5"
4762 message="Duplicates value in `page_albums`"/>
4763 </issue>
4764
4765 <issue
4766 id="DuplicateStrings"
4767 message="Duplicate string value `앨범`, used in `header_albums`, `page_albums` and `sort_order_entry_album`"
4768 errorLine1=" &lt;string name=&quot;page_albums&quot;>앨범&lt;/string>"
4769 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4770 <location
4771 file="res/values-ko/strings.xml"
4772 line="22"
4773 column="5"/>
4774 <location
4775 file="res/values-ko/strings.xml"
4776 line="26"
4777 column="5"
4778 message="Duplicates value in `page_albums`"/>
4779 <location
4780 file="res/values-ko/strings.xml"
4781 line="48"
4782 column="5"
4783 message="Duplicates value in `page_albums`"/>
4784 </issue>
4785
4786 <issue
4787 id="DuplicateStrings"
4788 message="Duplicate string value `Albums`, used in `header_albums` and `page_albums`"
4789 errorLine1=" &lt;string name=&quot;page_albums&quot;>Albums&lt;/string>"
4790 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4791 <location
4792 file="res/values/strings.xml"
4793 line="25"
4794 column="5"/>
4795 <location
4796 file="res/values/strings.xml"
4797 line="31"
4798 column="5"
4799 message="Duplicates value in `page_albums`"/>
4800 </issue>
4801
4802 <issue
4803 id="DuplicateStrings"
4804 message="Duplicate string value `隨機播放`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4805 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>隨機播放&lt;/string>"
4806 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4807 <location
4808 file="res/values-zh-rHK/strings.xml"
4809 line="25"
4810 column="5"/>
4811 <location
4812 file="res/values-zh-rHK/strings.xml"
4813 line="80"
4814 column="5"
4815 message="Duplicates value in `menu_shuffle_item`"/>
4816 </issue>
4817
4818 <issue
4819 id="DuplicateStrings"
4820 message="Duplicate string value `Albumi`, used in `header_albums` and `sort_order_entry_album`"
4821 errorLine1=" &lt;string name=&quot;header_albums&quot;>Albumi&lt;/string>"
4822 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4823 <location
4824 file="res/values-fi/strings.xml"
4825 line="26"
4826 column="5"/>
4827 <location
4828 file="res/values-fi/strings.xml"
4829 line="48"
4830 column="5"
4831 message="Duplicates value in `header_albums`"/>
4832 </issue>
4833
4834 <issue
4835 id="DuplicateStrings"
4836 message="Duplicate string value `ಷಫಲ್`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4837 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>ಷಫಲ್&lt;/string>"
4838 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4839 <location
4840 file="res/values-kn/strings.xml"
4841 line="28"
4842 column="5"/>
4843 <location
4844 file="res/values-kn/strings.xml"
4845 line="87"
4846 column="5"
4847 message="Duplicates value in `menu_shuffle_item`"/>
4848 </issue>
4849
4850 <issue
4851 id="DuplicateStrings"
4852 message="Duplicate string value `Acak`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4853 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Acak&lt;/string>"
4854 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4855 <location
4856 file="res/values-in/strings.xml"
4857 line="29"
4858 column="5"/>
4859 <location
4860 file="res/values-in/strings.xml"
4861 line="88"
4862 column="5"
4863 message="Duplicates value in `menu_shuffle_item`"/>
4864 </issue>
4865
4866 <issue
4867 id="DuplicateStrings"
4868 message="Duplicate string value `Air thuaiream`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4869 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Air thuaiream&lt;/string>"
4870 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4871 <location
4872 file="res/values-gd/strings.xml"
4873 line="29"
4874 column="5"/>
4875 <location
4876 file="res/values-gd/strings.xml"
4877 line="88"
4878 column="5"
4879 message="Duplicates value in `menu_shuffle_item`"/>
4880 </issue>
4881
4882 <issue
4883 id="DuplicateStrings"
4884 message="Duplicate string value `Al debalu`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4885 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Al debalu&lt;/string>"
4886 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4887 <location
4888 file="res/values-ast-rES/strings.xml"
4889 line="29"
4890 column="5"/>
4891 <location
4892 file="res/values-ast-rES/strings.xml"
4893 line="88"
4894 column="5"
4895 message="Duplicates value in `menu_shuffle_item`"/>
4896 </issue>
4897
4898 <issue
4899 id="DuplicateStrings"
4900 message="Duplicate string value `Aleatório`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4901 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Aleatório&lt;/string>"
4902 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4903 <location
4904 file="res/values-pt-rBR/strings.xml"
4905 line="29"
4906 column="5"/>
4907 <location
4908 file="res/values-pt-rBR/strings.xml"
4909 line="88"
4910 column="5"
4911 message="Duplicates value in `menu_shuffle_item`"/>
4912 </issue>
4913
4914 <issue
4915 id="DuplicateStrings"
4916 message="Duplicate string value `Ao chou`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4917 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Ao chou&lt;/string>"
4918 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4919 <location
4920 file="res/values-gl/strings.xml"
4921 line="29"
4922 column="5"/>
4923 <location
4924 file="res/values-gl/strings.xml"
4925 line="88"
4926 column="5"
4927 message="Duplicates value in `menu_shuffle_item`"/>
4928 </issue>
4929
4930 <issue
4931 id="DuplicateStrings"
4932 message="Duplicate string value `Barreja`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4933 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Barreja&lt;/string>"
4934 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4935 <location
4936 file="res/values-ca/strings.xml"
4937 line="29"
4938 column="5"/>
4939 <location
4940 file="res/values-ca/strings.xml"
4941 line="88"
4942 column="5"
4943 message="Duplicates value in `menu_shuffle_item`"/>
4944 </issue>
4945
4946 <issue
4947 id="DuplicateStrings"
4948 message="Duplicate string value `Bland`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4949 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Bland&lt;/string>"
4950 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4951 <location
4952 file="res/values-da/strings.xml"
4953 line="29"
4954 column="5"/>
4955 <location
4956 file="res/values-da/strings.xml"
4957 line="88"
4958 column="5"
4959 message="Duplicates value in `menu_shuffle_item`"/>
4960 </issue>
4961
4962 <issue
4963 id="DuplicateStrings"
4964 message="Duplicate string value `Blanda`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4965 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Blanda&lt;/string>"
4966 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4967 <location
4968 file="res/values-sv/strings.xml"
4969 line="29"
4970 column="5"/>
4971 <location
4972 file="res/values-sv/strings.xml"
4973 line="88"
4974 column="5"
4975 message="Duplicates value in `menu_shuffle_item`"/>
4976 </issue>
4977
4978 <issue
4979 id="DuplicateStrings"
4980 message="Duplicate string value `Cymysgu`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4981 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Cymysgu&lt;/string>"
4982 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4983 <location
4984 file="res/values-cy/strings.xml"
4985 line="29"
4986 column="5"/>
4987 <location
4988 file="res/values-cy/strings.xml"
4989 line="88"
4990 column="5"
4991 message="Duplicates value in `menu_shuffle_item`"/>
4992 </issue>
4993
4994 <issue
4995 id="DuplicateStrings"
4996 message="Duplicate string value `Jaukt`, used in `accessibility_shuffle` and `menu_shuffle_item`"
4997 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Jaukt&lt;/string>"
4998 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
4999 <location
5000 file="res/values-lv/strings.xml"
5001 line="29"
5002 column="5"/>
5003 <location
5004 file="res/values-lv/strings.xml"
5005 line="86"
5006 column="5"
5007 message="Duplicates value in `menu_shuffle_item`"/>
5008 </issue>
5009
5010 <issue
5011 id="DuplicateStrings"
5012 message="Duplicate string value `Juhuesitus`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5013 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Juhuesitus&lt;/string>"
5014 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5015 <location
5016 file="res/values-et/strings.xml"
5017 line="29"
5018 column="5"/>
5019 <location
5020 file="res/values-et/strings.xml"
5021 line="88"
5022 column="5"
5023 message="Duplicates value in `menu_shuffle_item`"/>
5024 </issue>
5025
5026 <issue
5027 id="DuplicateStrings"
5028 message="Duplicate string value `Karıştır`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5029 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Karıştır&lt;/string>"
5030 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5031 <location
5032 file="res/values-tr/strings.xml"
5033 line="29"
5034 column="5"/>
5035 <location
5036 file="res/values-tr/strings.xml"
5037 line="88"
5038 column="5"
5039 message="Duplicates value in `menu_shuffle_item`"/>
5040 </issue>
5041
5042 <issue
5043 id="DuplicateStrings"
5044 message="Duplicate string value `Lecture aléatoire`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5045 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Lecture aléatoire&lt;/string>"
5046 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5047 <location
5048 file="res/values-fr/strings.xml"
5049 line="29"
5050 column="5"/>
5051 <location
5052 file="res/values-fr/strings.xml"
5053 line="88"
5054 column="5"
5055 message="Duplicates value in `menu_shuffle_item`"/>
5056 </issue>
5057
5058 <issue
5059 id="DuplicateStrings"
5060 message="Duplicate string value `Losowo`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5061 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Losowo&lt;/string>"
5062 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5063 <location
5064 file="res/values-pl/strings.xml"
5065 line="29"
5066 column="5"/>
5067 <location
5068 file="res/values-pl/strings.xml"
5069 line="88"
5070 column="5"
5071 message="Duplicates value in `menu_shuffle_item`"/>
5072 </issue>
5073
5074 <issue
5075 id="DuplicateStrings"
5076 message="Duplicate string value `Maišyti`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5077 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Maišyti&lt;/string>"
5078 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5079 <location
5080 file="res/values-lt/strings.xml"
5081 line="29"
5082 column="5"/>
5083 <location
5084 file="res/values-lt/strings.xml"
5085 line="88"
5086 column="5"
5087 message="Duplicates value in `menu_shuffle_item`"/>
5088 </issue>
5089
5090 <issue
5091 id="DuplicateStrings"
5092 message="Duplicate string value `Mezclar`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5093 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Mezclar&lt;/string>"
5094 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5095 <location
5096 file="res/values-es/strings.xml"
5097 line="29"
5098 column="5"/>
5099 <location
5100 file="res/values-es/strings.xml"
5101 line="88"
5102 column="5"
5103 message="Duplicates value in `menu_shuffle_item`"/>
5104 </issue>
5105
5106 <issue
5107 id="DuplicateStrings"
5108 message="Duplicate string value `Miješaj`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5109 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Miješaj&lt;/string>"
5110 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5111 <location
5112 file="res/values-hr/strings.xml"
5113 line="29"
5114 column="5"/>
5115 <location
5116 file="res/values-hr/strings.xml"
5117 line="88"
5118 column="5"
5119 message="Duplicates value in `menu_shuffle_item`"/>
5120 </issue>
5121
5122 <issue
5123 id="DuplicateStrings"
5124 message="Duplicate string value `Mjokselje`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5125 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Mjokselje&lt;/string>"
5126 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5127 <location
5128 file="res/values-fy-rNL/strings.xml"
5129 line="29"
5130 column="5"/>
5131 <location
5132 file="res/values-fy-rNL/strings.xml"
5133 line="88"
5134 column="5"
5135 message="Duplicates value in `menu_shuffle_item`"/>
5136 </issue>
5137
5138 <issue
5139 id="DuplicateStrings"
5140 message="Duplicate string value `Mëschen`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5141 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Mëschen&lt;/string>"
5142 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5143 <location
5144 file="res/values-lb/strings.xml"
5145 line="29"
5146 column="5"/>
5147 <location
5148 file="res/values-lb/strings.xml"
5149 line="88"
5150 column="5"
5151 message="Duplicates value in `menu_shuffle_item`"/>
5152 </issue>
5153
5154 <issue
5155 id="DuplicateStrings"
5156 message="Duplicate string value `Nahastu`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5157 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Nahastu&lt;/string>"
5158 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5159 <location
5160 file="res/values-eu/strings.xml"
5161 line="29"
5162 column="5"/>
5163 <location
5164 file="res/values-eu/strings.xml"
5165 line="88"
5166 column="5"
5167 message="Duplicates value in `menu_shuffle_item`"/>
5168 </issue>
5169
5170 <issue
5171 id="DuplicateStrings"
5172 message="Duplicate string value `Náhodně`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5173 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Náhodně&lt;/string>"
5174 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5175 <location
5176 file="res/values-cs/strings.xml"
5177 line="29"
5178 column="5"/>
5179 <location
5180 file="res/values-cs/strings.xml"
5181 line="88"
5182 column="5"
5183 message="Duplicates value in `menu_shuffle_item`"/>
5184 </issue>
5185
5186 <issue
5187 id="DuplicateStrings"
5188 message="Duplicate string value `Phát ngẫu nhiên`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5189 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Phát ngẫu nhiên&lt;/string>"
5190 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5191 <location
5192 file="res/values-vi/strings.xml"
5193 line="29"
5194 column="5"/>
5195 <location
5196 file="res/values-vi/strings.xml"
5197 line="88"
5198 column="5"
5199 message="Duplicates value in `menu_shuffle_item`"/>
5200 </issue>
5201
5202 <issue
5203 id="DuplicateStrings"
5204 message="Duplicate string value `Prehrať náhodne`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5205 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Prehrať náhodne&lt;/string>"
5206 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5207 <location
5208 file="res/values-sk/strings.xml"
5209 line="29"
5210 column="5"/>
5211 <location
5212 file="res/values-sk/strings.xml"
5213 line="88"
5214 column="5"
5215 message="Duplicates value in `menu_shuffle_item`"/>
5216 </issue>
5217
5218 <issue
5219 id="DuplicateStrings"
5220 message="Duplicate string value `Premešaj`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5221 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Premešaj&lt;/string>"
5222 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5223 <location
5224 file="res/values-sl/strings.xml"
5225 line="29"
5226 column="5"/>
5227 <location
5228 file="res/values-sl/strings.xml"
5229 line="88"
5230 column="5"
5231 message="Duplicates value in `menu_shuffle_item`"/>
5232 </issue>
5233
5234 <issue
5235 id="DuplicateStrings"
5236 message="Duplicate string value `Qarışdır`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5237 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Qarışdır&lt;/string>"
5238 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5239 <location
5240 file="res/values-az/strings.xml"
5241 line="29"
5242 column="5"/>
5243 <location
5244 file="res/values-az/strings.xml"
5245 line="88"
5246 column="5"
5247 message="Duplicates value in `menu_shuffle_item`"/>
5248 </issue>
5249
5250 <issue
5251 id="DuplicateStrings"
5252 message="Duplicate string value `Reproduzir aleatoriamente`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5253 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Reproduzir aleatoriamente&lt;/string>"
5254 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5255 <location
5256 file="res/values-pt-rPT/strings.xml"
5257 line="29"
5258 column="5"/>
5259 <location
5260 file="res/values-pt-rPT/strings.xml"
5261 line="88"
5262 column="5"
5263 message="Duplicates value in `menu_shuffle_item`"/>
5264 </issue>
5265
5266 <issue
5267 id="DuplicateStrings"
5268 message="Duplicate string value `Riproduzione casuale`, used in `accessibility_shuffle_all`, `accessibility_shuffle` and `menu_shuffle_item`"
5269 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Riproduzione casuale&lt;/string>"
5270 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5271 <location
5272 file="res/values-it/strings.xml"
5273 line="29"
5274 column="5"/>
5275 <location
5276 file="res/values-it/strings.xml"
5277 line="88"
5278 column="5"
5279 message="Duplicates value in `menu_shuffle_item`"/>
5280 <location
5281 file="res/values-it/strings.xml"
5282 line="89"
5283 column="5"
5284 message="Duplicates value in `menu_shuffle_item`"/>
5285 </issue>
5286
5287 <issue
5288 id="DuplicateStrings"
5289 message="Duplicate string value `Sekoita`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5290 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Sekoita&lt;/string>"
5291 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5292 <location
5293 file="res/values-fi/strings.xml"
5294 line="29"
5295 column="5"/>
5296 <location
5297 file="res/values-fi/strings.xml"
5298 line="88"
5299 column="5"
5300 message="Duplicates value in `menu_shuffle_item`"/>
5301 </issue>
5302
5303 <issue
5304 id="DuplicateStrings"
5305 message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5306 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Shuffle&lt;/string>"
5307 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5308 <location
5309 file="res/values-en-rAU/strings.xml"
5310 line="29"
5311 column="5"/>
5312 <location
5313 file="res/values-en-rAU/strings.xml"
5314 line="88"
5315 column="5"
5316 message="Duplicates value in `menu_shuffle_item`"/>
5317 </issue>
5318
5319 <issue
5320 id="DuplicateStrings"
5321 message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5322 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Shuffle&lt;/string>"
5323 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5324 <location
5325 file="res/values-en-rCA/strings.xml"
5326 line="29"
5327 column="5"/>
5328 <location
5329 file="res/values-en-rCA/strings.xml"
5330 line="88"
5331 column="5"
5332 message="Duplicates value in `menu_shuffle_item`"/>
5333 </issue>
5334
5335 <issue
5336 id="DuplicateStrings"
5337 message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5338 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Shuffle&lt;/string>"
5339 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5340 <location
5341 file="res/values-en-rGB/strings.xml"
5342 line="29"
5343 column="5"/>
5344 <location
5345 file="res/values-en-rGB/strings.xml"
5346 line="88"
5347 column="5"
5348 message="Duplicates value in `menu_shuffle_item`"/>
5349 </issue>
5350
5351 <issue
5352 id="DuplicateStrings"
5353 message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5354 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Shuffle&lt;/string>"
5355 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5356 <location
5357 file="res/values-en-rIN/strings.xml"
5358 line="29"
5359 column="5"/>
5360 <location
5361 file="res/values-en-rIN/strings.xml"
5362 line="88"
5363 column="5"
5364 message="Duplicates value in `menu_shuffle_item`"/>
5365 </issue>
5366
5367 <issue
5368 id="DuplicateStrings"
5369 message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5370 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Shuffle&lt;/string>"
5371 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5372 <location
5373 file="res/values-nb/strings.xml"
5374 line="29"
5375 column="5"/>
5376 <location
5377 file="res/values-nb/strings.xml"
5378 line="88"
5379 column="5"
5380 message="Duplicates value in `menu_shuffle_item`"/>
5381 </issue>
5382
5383 <issue
5384 id="DuplicateStrings"
5385 message="Duplicate string value `Skommel`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5386 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Skommel&lt;/string>"
5387 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5388 <location
5389 file="res/values-af/strings.xml"
5390 line="29"
5391 column="5"/>
5392 <location
5393 file="res/values-af/strings.xml"
5394 line="88"
5395 column="5"
5396 message="Duplicates value in `menu_shuffle_item`"/>
5397 </issue>
5398
5399 <issue
5400 id="DuplicateStrings"
5401 message="Duplicate string value `Zufällige Wiedergabe`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5402 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Zufällige Wiedergabe&lt;/string>"
5403 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5404 <location
5405 file="res/values-de/strings.xml"
5406 line="29"
5407 column="5"/>
5408 <location
5409 file="res/values-de/strings.xml"
5410 line="88"
5411 column="5"
5412 message="Duplicates value in `menu_shuffle_item`"/>
5413 </issue>
5414
5415 <issue
5416 id="DuplicateStrings"
5417 message="Duplicate string value `Τυχαία αναπαραγωγή`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5418 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Τυχαία αναπαραγωγή&lt;/string>"
5419 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5420 <location
5421 file="res/values-el/strings.xml"
5422 line="29"
5423 column="5"/>
5424 <location
5425 file="res/values-el/strings.xml"
5426 line="88"
5427 column="5"
5428 message="Duplicates value in `menu_shuffle_item`"/>
5429 </issue>
5430
5431 <issue
5432 id="DuplicateStrings"
5433 message="Duplicate string value `Насумично`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5434 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Насумично&lt;/string>"
5435 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5436 <location
5437 file="res/values-sr/strings.xml"
5438 line="29"
5439 column="5"/>
5440 <location
5441 file="res/values-sr/strings.xml"
5442 line="88"
5443 column="5"
5444 message="Duplicates value in `menu_shuffle_item`"/>
5445 </issue>
5446
5447 <issue
5448 id="DuplicateStrings"
5449 message="Duplicate string value `Перамяшаць`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5450 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Перамяшаць&lt;/string>"
5451 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5452 <location
5453 file="res/values-be/strings.xml"
5454 line="29"
5455 column="5"/>
5456 <location
5457 file="res/values-be/strings.xml"
5458 line="88"
5459 column="5"
5460 message="Duplicates value in `menu_shuffle_item`"/>
5461 </issue>
5462
5463 <issue
5464 id="DuplicateStrings"
5465 message="Duplicate string value `Перемешать`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5466 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Перемешать&lt;/string>"
5467 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5468 <location
5469 file="res/values-ru/strings.xml"
5470 line="29"
5471 column="5"/>
5472 <location
5473 file="res/values-ru/strings.xml"
5474 line="88"
5475 column="5"
5476 message="Duplicates value in `menu_shuffle_item`"/>
5477 </issue>
5478
5479 <issue
5480 id="DuplicateStrings"
5481 message="Duplicate string value `Перемішати`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5482 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Перемішати&lt;/string>"
5483 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5484 <location
5485 file="res/values-uk/strings.xml"
5486 line="29"
5487 column="5"/>
5488 <location
5489 file="res/values-uk/strings.xml"
5490 line="88"
5491 column="5"
5492 message="Duplicates value in `menu_shuffle_item`"/>
5493 </issue>
5494
5495 <issue
5496 id="DuplicateStrings"
5497 message="Duplicate string value `Разбъркване`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5498 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Разбъркване&lt;/string>"
5499 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5500 <location
5501 file="res/values-bg/strings.xml"
5502 line="29"
5503 column="5"/>
5504 <location
5505 file="res/values-bg/strings.xml"
5506 line="88"
5507 column="5"
5508 message="Duplicates value in `menu_shuffle_item`"/>
5509 </issue>
5510
5511 <issue
5512 id="DuplicateStrings"
5513 message="Duplicate string value `ערבב`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5514 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>ערבב&lt;/string>"
5515 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5516 <location
5517 file="res/values-iw/strings.xml"
5518 line="29"
5519 column="5"/>
5520 <location
5521 file="res/values-iw/strings.xml"
5522 line="88"
5523 column="5"
5524 message="Duplicates value in `menu_shuffle_item`"/>
5525 </issue>
5526
5527 <issue
5528 id="DuplicateStrings"
5529 message="Duplicate string value `تصادفی`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5530 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>تصادفی&lt;/string>"
5531 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5532 <location
5533 file="res/values-fa/strings.xml"
5534 line="29"
5535 column="5"/>
5536 <location
5537 file="res/values-fa/strings.xml"
5538 line="88"
5539 column="5"
5540 message="Duplicates value in `menu_shuffle_item`"/>
5541 </issue>
5542
5543 <issue
5544 id="DuplicateStrings"
5545 message="Duplicate string value `تەرتىپسىز`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5546 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>تەرتىپسىز&lt;/string>"
5547 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5548 <location
5549 file="res/values-ug/strings.xml"
5550 line="29"
5551 column="5"/>
5552 <location
5553 file="res/values-ug/strings.xml"
5554 line="88"
5555 column="5"
5556 message="Duplicates value in `menu_shuffle_item`"/>
5557 </issue>
5558
5559 <issue
5560 id="DuplicateStrings"
5561 message="Duplicate string value `خلْط`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5562 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>خلْط&lt;/string>"
5563 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5564 <location
5565 file="res/values-ar/strings.xml"
5566 line="29"
5567 column="5"/>
5568 <location
5569 file="res/values-ar/strings.xml"
5570 line="88"
5571 column="5"
5572 message="Duplicates value in `menu_shuffle_item`"/>
5573 </issue>
5574
5575 <issue
5576 id="DuplicateStrings"
5577 message="Duplicate string value `शफल`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5578 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>शफल&lt;/string>"
5579 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5580 <location
5581 file="res/values-mr/strings.xml"
5582 line="29"
5583 column="5"/>
5584 <location
5585 file="res/values-mr/strings.xml"
5586 line="88"
5587 column="5"
5588 message="Duplicates value in `menu_shuffle_item`"/>
5589 </issue>
5590
5591 <issue
5592 id="DuplicateStrings"
5593 message="Duplicate string value `शफ़ल करें`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5594 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>शफ़ल करें&lt;/string>"
5595 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5596 <location
5597 file="res/values-hi/strings.xml"
5598 line="29"
5599 column="5"/>
5600 <location
5601 file="res/values-hi/strings.xml"
5602 line="88"
5603 column="5"
5604 message="Duplicates value in `menu_shuffle_item`"/>
5605 </issue>
5606
5607 <issue
5608 id="DuplicateStrings"
5609 message="Duplicate string value `সানমিহলি কৰক`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5610 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>সানমিহলি কৰক&lt;/string>"
5611 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5612 <location
5613 file="res/values-as/strings.xml"
5614 line="29"
5615 column="5"/>
5616 <location
5617 file="res/values-as/strings.xml"
5618 line="88"
5619 column="5"
5620 message="Duplicates value in `menu_shuffle_item`"/>
5621 </issue>
5622
5623 <issue
5624 id="DuplicateStrings"
5625 message="Duplicate string value `પીસો`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5626 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>પીસો&lt;/string>"
5627 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5628 <location
5629 file="res/values-gu/strings.xml"
5630 line="29"
5631 column="5"/>
5632 <location
5633 file="res/values-gu/strings.xml"
5634 line="88"
5635 column="5"
5636 message="Duplicates value in `menu_shuffle_item`"/>
5637 </issue>
5638
5639 <issue
5640 id="DuplicateStrings"
5641 message="Duplicate string value `ସଫଲ୍`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5642 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>ସଫଲ୍&lt;/string>"
5643 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5644 <location
5645 file="res/values-or/strings.xml"
5646 line="29"
5647 column="5"/>
5648 <location
5649 file="res/values-or/strings.xml"
5650 line="88"
5651 column="5"
5652 message="Duplicates value in `menu_shuffle_item`"/>
5653 </issue>
5654
5655 <issue
5656 id="DuplicateStrings"
5657 message="Duplicate string value `குலை`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5658 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>குலை&lt;/string>"
5659 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5660 <location
5661 file="res/values-ta/strings.xml"
5662 line="29"
5663 column="5"/>
5664 <location
5665 file="res/values-ta/strings.xml"
5666 line="88"
5667 column="5"
5668 message="Duplicates value in `menu_shuffle_item`"/>
5669 </issue>
5670
5671 <issue
5672 id="DuplicateStrings"
5673 message="Duplicate string value `మార్చు`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5674 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>మార్చు&lt;/string>"
5675 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5676 <location
5677 file="res/values-te/strings.xml"
5678 line="29"
5679 column="5"/>
5680 <location
5681 file="res/values-te/strings.xml"
5682 line="88"
5683 column="5"
5684 message="Duplicates value in `menu_shuffle_item`"/>
5685 </issue>
5686
5687 <issue
5688 id="DuplicateStrings"
5689 message="Duplicate string value `ഷഫിൾ ചെയ്യുക`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5690 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>ഷഫിൾ ചെയ്യുക&lt;/string>"
5691 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5692 <location
5693 file="res/values-ml/strings.xml"
5694 line="29"
5695 column="5"/>
5696 <location
5697 file="res/values-ml/strings.xml"
5698 line="88"
5699 column="5"
5700 message="Duplicates value in `menu_shuffle_item`"/>
5701 </issue>
5702
5703 <issue
5704 id="DuplicateStrings"
5705 message="Duplicate string value `สลับ`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5706 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>สลับ&lt;/string>"
5707 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5708 <location
5709 file="res/values-th/strings.xml"
5710 line="29"
5711 column="5"/>
5712 <location
5713 file="res/values-th/strings.xml"
5714 line="88"
5715 column="5"
5716 message="Duplicates value in `menu_shuffle_item`"/>
5717 </issue>
5718
5719 <issue
5720 id="DuplicateStrings"
5721 message="Duplicate string value `シャッフル`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5722 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>シャッフル&lt;/string>"
5723 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5724 <location
5725 file="res/values-ja/strings.xml"
5726 line="29"
5727 column="5"/>
5728 <location
5729 file="res/values-ja/strings.xml"
5730 line="88"
5731 column="5"
5732 message="Duplicates value in `menu_shuffle_item`"/>
5733 </issue>
5734
5735 <issue
5736 id="DuplicateStrings"
5737 message="Duplicate string value `隨機播放`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5738 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>隨機播放&lt;/string>"
5739 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5740 <location
5741 file="res/values-zh-rTW/strings.xml"
5742 line="29"
5743 column="5"/>
5744 <location
5745 file="res/values-zh-rTW/strings.xml"
5746 line="88"
5747 column="5"
5748 message="Duplicates value in `menu_shuffle_item`"/>
5749 </issue>
5750
5751 <issue
5752 id="DuplicateStrings"
5753 message="Duplicate string value `셔플`, used in `accessibility_shuffle` and `menu_shuffle_item`"
5754 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>셔플&lt;/string>"
5755 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5756 <location
5757 file="res/values-ko/strings.xml"
5758 line="29"
5759 column="5"/>
5760 <location
5761 file="res/values-ko/strings.xml"
5762 line="88"
5763 column="5"
5764 message="Duplicates value in `menu_shuffle_item`"/>
5765 </issue>
5766
5767 <issue
5768 id="DuplicateStrings"
5769 message="Duplicate string value `Acak semua`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5770 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Acak semua&lt;/string>"
5771 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5772 <location
5773 file="res/values-in/strings.xml"
5774 line="30"
5775 column="5"/>
5776 <location
5777 file="res/values-in/strings.xml"
5778 line="89"
5779 column="5"
5780 message="Duplicates value in `menu_shuffle_all`"/>
5781 </issue>
5782
5783 <issue
5784 id="DuplicateStrings"
5785 message="Duplicate string value `Alles mjokselje`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5786 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Alles mjokselje&lt;/string>"
5787 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5788 <location
5789 file="res/values-fy-rNL/strings.xml"
5790 line="30"
5791 column="5"/>
5792 <location
5793 file="res/values-fy-rNL/strings.xml"
5794 line="89"
5795 column="5"
5796 message="Duplicates value in `menu_shuffle_all`"/>
5797 </issue>
5798
5799 <issue
5800 id="DuplicateStrings"
5801 message="Duplicate string value `Alles zufällig wiedergeben`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5802 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Alles zufällig wiedergeben&lt;/string>"
5803 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5804 <location
5805 file="res/values-de/strings.xml"
5806 line="30"
5807 column="5"/>
5808 <location
5809 file="res/values-de/strings.xml"
5810 line="89"
5811 column="5"
5812 message="Duplicates value in `menu_shuffle_all`"/>
5813 </issue>
5814
5815 <issue
5816 id="DuplicateStrings"
5817 message="Duplicate string value `Amestecă toate`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5818 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Amestecă toate&lt;/string>"
5819 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5820 <location
5821 file="res/values-ro/strings.xml"
5822 line="30"
5823 column="5"/>
5824 <location
5825 file="res/values-ro/strings.xml"
5826 line="89"
5827 column="5"
5828 message="Duplicates value in `menu_shuffle_all`"/>
5829 </issue>
5830
5831 <issue
5832 id="DuplicateStrings"
5833 message="Duplicate string value `Barreja-ho tot`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5834 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Barreja-ho tot&lt;/string>"
5835 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5836 <location
5837 file="res/values-ca/strings.xml"
5838 line="30"
5839 column="5"/>
5840 <location
5841 file="res/values-ca/strings.xml"
5842 line="89"
5843 column="5"
5844 message="Duplicates value in `menu_shuffle_all`"/>
5845 </issue>
5846
5847 <issue
5848 id="DuplicateStrings"
5849 message="Duplicate string value `Bland alle`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5850 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Bland alle&lt;/string>"
5851 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5852 <location
5853 file="res/values-da/strings.xml"
5854 line="30"
5855 column="5"/>
5856 <location
5857 file="res/values-da/strings.xml"
5858 line="89"
5859 column="5"
5860 message="Duplicates value in `menu_shuffle_all`"/>
5861 </issue>
5862
5863 <issue
5864 id="DuplicateStrings"
5865 message="Duplicate string value `Blanda alla`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5866 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Blanda alla&lt;/string>"
5867 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5868 <location
5869 file="res/values-sv/strings.xml"
5870 line="30"
5871 column="5"/>
5872 <location
5873 file="res/values-sv/strings.xml"
5874 line="89"
5875 column="5"
5876 message="Duplicates value in `menu_shuffle_all`"/>
5877 </issue>
5878
5879 <issue
5880 id="DuplicateStrings"
5881 message="Duplicate string value `Cymysgu\&apos;r cwbl`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5882 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Cymysgu\&apos;r cwbl&lt;/string>"
5883 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5884 <location
5885 file="res/values-cy/strings.xml"
5886 line="30"
5887 column="5"/>
5888 <location
5889 file="res/values-cy/strings.xml"
5890 line="89"
5891 column="5"
5892 message="Duplicates value in `menu_shuffle_all`"/>
5893 </issue>
5894
5895 <issue
5896 id="DuplicateStrings"
5897 message="Duplicate string value `Hamısını qarışdır`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5898 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Hamısını qarışdır&lt;/string>"
5899 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5900 <location
5901 file="res/values-az/strings.xml"
5902 line="30"
5903 column="5"/>
5904 <location
5905 file="res/values-az/strings.xml"
5906 line="89"
5907 column="5"
5908 message="Duplicates value in `menu_shuffle_all`"/>
5909 </issue>
5910
5911 <issue
5912 id="DuplicateStrings"
5913 message="Duplicate string value `Jaukt visu`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5914 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Jaukt visu&lt;/string>"
5915 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5916 <location
5917 file="res/values-lv/strings.xml"
5918 line="30"
5919 column="5"/>
5920 <location
5921 file="res/values-lv/strings.xml"
5922 line="87"
5923 column="5"
5924 message="Duplicates value in `menu_shuffle_all`"/>
5925 </issue>
5926
5927 <issue
5928 id="DuplicateStrings"
5929 message="Duplicate string value `Juhuesita kõik`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5930 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Juhuesita kõik&lt;/string>"
5931 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5932 <location
5933 file="res/values-et/strings.xml"
5934 line="30"
5935 column="5"/>
5936 <location
5937 file="res/values-et/strings.xml"
5938 line="89"
5939 column="5"
5940 message="Duplicates value in `menu_shuffle_all`"/>
5941 </issue>
5942
5943 <issue
5944 id="DuplicateStrings"
5945 message="Duplicate string value `Lecture aléatoire de tous les titres`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5946 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Lecture aléatoire de tous les titres&lt;/string>"
5947 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5948 <location
5949 file="res/values-fr/strings.xml"
5950 line="30"
5951 column="5"/>
5952 <location
5953 file="res/values-fr/strings.xml"
5954 line="89"
5955 column="5"
5956 message="Duplicates value in `menu_shuffle_all`"/>
5957 </issue>
5958
5959 <issue
5960 id="DuplicateStrings"
5961 message="Duplicate string value `Maišyti viską`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5962 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Maišyti viską&lt;/string>"
5963 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5964 <location
5965 file="res/values-lt/strings.xml"
5966 line="30"
5967 column="5"/>
5968 <location
5969 file="res/values-lt/strings.xml"
5970 line="89"
5971 column="5"
5972 message="Duplicates value in `menu_shuffle_all`"/>
5973 </issue>
5974
5975 <issue
5976 id="DuplicateStrings"
5977 message="Duplicate string value `Mezclar todas`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5978 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Mezclar todas&lt;/string>"
5979 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5980 <location
5981 file="res/values-es/strings.xml"
5982 line="30"
5983 column="5"/>
5984 <location
5985 file="res/values-es/strings.xml"
5986 line="89"
5987 column="5"
5988 message="Duplicates value in `menu_shuffle_all`"/>
5989 </issue>
5990
5991 <issue
5992 id="DuplicateStrings"
5993 message="Duplicate string value `Miješaj sve`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
5994 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Miješaj sve&lt;/string>"
5995 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
5996 <location
5997 file="res/values-hr/strings.xml"
5998 line="30"
5999 column="5"/>
6000 <location
6001 file="res/values-hr/strings.xml"
6002 line="89"
6003 column="5"
6004 message="Duplicates value in `menu_shuffle_all`"/>
6005 </issue>
6006
6007 <issue
6008 id="DuplicateStrings"
6009 message="Duplicate string value `Na h-uile air thuaiream`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6010 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Na h-uile air thuaiream&lt;/string>"
6011 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6012 <location
6013 file="res/values-gd/strings.xml"
6014 line="30"
6015 column="5"/>
6016 <location
6017 file="res/values-gd/strings.xml"
6018 line="89"
6019 column="5"
6020 message="Duplicates value in `menu_shuffle_all`"/>
6021 </issue>
6022
6023 <issue
6024 id="DuplicateStrings"
6025 message="Duplicate string value `Nahastu guztiak`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6026 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Nahastu guztiak&lt;/string>"
6027 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6028 <location
6029 file="res/values-eu/strings.xml"
6030 line="30"
6031 column="5"/>
6032 <location
6033 file="res/values-eu/strings.xml"
6034 line="89"
6035 column="5"
6036 message="Duplicates value in `menu_shuffle_all`"/>
6037 </issue>
6038
6039 <issue
6040 id="DuplicateStrings"
6041 message="Duplicate string value `Phát ngẫu nhiên tất cả`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6042 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Phát ngẫu nhiên tất cả&lt;/string>"
6043 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6044 <location
6045 file="res/values-vi/strings.xml"
6046 line="30"
6047 column="5"/>
6048 <location
6049 file="res/values-vi/strings.xml"
6050 line="89"
6051 column="5"
6052 message="Duplicates value in `menu_shuffle_all`"/>
6053 </issue>
6054
6055 <issue
6056 id="DuplicateStrings"
6057 message="Duplicate string value `Prehrať všetky náhodne`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6058 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Prehrať všetky náhodne&lt;/string>"
6059 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6060 <location
6061 file="res/values-sk/strings.xml"
6062 line="30"
6063 column="5"/>
6064 <location
6065 file="res/values-sk/strings.xml"
6066 line="89"
6067 column="5"
6068 message="Duplicates value in `menu_shuffle_all`"/>
6069 </issue>
6070
6071 <issue
6072 id="DuplicateStrings"
6073 message="Duplicate string value `Premešaj vse`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6074 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Premešaj vse&lt;/string>"
6075 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6076 <location
6077 file="res/values-sl/strings.xml"
6078 line="30"
6079 column="5"/>
6080 <location
6081 file="res/values-sl/strings.xml"
6082 line="89"
6083 column="5"
6084 message="Duplicates value in `menu_shuffle_all`"/>
6085 </issue>
6086
6087 <issue
6088 id="DuplicateStrings"
6089 message="Duplicate string value `Reproducción aleatoria`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6090 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Reproducción aleatoria&lt;/string>"
6091 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6092 <location
6093 file="res/values-es-rUS/strings.xml"
6094 line="30"
6095 column="5"/>
6096 <location
6097 file="res/values-es-rUS/strings.xml"
6098 line="89"
6099 column="5"
6100 message="Duplicates value in `menu_shuffle_all`"/>
6101 </issue>
6102
6103 <issue
6104 id="DuplicateStrings"
6105 message="Duplicate string value `Reproduzir todas aleatoriamente`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6106 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Reproduzir todas aleatoriamente&lt;/string>"
6107 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6108 <location
6109 file="res/values-pt-rPT/strings.xml"
6110 line="30"
6111 column="5"/>
6112 <location
6113 file="res/values-pt-rPT/strings.xml"
6114 line="89"
6115 column="5"
6116 message="Duplicates value in `menu_shuffle_all`"/>
6117 </issue>
6118
6119 <issue
6120 id="DuplicateStrings"
6121 message="Duplicate string value `Sekoita kaikki`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6122 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Sekoita kaikki&lt;/string>"
6123 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6124 <location
6125 file="res/values-fi/strings.xml"
6126 line="30"
6127 column="5"/>
6128 <location
6129 file="res/values-fi/strings.xml"
6130 line="89"
6131 column="5"
6132 message="Duplicates value in `menu_shuffle_all`"/>
6133 </issue>
6134
6135 <issue
6136 id="DuplicateStrings"
6137 message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6138 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Shuffle all&lt;/string>"
6139 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6140 <location
6141 file="res/values-en-rAU/strings.xml"
6142 line="30"
6143 column="5"/>
6144 <location
6145 file="res/values-en-rAU/strings.xml"
6146 line="89"
6147 column="5"
6148 message="Duplicates value in `menu_shuffle_all`"/>
6149 </issue>
6150
6151 <issue
6152 id="DuplicateStrings"
6153 message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6154 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Shuffle all&lt;/string>"
6155 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6156 <location
6157 file="res/values-en-rCA/strings.xml"
6158 line="30"
6159 column="5"/>
6160 <location
6161 file="res/values-en-rCA/strings.xml"
6162 line="89"
6163 column="5"
6164 message="Duplicates value in `menu_shuffle_all`"/>
6165 </issue>
6166
6167 <issue
6168 id="DuplicateStrings"
6169 message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6170 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Shuffle all&lt;/string>"
6171 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6172 <location
6173 file="res/values-en-rGB/strings.xml"
6174 line="30"
6175 column="5"/>
6176 <location
6177 file="res/values-en-rGB/strings.xml"
6178 line="89"
6179 column="5"
6180 message="Duplicates value in `menu_shuffle_all`"/>
6181 </issue>
6182
6183 <issue
6184 id="DuplicateStrings"
6185 message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6186 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Shuffle all&lt;/string>"
6187 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6188 <location
6189 file="res/values-en-rIN/strings.xml"
6190 line="30"
6191 column="5"/>
6192 <location
6193 file="res/values-en-rIN/strings.xml"
6194 line="89"
6195 column="5"
6196 message="Duplicates value in `menu_shuffle_all`"/>
6197 </issue>
6198
6199 <issue
6200 id="DuplicateStrings"
6201 message="Duplicate string value `Shuffle alle`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6202 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Shuffle alle&lt;/string>"
6203 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6204 <location
6205 file="res/values-nb/strings.xml"
6206 line="30"
6207 column="5"/>
6208 <location
6209 file="res/values-nb/strings.xml"
6210 line="89"
6211 column="5"
6212 message="Duplicates value in `menu_shuffle_all`"/>
6213 </issue>
6214
6215 <issue
6216 id="DuplicateStrings"
6217 message="Duplicate string value `Todas aleatório`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6218 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Todas aleatório&lt;/string>"
6219 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6220 <location
6221 file="res/values-pt-rBR/strings.xml"
6222 line="30"
6223 column="5"/>
6224 <location
6225 file="res/values-pt-rBR/strings.xml"
6226 line="89"
6227 column="5"
6228 message="Duplicates value in `menu_shuffle_all`"/>
6229 </issue>
6230
6231 <issue
6232 id="DuplicateStrings"
6233 message="Duplicate string value `Todo ao chou`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6234 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Todo ao chou&lt;/string>"
6235 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6236 <location
6237 file="res/values-gl/strings.xml"
6238 line="30"
6239 column="5"/>
6240 <location
6241 file="res/values-gl/strings.xml"
6242 line="89"
6243 column="5"
6244 message="Duplicates value in `menu_shuffle_all`"/>
6245 </issue>
6246
6247 <issue
6248 id="DuplicateStrings"
6249 message="Duplicate string value `Too al debalu`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6250 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Too al debalu&lt;/string>"
6251 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6252 <location
6253 file="res/values-ast-rES/strings.xml"
6254 line="30"
6255 column="5"/>
6256 <location
6257 file="res/values-ast-rES/strings.xml"
6258 line="89"
6259 column="5"
6260 message="Duplicates value in `menu_shuffle_all`"/>
6261 </issue>
6262
6263 <issue
6264 id="DuplicateStrings"
6265 message="Duplicate string value `Tümünü karıştır`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6266 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Tümünü karıştır&lt;/string>"
6267 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6268 <location
6269 file="res/values-tr/strings.xml"
6270 line="30"
6271 column="5"/>
6272 <location
6273 file="res/values-tr/strings.xml"
6274 line="89"
6275 column="5"
6276 message="Duplicates value in `menu_shuffle_all`"/>
6277 </issue>
6278
6279 <issue
6280 id="DuplicateStrings"
6281 message="Duplicate string value `Vše náhodně`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6282 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Vše náhodně&lt;/string>"
6283 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6284 <location
6285 file="res/values-cs/strings.xml"
6286 line="30"
6287 column="5"/>
6288 <location
6289 file="res/values-cs/strings.xml"
6290 line="89"
6291 column="5"
6292 message="Duplicates value in `menu_shuffle_all`"/>
6293 </issue>
6294
6295 <issue
6296 id="DuplicateStrings"
6297 message="Duplicate string value `Τυχαία αναπαραγωγή όλων`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6298 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Τυχαία αναπαραγωγή όλων&lt;/string>"
6299 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6300 <location
6301 file="res/values-el/strings.xml"
6302 line="30"
6303 column="5"/>
6304 <location
6305 file="res/values-el/strings.xml"
6306 line="89"
6307 column="5"
6308 message="Duplicates value in `menu_shuffle_all`"/>
6309 </issue>
6310
6311 <issue
6312 id="DuplicateStrings"
6313 message="Duplicate string value `Насумично све`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6314 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Насумично све&lt;/string>"
6315 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6316 <location
6317 file="res/values-sr/strings.xml"
6318 line="30"
6319 column="5"/>
6320 <location
6321 file="res/values-sr/strings.xml"
6322 line="89"
6323 column="5"
6324 message="Duplicates value in `menu_shuffle_all`"/>
6325 </issue>
6326
6327 <issue
6328 id="DuplicateStrings"
6329 message="Duplicate string value `Перамяшаць усё`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6330 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Перамяшаць усё&lt;/string>"
6331 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6332 <location
6333 file="res/values-be/strings.xml"
6334 line="30"
6335 column="5"/>
6336 <location
6337 file="res/values-be/strings.xml"
6338 line="89"
6339 column="5"
6340 message="Duplicates value in `menu_shuffle_all`"/>
6341 </issue>
6342
6343 <issue
6344 id="DuplicateStrings"
6345 message="Duplicate string value `Перемешать все`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6346 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Перемешать все&lt;/string>"
6347 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6348 <location
6349 file="res/values-ru/strings.xml"
6350 line="30"
6351 column="5"/>
6352 <location
6353 file="res/values-ru/strings.xml"
6354 line="89"
6355 column="5"
6356 message="Duplicates value in `menu_shuffle_all`"/>
6357 </issue>
6358
6359 <issue
6360 id="DuplicateStrings"
6361 message="Duplicate string value `Перемішати все`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6362 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Перемішати все&lt;/string>"
6363 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6364 <location
6365 file="res/values-uk/strings.xml"
6366 line="30"
6367 column="5"/>
6368 <location
6369 file="res/values-uk/strings.xml"
6370 line="89"
6371 column="5"
6372 message="Duplicates value in `menu_shuffle_all`"/>
6373 </issue>
6374
6375 <issue
6376 id="DuplicateStrings"
6377 message="Duplicate string value `Разбъркване на всички`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6378 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Разбъркване на всички&lt;/string>"
6379 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6380 <location
6381 file="res/values-bg/strings.xml"
6382 line="30"
6383 column="5"/>
6384 <location
6385 file="res/values-bg/strings.xml"
6386 line="89"
6387 column="5"
6388 message="Duplicates value in `menu_shuffle_all`"/>
6389 </issue>
6390
6391 <issue
6392 id="DuplicateStrings"
6393 message="Duplicate string value `ערבב הכל`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6394 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>ערבב הכל&lt;/string>"
6395 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6396 <location
6397 file="res/values-iw/strings.xml"
6398 line="30"
6399 column="5"/>
6400 <location
6401 file="res/values-iw/strings.xml"
6402 line="89"
6403 column="5"
6404 message="Duplicates value in `menu_shuffle_all`"/>
6405 </issue>
6406
6407 <issue
6408 id="DuplicateStrings"
6409 message="Duplicate string value `تصادفی همه`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6410 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>تصادفی همه&lt;/string>"
6411 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6412 <location
6413 file="res/values-fa/strings.xml"
6414 line="30"
6415 column="5"/>
6416 <location
6417 file="res/values-fa/strings.xml"
6418 line="89"
6419 column="5"
6420 message="Duplicates value in `menu_shuffle_all`"/>
6421 </issue>
6422
6423 <issue
6424 id="DuplicateStrings"
6425 message="Duplicate string value `خلْط الكل`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6426 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>خلْط الكل&lt;/string>"
6427 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6428 <location
6429 file="res/values-ar/strings.xml"
6430 line="30"
6431 column="5"/>
6432 <location
6433 file="res/values-ar/strings.xml"
6434 line="89"
6435 column="5"
6436 message="Duplicates value in `menu_shuffle_all`"/>
6437 </issue>
6438
6439 <issue
6440 id="DuplicateStrings"
6441 message="Duplicate string value `هه‌ڕه‌مه‌کی`, used in `accessibility_shuffle_all`, `accessibility_shuffle` and `menu_shuffle_all`"
6442 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>هه‌ڕه‌مه‌کی&lt;/string>"
6443 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6444 <location
6445 file="res/values-ku/strings.xml"
6446 line="30"
6447 column="5"/>
6448 <location
6449 file="res/values-ku/strings.xml"
6450 line="82"
6451 column="5"
6452 message="Duplicates value in `menu_shuffle_all`"/>
6453 <location
6454 file="res/values-ku/strings.xml"
6455 line="83"
6456 column="5"
6457 message="Duplicates value in `menu_shuffle_all`"/>
6458 </issue>
6459
6460 <issue
6461 id="DuplicateStrings"
6462 message="Duplicate string value `ھەممىنى تەرتىپسىز چال`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6463 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>ھەممىنى تەرتىپسىز چال&lt;/string>"
6464 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6465 <location
6466 file="res/values-ug/strings.xml"
6467 line="30"
6468 column="5"/>
6469 <location
6470 file="res/values-ug/strings.xml"
6471 line="89"
6472 column="5"
6473 message="Duplicates value in `menu_shuffle_all`"/>
6474 </issue>
6475
6476 <issue
6477 id="DuplicateStrings"
6478 message="Duplicate string value `सबको शफ़ल करें`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6479 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>सबको शफ़ल करें&lt;/string>"
6480 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6481 <location
6482 file="res/values-hi/strings.xml"
6483 line="30"
6484 column="5"/>
6485 <location
6486 file="res/values-hi/strings.xml"
6487 line="89"
6488 column="5"
6489 message="Duplicates value in `menu_shuffle_all`"/>
6490 </issue>
6491
6492 <issue
6493 id="DuplicateStrings"
6494 message="Duplicate string value `सर्व शफल करा`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6495 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>सर्व शफल करा&lt;/string>"
6496 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6497 <location
6498 file="res/values-mr/strings.xml"
6499 line="30"
6500 column="5"/>
6501 <location
6502 file="res/values-mr/strings.xml"
6503 line="89"
6504 column="5"
6505 message="Duplicates value in `menu_shuffle_all`"/>
6506 </issue>
6507
6508 <issue
6509 id="DuplicateStrings"
6510 message="Duplicate string value `আটাইবোৰ সানমিহলি কৰক`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6511 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>আটাইবোৰ সানমিহলি কৰক&lt;/string>"
6512 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6513 <location
6514 file="res/values-as/strings.xml"
6515 line="30"
6516 column="5"/>
6517 <location
6518 file="res/values-as/strings.xml"
6519 line="89"
6520 column="5"
6521 message="Duplicates value in `menu_shuffle_all`"/>
6522 </issue>
6523
6524 <issue
6525 id="DuplicateStrings"
6526 message="Duplicate string value `બધાને પીસો`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6527 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>બધાને પીસો&lt;/string>"
6528 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6529 <location
6530 file="res/values-gu/strings.xml"
6531 line="30"
6532 column="5"/>
6533 <location
6534 file="res/values-gu/strings.xml"
6535 line="89"
6536 column="5"
6537 message="Duplicates value in `menu_shuffle_all`"/>
6538 </issue>
6539
6540 <issue
6541 id="DuplicateStrings"
6542 message="Duplicate string value `ସମସ୍ତ ସଫଲ୍ କରନ୍ତୁ`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6543 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>ସମସ୍ତ ସଫଲ୍ କରନ୍ତୁ&lt;/string>"
6544 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6545 <location
6546 file="res/values-or/strings.xml"
6547 line="30"
6548 column="5"/>
6549 <location
6550 file="res/values-or/strings.xml"
6551 line="89"
6552 column="5"
6553 message="Duplicates value in `menu_shuffle_all`"/>
6554 </issue>
6555
6556 <issue
6557 id="DuplicateStrings"
6558 message="Duplicate string value `அனைத்தையும் குலை`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6559 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>அனைத்தையும் குலை&lt;/string>"
6560 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6561 <location
6562 file="res/values-ta/strings.xml"
6563 line="30"
6564 column="5"/>
6565 <location
6566 file="res/values-ta/strings.xml"
6567 line="89"
6568 column="5"
6569 message="Duplicates value in `menu_shuffle_all`"/>
6570 </issue>
6571
6572 <issue
6573 id="DuplicateStrings"
6574 message="Duplicate string value `అన్నీ షఫుల్ చేయి`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6575 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>అన్నీ షఫుల్ చేయి&lt;/string>"
6576 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6577 <location
6578 file="res/values-te/strings.xml"
6579 line="30"
6580 column="5"/>
6581 <location
6582 file="res/values-te/strings.xml"
6583 line="89"
6584 column="5"
6585 message="Duplicates value in `menu_shuffle_all`"/>
6586 </issue>
6587
6588 <issue
6589 id="DuplicateStrings"
6590 message="Duplicate string value `എല്ലാം ഷഫിൾ ചെയ്യുക`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6591 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>എല്ലാം ഷഫിൾ ചെയ്യുക&lt;/string>"
6592 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6593 <location
6594 file="res/values-ml/strings.xml"
6595 line="30"
6596 column="5"/>
6597 <location
6598 file="res/values-ml/strings.xml"
6599 line="89"
6600 column="5"
6601 message="Duplicates value in `menu_shuffle_all`"/>
6602 </issue>
6603
6604 <issue
6605 id="DuplicateStrings"
6606 message="Duplicate string value `สลับทั้งหมด`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6607 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>สลับทั้งหมด&lt;/string>"
6608 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6609 <location
6610 file="res/values-th/strings.xml"
6611 line="30"
6612 column="5"/>
6613 <location
6614 file="res/values-th/strings.xml"
6615 line="89"
6616 column="5"
6617 message="Duplicates value in `menu_shuffle_all`"/>
6618 </issue>
6619
6620 <issue
6621 id="DuplicateStrings"
6622 message="Duplicate string value `すべてシャッフル`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6623 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>すべてシャッフル&lt;/string>"
6624 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6625 <location
6626 file="res/values-ja/strings.xml"
6627 line="30"
6628 column="5"/>
6629 <location
6630 file="res/values-ja/strings.xml"
6631 line="89"
6632 column="5"
6633 message="Duplicates value in `menu_shuffle_all`"/>
6634 </issue>
6635
6636 <issue
6637 id="DuplicateStrings"
6638 message="Duplicate string value `모두 셔플`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6639 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>모두 셔플&lt;/string>"
6640 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6641 <location
6642 file="res/values-ko/strings.xml"
6643 line="30"
6644 column="5"/>
6645 <location
6646 file="res/values-ko/strings.xml"
6647 line="89"
6648 column="5"
6649 message="Duplicates value in `menu_shuffle_all`"/>
6650 </issue>
6651
6652 <issue
6653 id="DuplicateStrings"
6654 message="Duplicate string value `Shuffle`, used in `accessibility_shuffle` and `menu_shuffle_item`"
6655 errorLine1=" &lt;string name=&quot;menu_shuffle_item&quot;>Shuffle&lt;/string>"
6656 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6657 <location
6658 file="res/values/strings.xml"
6659 line="36"
6660 column="5"/>
6661 <location
6662 file="res/values/strings.xml"
6663 line="108"
6664 column="5"
6665 message="Duplicates value in `menu_shuffle_item`"/>
6666 </issue>
6667
6668 <issue
6669 id="DuplicateStrings"
6670 message="Duplicate string value `Shuffle all`, used in `accessibility_shuffle_all` and `menu_shuffle_all`"
6671 errorLine1=" &lt;string name=&quot;menu_shuffle_all&quot;>Shuffle all&lt;/string>"
6672 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6673 <location
6674 file="res/values/strings.xml"
6675 line="37"
6676 column="5"/>
6677 <location
6678 file="res/values/strings.xml"
6679 line="109"
6680 column="5"
6681 message="Duplicates value in `menu_shuffle_all`"/>
6682 </issue>
6683
6684 <issue
6685 id="DuplicateStrings"
6686 message="Duplicate string value `儲存`, used in `save` and `settings_storage_category`"
6687 errorLine1=" &lt;string name=&quot;save&quot;>儲存&lt;/string>"
6688 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6689 <location
6690 file="res/values-zh-rTW/strings.xml"
6691 line="58"
6692 column="5"/>
6693 <location
6694 file="res/values-zh-rTW/strings.xml"
6695 line="94"
6696 column="5"
6697 message="Duplicates value in `save`"/>
6698 </issue>
6699
6700 <issue
6701 id="DuplicateStrings"
6702 message="Duplicate string value `Annulla`, used in `cancel` and `clear`"
6703 errorLine1=" &lt;string name=&quot;cancel&quot;>Annulla&lt;/string>"
6704 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6705 <location
6706 file="res/values-it/strings.xml"
6707 line="59"
6708 column="5"/>
6709 <location
6710 file="res/values-it/strings.xml"
6711 line="61"
6712 column="5"
6713 message="Duplicates value in `cancel`"/>
6714 </issue>
6715
6716 <issue
6717 id="DuplicateStrings"
6718 message="Duplicate string value `Borrar`, used in `clear` and `context_menu_delete`"
6719 errorLine1=" &lt;string name=&quot;clear&quot;>Borrar&lt;/string>"
6720 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6721 <location
6722 file="res/values-es-rUS/strings.xml"
6723 line="61"
6724 column="5"/>
6725 <location
6726 file="res/values-es-rUS/strings.xml"
6727 line="77"
6728 column="5"
6729 message="Duplicates value in `clear`"/>
6730 </issue>
6731
6732 <issue
6733 id="DuplicateStrings"
6734 message="Duplicate string value `Hapus`, used in `clear` and `context_menu_delete`"
6735 errorLine1=" &lt;string name=&quot;clear&quot;>Hapus&lt;/string>"
6736 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6737 <location
6738 file="res/values-in/strings.xml"
6739 line="61"
6740 column="5"/>
6741 <location
6742 file="res/values-in/strings.xml"
6743 line="77"
6744 column="5"
6745 message="Duplicates value in `clear`"/>
6746 </issue>
6747
6748 <issue
6749 id="DuplicateStrings"
6750 message="Duplicate string value `Löschen`, used in `clear` and `context_menu_delete`"
6751 errorLine1=" &lt;string name=&quot;clear&quot;>Löschen&lt;/string>"
6752 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6753 <location
6754 file="res/values-de/strings.xml"
6755 line="61"
6756 column="5"/>
6757 <location
6758 file="res/values-de/strings.xml"
6759 line="77"
6760 column="5"
6761 message="Duplicates value in `clear`"/>
6762 </issue>
6763
6764 <issue
6765 id="DuplicateStrings"
6766 message="Duplicate string value `Xoá`, used in `clear` and `context_menu_delete`"
6767 errorLine1=" &lt;string name=&quot;clear&quot;>Xoá&lt;/string>"
6768 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6769 <location
6770 file="res/values-vi/strings.xml"
6771 line="61"
6772 column="5"/>
6773 <location
6774 file="res/values-vi/strings.xml"
6775 line="77"
6776 column="5"
6777 message="Duplicates value in `clear`"/>
6778 </issue>
6779
6780 <issue
6781 id="DuplicateStrings"
6782 message="Duplicate string value `播放`, used in `accessibility_play` and `context_menu_play_selection`"
6783 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>播放&lt;/string>"
6784 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6785 <location
6786 file="res/values-zh-rHK/strings.xml"
6787 line="65"
6788 column="5"/>
6789 <location
6790 file="res/values-zh-rHK/strings.xml"
6791 line="76"
6792 column="5"
6793 message="Duplicates value in `context_menu_play_selection`"/>
6794 </issue>
6795
6796 <issue
6797 id="DuplicateStrings"
6798 message="Duplicate string value `لێدان`, used in `accessibility_play` and `context_menu_play_selection`"
6799 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>لێدان&lt;/string>"
6800 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6801 <location
6802 file="res/values-ku/strings.xml"
6803 line="68"
6804 column="5"/>
6805 <location
6806 file="res/values-ku/strings.xml"
6807 line="78"
6808 column="5"
6809 message="Duplicates value in `context_menu_play_selection`"/>
6810 </issue>
6811
6812 <issue
6813 id="DuplicateStrings"
6814 message="Duplicate string value `Atskaņot`, used in `accessibility_play` and `context_menu_play_selection`"
6815 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Atskaņot&lt;/string>"
6816 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6817 <location
6818 file="res/values-lv/strings.xml"
6819 line="71"
6820 column="5"/>
6821 <location
6822 file="res/values-lv/strings.xml"
6823 line="82"
6824 column="5"
6825 message="Duplicates value in `context_menu_play_selection`"/>
6826 </issue>
6827
6828 <issue
6829 id="DuplicateStrings"
6830 message="Duplicate string value `ಪ್ಲೇ`, used in `accessibility_play` and `context_menu_play_selection`"
6831 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>ಪ್ಲೇ&lt;/string>"
6832 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6833 <location
6834 file="res/values-kn/strings.xml"
6835 line="71"
6836 column="5"/>
6837 <location
6838 file="res/values-kn/strings.xml"
6839 line="83"
6840 column="5"
6841 message="Duplicates value in `context_menu_play_selection`"/>
6842 </issue>
6843
6844 <issue
6845 id="DuplicateStrings"
6846 message="Duplicate string value `Afspelen`, used in `accessibility_play` and `context_menu_play_selection`"
6847 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Afspelen&lt;/string>"
6848 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6849 <location
6850 file="res/values-nl/strings.xml"
6851 line="72"
6852 column="5"/>
6853 <location
6854 file="res/values-nl/strings.xml"
6855 line="84"
6856 column="5"
6857 message="Duplicates value in `context_menu_play_selection`"/>
6858 </issue>
6859
6860 <issue
6861 id="DuplicateStrings"
6862 message="Duplicate string value `Afspil`, used in `accessibility_play` and `context_menu_play_selection`"
6863 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Afspil&lt;/string>"
6864 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6865 <location
6866 file="res/values-da/strings.xml"
6867 line="72"
6868 column="5"/>
6869 <location
6870 file="res/values-da/strings.xml"
6871 line="84"
6872 column="5"
6873 message="Duplicates value in `context_menu_play_selection`"/>
6874 </issue>
6875
6876 <issue
6877 id="DuplicateStrings"
6878 message="Duplicate string value `Chwarae`, used in `accessibility_play` and `context_menu_play_selection`"
6879 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Chwarae&lt;/string>"
6880 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6881 <location
6882 file="res/values-cy/strings.xml"
6883 line="72"
6884 column="5"/>
6885 <location
6886 file="res/values-cy/strings.xml"
6887 line="84"
6888 column="5"
6889 message="Duplicates value in `context_menu_play_selection`"/>
6890 </issue>
6891
6892 <issue
6893 id="DuplicateStrings"
6894 message="Duplicate string value `Cluich`, used in `accessibility_play` and `context_menu_play_selection`"
6895 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Cluich&lt;/string>"
6896 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6897 <location
6898 file="res/values-gd/strings.xml"
6899 line="72"
6900 column="5"/>
6901 <location
6902 file="res/values-gd/strings.xml"
6903 line="84"
6904 column="5"
6905 message="Duplicates value in `context_menu_play_selection`"/>
6906 </issue>
6907
6908 <issue
6909 id="DuplicateStrings"
6910 message="Duplicate string value `Erreproduzitu`, used in `accessibility_play` and `context_menu_play_selection`"
6911 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Erreproduzitu&lt;/string>"
6912 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6913 <location
6914 file="res/values-eu/strings.xml"
6915 line="72"
6916 column="5"/>
6917 <location
6918 file="res/values-eu/strings.xml"
6919 line="84"
6920 column="5"
6921 message="Duplicates value in `context_menu_play_selection`"/>
6922 </issue>
6923
6924 <issue
6925 id="DuplicateStrings"
6926 message="Duplicate string value `Esita`, used in `accessibility_play` and `context_menu_play_selection`"
6927 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Esita&lt;/string>"
6928 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6929 <location
6930 file="res/values-et/strings.xml"
6931 line="72"
6932 column="5"/>
6933 <location
6934 file="res/values-et/strings.xml"
6935 line="84"
6936 column="5"
6937 message="Duplicates value in `context_menu_play_selection`"/>
6938 </issue>
6939
6940 <issue
6941 id="DuplicateStrings"
6942 message="Duplicate string value `Lejátszás`, used in `accessibility_play` and `context_menu_play_selection`"
6943 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Lejátszás&lt;/string>"
6944 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6945 <location
6946 file="res/values-hu/strings.xml"
6947 line="72"
6948 column="5"/>
6949 <location
6950 file="res/values-hu/strings.xml"
6951 line="84"
6952 column="5"
6953 message="Duplicates value in `context_menu_play_selection`"/>
6954 </issue>
6955
6956 <issue
6957 id="DuplicateStrings"
6958 message="Duplicate string value `Lire`, used in `accessibility_play` and `context_menu_play_selection`"
6959 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Lire&lt;/string>"
6960 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6961 <location
6962 file="res/values-fr/strings.xml"
6963 line="72"
6964 column="5"/>
6965 <location
6966 file="res/values-fr/strings.xml"
6967 line="84"
6968 column="5"
6969 message="Duplicates value in `context_menu_play_selection`"/>
6970 </issue>
6971
6972 <issue
6973 id="DuplicateStrings"
6974 message="Duplicate string value `Odtwórz`, used in `accessibility_play` and `context_menu_play_selection`"
6975 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Odtwórz&lt;/string>"
6976 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6977 <location
6978 file="res/values-pl/strings.xml"
6979 line="72"
6980 column="5"/>
6981 <location
6982 file="res/values-pl/strings.xml"
6983 line="84"
6984 column="5"
6985 message="Duplicates value in `context_menu_play_selection`"/>
6986 </issue>
6987
6988 <issue
6989 id="DuplicateStrings"
6990 message="Duplicate string value `Ofspillen`, used in `accessibility_play` and `context_menu_play_selection`"
6991 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Ofspillen&lt;/string>"
6992 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
6993 <location
6994 file="res/values-lb/strings.xml"
6995 line="72"
6996 column="5"/>
6997 <location
6998 file="res/values-lb/strings.xml"
6999 line="84"
7000 column="5"
7001 message="Duplicates value in `context_menu_play_selection`"/>
7002 </issue>
7003
7004 <issue
7005 id="DuplicateStrings"
7006 message="Duplicate string value `Ofspylje`, used in `accessibility_play` and `context_menu_play_selection`"
7007 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Ofspylje&lt;/string>"
7008 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7009 <location
7010 file="res/values-fy-rNL/strings.xml"
7011 line="72"
7012 column="5"/>
7013 <location
7014 file="res/values-fy-rNL/strings.xml"
7015 line="84"
7016 column="5"
7017 message="Duplicates value in `context_menu_play_selection`"/>
7018 </issue>
7019
7020 <issue
7021 id="DuplicateStrings"
7022 message="Duplicate string value `Oynat`, used in `accessibility_play` and `context_menu_play_selection`"
7023 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Oynat&lt;/string>"
7024 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7025 <location
7026 file="res/values-az/strings.xml"
7027 line="72"
7028 column="5"/>
7029 <location
7030 file="res/values-az/strings.xml"
7031 line="84"
7032 column="5"
7033 message="Duplicates value in `context_menu_play_selection`"/>
7034 </issue>
7035
7036 <issue
7037 id="DuplicateStrings"
7038 message="Duplicate string value `Paleisti`, used in `accessibility_play` and `context_menu_play_selection`"
7039 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Paleisti&lt;/string>"
7040 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7041 <location
7042 file="res/values-lt/strings.xml"
7043 line="72"
7044 column="5"/>
7045 <location
7046 file="res/values-lt/strings.xml"
7047 line="84"
7048 column="5"
7049 message="Duplicates value in `context_menu_play_selection`"/>
7050 </issue>
7051
7052 <issue
7053 id="DuplicateStrings"
7054 message="Duplicate string value `Phát`, used in `accessibility_play` and `context_menu_play_selection`"
7055 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Phát&lt;/string>"
7056 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7057 <location
7058 file="res/values-vi/strings.xml"
7059 line="72"
7060 column="5"/>
7061 <location
7062 file="res/values-vi/strings.xml"
7063 line="84"
7064 column="5"
7065 message="Duplicates value in `context_menu_play_selection`"/>
7066 </issue>
7067
7068 <issue
7069 id="DuplicateStrings"
7070 message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
7071 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Play&lt;/string>"
7072 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7073 <location
7074 file="res/values-en-rAU/strings.xml"
7075 line="72"
7076 column="5"/>
7077 <location
7078 file="res/values-en-rAU/strings.xml"
7079 line="84"
7080 column="5"
7081 message="Duplicates value in `context_menu_play_selection`"/>
7082 </issue>
7083
7084 <issue
7085 id="DuplicateStrings"
7086 message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
7087 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Play&lt;/string>"
7088 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7089 <location
7090 file="res/values-en-rCA/strings.xml"
7091 line="72"
7092 column="5"/>
7093 <location
7094 file="res/values-en-rCA/strings.xml"
7095 line="84"
7096 column="5"
7097 message="Duplicates value in `context_menu_play_selection`"/>
7098 </issue>
7099
7100 <issue
7101 id="DuplicateStrings"
7102 message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
7103 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Play&lt;/string>"
7104 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7105 <location
7106 file="res/values-en-rGB/strings.xml"
7107 line="72"
7108 column="5"/>
7109 <location
7110 file="res/values-en-rGB/strings.xml"
7111 line="84"
7112 column="5"
7113 message="Duplicates value in `context_menu_play_selection`"/>
7114 </issue>
7115
7116 <issue
7117 id="DuplicateStrings"
7118 message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
7119 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Play&lt;/string>"
7120 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7121 <location
7122 file="res/values-en-rIN/strings.xml"
7123 line="72"
7124 column="5"/>
7125 <location
7126 file="res/values-en-rIN/strings.xml"
7127 line="84"
7128 column="5"
7129 message="Duplicates value in `context_menu_play_selection`"/>
7130 </issue>
7131
7132 <issue
7133 id="DuplicateStrings"
7134 message="Duplicate string value `Predvajaj`, used in `accessibility_play` and `context_menu_play_selection`"
7135 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Predvajaj&lt;/string>"
7136 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7137 <location
7138 file="res/values-sl/strings.xml"
7139 line="72"
7140 column="5"/>
7141 <location
7142 file="res/values-sl/strings.xml"
7143 line="84"
7144 column="5"
7145 message="Duplicates value in `context_menu_play_selection`"/>
7146 </issue>
7147
7148 <issue
7149 id="DuplicateStrings"
7150 message="Duplicate string value `Prehrať`, used in `accessibility_play` and `context_menu_play_selection`"
7151 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Prehrať&lt;/string>"
7152 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7153 <location
7154 file="res/values-sk/strings.xml"
7155 line="72"
7156 column="5"/>
7157 <location
7158 file="res/values-sk/strings.xml"
7159 line="84"
7160 column="5"
7161 message="Duplicates value in `context_menu_play_selection`"/>
7162 </issue>
7163
7164 <issue
7165 id="DuplicateStrings"
7166 message="Duplicate string value `Putar`, used in `accessibility_play` and `context_menu_play_selection`"
7167 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Putar&lt;/string>"
7168 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7169 <location
7170 file="res/values-in/strings.xml"
7171 line="72"
7172 column="5"/>
7173 <location
7174 file="res/values-in/strings.xml"
7175 line="84"
7176 column="5"
7177 message="Duplicates value in `context_menu_play_selection`"/>
7178 </issue>
7179
7180 <issue
7181 id="DuplicateStrings"
7182 message="Duplicate string value `Přehrát`, used in `accessibility_play` and `context_menu_play_selection`"
7183 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Přehrát&lt;/string>"
7184 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7185 <location
7186 file="res/values-cs/strings.xml"
7187 line="72"
7188 column="5"/>
7189 <location
7190 file="res/values-cs/strings.xml"
7191 line="84"
7192 column="5"
7193 message="Duplicates value in `context_menu_play_selection`"/>
7194 </issue>
7195
7196 <issue
7197 id="DuplicateStrings"
7198 message="Duplicate string value `Redare`, used in `accessibility_play` and `context_menu_play_selection`"
7199 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Redare&lt;/string>"
7200 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7201 <location
7202 file="res/values-ro/strings.xml"
7203 line="72"
7204 column="5"/>
7205 <location
7206 file="res/values-ro/strings.xml"
7207 line="84"
7208 column="5"
7209 message="Duplicates value in `context_menu_play_selection`"/>
7210 </issue>
7211
7212 <issue
7213 id="DuplicateStrings"
7214 message="Duplicate string value `Reproducir`, used in `accessibility_play` and `context_menu_play_selection`"
7215 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Reproducir&lt;/string>"
7216 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7217 <location
7218 file="res/values-ast-rES/strings.xml"
7219 line="72"
7220 column="5"/>
7221 <location
7222 file="res/values-ast-rES/strings.xml"
7223 line="84"
7224 column="5"
7225 message="Duplicates value in `context_menu_play_selection`"/>
7226 </issue>
7227
7228 <issue
7229 id="DuplicateStrings"
7230 message="Duplicate string value `Reproducir`, used in `accessibility_play` and `context_menu_play_selection`"
7231 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Reproducir&lt;/string>"
7232 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7233 <location
7234 file="res/values-es-rUS/strings.xml"
7235 line="72"
7236 column="5"/>
7237 <location
7238 file="res/values-es-rUS/strings.xml"
7239 line="84"
7240 column="5"
7241 message="Duplicates value in `context_menu_play_selection`"/>
7242 </issue>
7243
7244 <issue
7245 id="DuplicateStrings"
7246 message="Duplicate string value `Reproducir`, used in `accessibility_play` and `context_menu_play_selection`"
7247 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Reproducir&lt;/string>"
7248 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7249 <location
7250 file="res/values-es/strings.xml"
7251 line="72"
7252 column="5"/>
7253 <location
7254 file="res/values-es/strings.xml"
7255 line="84"
7256 column="5"
7257 message="Duplicates value in `context_menu_play_selection`"/>
7258 </issue>
7259
7260 <issue
7261 id="DuplicateStrings"
7262 message="Duplicate string value `Reproducir`, used in `accessibility_play` and `context_menu_play_selection`"
7263 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Reproducir&lt;/string>"
7264 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7265 <location
7266 file="res/values-gl/strings.xml"
7267 line="72"
7268 column="5"/>
7269 <location
7270 file="res/values-gl/strings.xml"
7271 line="84"
7272 column="5"
7273 message="Duplicates value in `context_menu_play_selection`"/>
7274 </issue>
7275
7276 <issue
7277 id="DuplicateStrings"
7278 message="Duplicate string value `Reprodueix`, used in `accessibility_play` and `context_menu_play_selection`"
7279 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Reprodueix&lt;/string>"
7280 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7281 <location
7282 file="res/values-ca/strings.xml"
7283 line="72"
7284 column="5"/>
7285 <location
7286 file="res/values-ca/strings.xml"
7287 line="84"
7288 column="5"
7289 message="Duplicates value in `context_menu_play_selection`"/>
7290 </issue>
7291
7292 <issue
7293 id="DuplicateStrings"
7294 message="Duplicate string value `Reproduzir`, used in `accessibility_play` and `context_menu_play_selection`"
7295 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Reproduzir&lt;/string>"
7296 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7297 <location
7298 file="res/values-pt-rPT/strings.xml"
7299 line="72"
7300 column="5"/>
7301 <location
7302 file="res/values-pt-rPT/strings.xml"
7303 line="84"
7304 column="5"
7305 message="Duplicates value in `context_menu_play_selection`"/>
7306 </issue>
7307
7308 <issue
7309 id="DuplicateStrings"
7310 message="Duplicate string value `Riproduci`, used in `accessibility_play` and `context_menu_play_selection`"
7311 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Riproduci&lt;/string>"
7312 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7313 <location
7314 file="res/values-it/strings.xml"
7315 line="72"
7316 column="5"/>
7317 <location
7318 file="res/values-it/strings.xml"
7319 line="84"
7320 column="5"
7321 message="Duplicates value in `context_menu_play_selection`"/>
7322 </issue>
7323
7324 <issue
7325 id="DuplicateStrings"
7326 message="Duplicate string value `Speel`, used in `accessibility_play` and `context_menu_play_selection`"
7327 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Speel&lt;/string>"
7328 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7329 <location
7330 file="res/values-af/strings.xml"
7331 line="72"
7332 column="5"/>
7333 <location
7334 file="res/values-af/strings.xml"
7335 line="84"
7336 column="5"
7337 message="Duplicates value in `context_menu_play_selection`"/>
7338 </issue>
7339
7340 <issue
7341 id="DuplicateStrings"
7342 message="Duplicate string value `Spela`, used in `accessibility_play` and `context_menu_play_selection`"
7343 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Spela&lt;/string>"
7344 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7345 <location
7346 file="res/values-sv/strings.xml"
7347 line="72"
7348 column="5"/>
7349 <location
7350 file="res/values-sv/strings.xml"
7351 line="84"
7352 column="5"
7353 message="Duplicates value in `context_menu_play_selection`"/>
7354 </issue>
7355
7356 <issue
7357 id="DuplicateStrings"
7358 message="Duplicate string value `Spill av`, used in `accessibility_play` and `context_menu_play_selection`"
7359 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Spill av&lt;/string>"
7360 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7361 <location
7362 file="res/values-nb/strings.xml"
7363 line="72"
7364 column="5"/>
7365 <location
7366 file="res/values-nb/strings.xml"
7367 line="84"
7368 column="5"
7369 message="Duplicates value in `context_menu_play_selection`"/>
7370 </issue>
7371
7372 <issue
7373 id="DuplicateStrings"
7374 message="Duplicate string value `Sviraj`, used in `accessibility_play` and `context_menu_play_selection`"
7375 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Sviraj&lt;/string>"
7376 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7377 <location
7378 file="res/values-hr/strings.xml"
7379 line="72"
7380 column="5"/>
7381 <location
7382 file="res/values-hr/strings.xml"
7383 line="84"
7384 column="5"
7385 message="Duplicates value in `context_menu_play_selection`"/>
7386 </issue>
7387
7388 <issue
7389 id="DuplicateStrings"
7390 message="Duplicate string value `Tocar`, used in `accessibility_play` and `context_menu_play_selection`"
7391 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Tocar&lt;/string>"
7392 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7393 <location
7394 file="res/values-pt-rBR/strings.xml"
7395 line="72"
7396 column="5"/>
7397 <location
7398 file="res/values-pt-rBR/strings.xml"
7399 line="84"
7400 column="5"
7401 message="Duplicates value in `context_menu_play_selection`"/>
7402 </issue>
7403
7404 <issue
7405 id="DuplicateStrings"
7406 message="Duplicate string value `Toista`, used in `accessibility_play` and `context_menu_play_selection`"
7407 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Toista&lt;/string>"
7408 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7409 <location
7410 file="res/values-fi/strings.xml"
7411 line="72"
7412 column="5"/>
7413 <location
7414 file="res/values-fi/strings.xml"
7415 line="84"
7416 column="5"
7417 message="Duplicates value in `context_menu_play_selection`"/>
7418 </issue>
7419
7420 <issue
7421 id="DuplicateStrings"
7422 message="Duplicate string value `Wiedergeben`, used in `accessibility_play` and `context_menu_play_selection`"
7423 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Wiedergeben&lt;/string>"
7424 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7425 <location
7426 file="res/values-de/strings.xml"
7427 line="72"
7428 column="5"/>
7429 <location
7430 file="res/values-de/strings.xml"
7431 line="84"
7432 column="5"
7433 message="Duplicates value in `context_menu_play_selection`"/>
7434 </issue>
7435
7436 <issue
7437 id="DuplicateStrings"
7438 message="Duplicate string value `Çal`, used in `accessibility_play` and `context_menu_play_selection`"
7439 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Çal&lt;/string>"
7440 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7441 <location
7442 file="res/values-tr/strings.xml"
7443 line="72"
7444 column="5"/>
7445 <location
7446 file="res/values-tr/strings.xml"
7447 line="84"
7448 column="5"
7449 message="Duplicates value in `context_menu_play_selection`"/>
7450 </issue>
7451
7452 <issue
7453 id="DuplicateStrings"
7454 message="Duplicate string value `Αναπαραγωγή`, used in `accessibility_play` and `context_menu_play_selection`"
7455 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Αναπαραγωγή&lt;/string>"
7456 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7457 <location
7458 file="res/values-el/strings.xml"
7459 line="72"
7460 column="5"/>
7461 <location
7462 file="res/values-el/strings.xml"
7463 line="84"
7464 column="5"
7465 message="Duplicates value in `context_menu_play_selection`"/>
7466 </issue>
7467
7468 <issue
7469 id="DuplicateStrings"
7470 message="Duplicate string value `Воспроизвести`, used in `accessibility_play` and `context_menu_play_selection`"
7471 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Воспроизвести&lt;/string>"
7472 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7473 <location
7474 file="res/values-ru/strings.xml"
7475 line="72"
7476 column="5"/>
7477 <location
7478 file="res/values-ru/strings.xml"
7479 line="84"
7480 column="5"
7481 message="Duplicates value in `context_menu_play_selection`"/>
7482 </issue>
7483
7484 <issue
7485 id="DuplicateStrings"
7486 message="Duplicate string value `Грати`, used in `accessibility_play` and `context_menu_play_selection`"
7487 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Грати&lt;/string>"
7488 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7489 <location
7490 file="res/values-uk/strings.xml"
7491 line="72"
7492 column="5"/>
7493 <location
7494 file="res/values-uk/strings.xml"
7495 line="84"
7496 column="5"
7497 message="Duplicates value in `context_menu_play_selection`"/>
7498 </issue>
7499
7500 <issue
7501 id="DuplicateStrings"
7502 message="Duplicate string value `Изпълни`, used in `accessibility_play` and `context_menu_play_selection`"
7503 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Изпълни&lt;/string>"
7504 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7505 <location
7506 file="res/values-bg/strings.xml"
7507 line="72"
7508 column="5"/>
7509 <location
7510 file="res/values-bg/strings.xml"
7511 line="84"
7512 column="5"
7513 message="Duplicates value in `context_menu_play_selection`"/>
7514 </issue>
7515
7516 <issue
7517 id="DuplicateStrings"
7518 message="Duplicate string value `Прайграць`, used in `accessibility_play`, `context_menu_play_album` and `context_menu_play_selection`"
7519 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Прайграць&lt;/string>"
7520 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7521 <location
7522 file="res/values-be/strings.xml"
7523 line="72"
7524 column="5"/>
7525 <location
7526 file="res/values-be/strings.xml"
7527 line="74"
7528 column="5"
7529 message="Duplicates value in `context_menu_play_selection`"/>
7530 <location
7531 file="res/values-be/strings.xml"
7532 line="84"
7533 column="5"
7534 message="Duplicates value in `context_menu_play_selection`"/>
7535 </issue>
7536
7537 <issue
7538 id="DuplicateStrings"
7539 message="Duplicate string value `Пусти`, used in `accessibility_play` and `context_menu_play_selection`"
7540 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Пусти&lt;/string>"
7541 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7542 <location
7543 file="res/values-sr/strings.xml"
7544 line="72"
7545 column="5"/>
7546 <location
7547 file="res/values-sr/strings.xml"
7548 line="84"
7549 column="5"
7550 message="Duplicates value in `context_menu_play_selection`"/>
7551 </issue>
7552
7553 <issue
7554 id="DuplicateStrings"
7555 message="Duplicate string value `נגן`, used in `accessibility_play` and `context_menu_play_selection`"
7556 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>נגן&lt;/string>"
7557 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7558 <location
7559 file="res/values-iw/strings.xml"
7560 line="72"
7561 column="5"/>
7562 <location
7563 file="res/values-iw/strings.xml"
7564 line="84"
7565 column="5"
7566 message="Duplicates value in `context_menu_play_selection`"/>
7567 </issue>
7568
7569 <issue
7570 id="DuplicateStrings"
7571 message="Duplicate string value `تشغيل`, used in `accessibility_play` and `context_menu_play_selection`"
7572 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>تشغيل&lt;/string>"
7573 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7574 <location
7575 file="res/values-ar/strings.xml"
7576 line="72"
7577 column="5"/>
7578 <location
7579 file="res/values-ar/strings.xml"
7580 line="84"
7581 column="5"
7582 message="Duplicates value in `context_menu_play_selection`"/>
7583 </issue>
7584
7585 <issue
7586 id="DuplicateStrings"
7587 message="Duplicate string value `قويۇش`, used in `accessibility_play` and `context_menu_play_selection`"
7588 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>قويۇش&lt;/string>"
7589 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7590 <location
7591 file="res/values-ug/strings.xml"
7592 line="72"
7593 column="5"/>
7594 <location
7595 file="res/values-ug/strings.xml"
7596 line="84"
7597 column="5"
7598 message="Duplicates value in `context_menu_play_selection`"/>
7599 </issue>
7600
7601 <issue
7602 id="DuplicateStrings"
7603 message="Duplicate string value `پخش`, used in `accessibility_play` and `context_menu_play_selection`"
7604 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>پخش&lt;/string>"
7605 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7606 <location
7607 file="res/values-fa/strings.xml"
7608 line="72"
7609 column="5"/>
7610 <location
7611 file="res/values-fa/strings.xml"
7612 line="84"
7613 column="5"
7614 message="Duplicates value in `context_menu_play_selection`"/>
7615 </issue>
7616
7617 <issue
7618 id="DuplicateStrings"
7619 message="Duplicate string value `प्ले करा`, used in `accessibility_play` and `context_menu_play_selection`"
7620 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>प्ले करा&lt;/string>"
7621 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7622 <location
7623 file="res/values-mr/strings.xml"
7624 line="72"
7625 column="5"/>
7626 <location
7627 file="res/values-mr/strings.xml"
7628 line="84"
7629 column="5"
7630 message="Duplicates value in `context_menu_play_selection`"/>
7631 </issue>
7632
7633 <issue
7634 id="DuplicateStrings"
7635 message="Duplicate string value `बजाएँ`, used in `accessibility_play` and `context_menu_play_selection`"
7636 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>बजाएँ&lt;/string>"
7637 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7638 <location
7639 file="res/values-hi/strings.xml"
7640 line="72"
7641 column="5"/>
7642 <location
7643 file="res/values-hi/strings.xml"
7644 line="84"
7645 column="5"
7646 message="Duplicates value in `context_menu_play_selection`"/>
7647 </issue>
7648
7649 <issue
7650 id="DuplicateStrings"
7651 message="Duplicate string value `চলাওঁক`, used in `accessibility_play` and `context_menu_play_selection`"
7652 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>চলাওঁক&lt;/string>"
7653 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7654 <location
7655 file="res/values-as/strings.xml"
7656 line="72"
7657 column="5"/>
7658 <location
7659 file="res/values-as/strings.xml"
7660 line="84"
7661 column="5"
7662 message="Duplicates value in `context_menu_play_selection`"/>
7663 </issue>
7664
7665 <issue
7666 id="DuplicateStrings"
7667 message="Duplicate string value `ચલાવો`, used in `accessibility_play` and `context_menu_play_selection`"
7668 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>ચલાવો&lt;/string>"
7669 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7670 <location
7671 file="res/values-gu/strings.xml"
7672 line="72"
7673 column="5"/>
7674 <location
7675 file="res/values-gu/strings.xml"
7676 line="84"
7677 column="5"
7678 message="Duplicates value in `context_menu_play_selection`"/>
7679 </issue>
7680
7681 <issue
7682 id="DuplicateStrings"
7683 message="Duplicate string value `ଚଳାଅ`, used in `accessibility_play` and `context_menu_play_selection`"
7684 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>ଚଳାଅ&lt;/string>"
7685 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7686 <location
7687 file="res/values-or/strings.xml"
7688 line="72"
7689 column="5"/>
7690 <location
7691 file="res/values-or/strings.xml"
7692 line="84"
7693 column="5"
7694 message="Duplicates value in `context_menu_play_selection`"/>
7695 </issue>
7696
7697 <issue
7698 id="DuplicateStrings"
7699 message="Duplicate string value `இயக்கு`, used in `accessibility_play` and `context_menu_play_selection`"
7700 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>இயக்கு&lt;/string>"
7701 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7702 <location
7703 file="res/values-ta/strings.xml"
7704 line="72"
7705 column="5"/>
7706 <location
7707 file="res/values-ta/strings.xml"
7708 line="84"
7709 column="5"
7710 message="Duplicates value in `context_menu_play_selection`"/>
7711 </issue>
7712
7713 <issue
7714 id="DuplicateStrings"
7715 message="Duplicate string value `ప్లే చేయి`, used in `accessibility_play` and `context_menu_play_selection`"
7716 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>ప్లే చేయి&lt;/string>"
7717 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7718 <location
7719 file="res/values-te/strings.xml"
7720 line="72"
7721 column="5"/>
7722 <location
7723 file="res/values-te/strings.xml"
7724 line="84"
7725 column="5"
7726 message="Duplicates value in `context_menu_play_selection`"/>
7727 </issue>
7728
7729 <issue
7730 id="DuplicateStrings"
7731 message="Duplicate string value `പ്ലേ ചെയ്യുക`, used in `accessibility_play` and `context_menu_play_selection`"
7732 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>പ്ലേ ചെയ്യുക&lt;/string>"
7733 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7734 <location
7735 file="res/values-ml/strings.xml"
7736 line="72"
7737 column="5"/>
7738 <location
7739 file="res/values-ml/strings.xml"
7740 line="84"
7741 column="5"
7742 message="Duplicates value in `context_menu_play_selection`"/>
7743 </issue>
7744
7745 <issue
7746 id="DuplicateStrings"
7747 message="Duplicate string value `เล่น`, used in `accessibility_play` and `context_menu_play_selection`"
7748 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>เล่น&lt;/string>"
7749 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7750 <location
7751 file="res/values-th/strings.xml"
7752 line="72"
7753 column="5"/>
7754 <location
7755 file="res/values-th/strings.xml"
7756 line="84"
7757 column="5"
7758 message="Duplicates value in `context_menu_play_selection`"/>
7759 </issue>
7760
7761 <issue
7762 id="DuplicateStrings"
7763 message="Duplicate string value `再生`, used in `accessibility_play` and `context_menu_play_selection`"
7764 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>再生&lt;/string>"
7765 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7766 <location
7767 file="res/values-ja/strings.xml"
7768 line="72"
7769 column="5"/>
7770 <location
7771 file="res/values-ja/strings.xml"
7772 line="84"
7773 column="5"
7774 message="Duplicates value in `context_menu_play_selection`"/>
7775 </issue>
7776
7777 <issue
7778 id="DuplicateStrings"
7779 message="Duplicate string value `播放`, used in `accessibility_play` and `context_menu_play_selection`"
7780 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>播放&lt;/string>"
7781 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7782 <location
7783 file="res/values-zh-rCN/strings.xml"
7784 line="72"
7785 column="5"/>
7786 <location
7787 file="res/values-zh-rCN/strings.xml"
7788 line="84"
7789 column="5"
7790 message="Duplicates value in `context_menu_play_selection`"/>
7791 </issue>
7792
7793 <issue
7794 id="DuplicateStrings"
7795 message="Duplicate string value `播放`, used in `accessibility_play` and `context_menu_play_selection`"
7796 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>播放&lt;/string>"
7797 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7798 <location
7799 file="res/values-zh-rTW/strings.xml"
7800 line="72"
7801 column="5"/>
7802 <location
7803 file="res/values-zh-rTW/strings.xml"
7804 line="84"
7805 column="5"
7806 message="Duplicates value in `context_menu_play_selection`"/>
7807 </issue>
7808
7809 <issue
7810 id="DuplicateStrings"
7811 message="Duplicate string value `재생`, used in `accessibility_play` and `context_menu_play_selection`"
7812 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>재생&lt;/string>"
7813 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7814 <location
7815 file="res/values-ko/strings.xml"
7816 line="72"
7817 column="5"/>
7818 <location
7819 file="res/values-ko/strings.xml"
7820 line="84"
7821 column="5"
7822 message="Duplicates value in `context_menu_play_selection`"/>
7823 </issue>
7824
7825 <issue
7826 id="DuplicateStrings"
7827 message="Duplicate string value `Siguiente`, used in `accessibility_next` and `context_menu_play_next`"
7828 errorLine1=" &lt;string name=&quot;context_menu_play_next&quot;>Siguiente&lt;/string>"
7829 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7830 <location
7831 file="res/values-ast-rES/strings.xml"
7832 line="73"
7833 column="5"/>
7834 <location
7835 file="res/values-ast-rES/strings.xml"
7836 line="86"
7837 column="5"
7838 message="Duplicates value in `context_menu_play_next`"/>
7839 </issue>
7840
7841 <issue
7842 id="DuplicateStrings"
7843 message="Duplicate string value `Siguiente`, used in `accessibility_next` and `context_menu_play_next`"
7844 errorLine1=" &lt;string name=&quot;context_menu_play_next&quot;>Siguiente&lt;/string>"
7845 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7846 <location
7847 file="res/values-es-rUS/strings.xml"
7848 line="73"
7849 column="5"/>
7850 <location
7851 file="res/values-es-rUS/strings.xml"
7852 line="86"
7853 column="5"
7854 message="Duplicates value in `context_menu_play_next`"/>
7855 </issue>
7856
7857 <issue
7858 id="DuplicateStrings"
7859 message="Duplicate string value `Siguiente`, used in `accessibility_next` and `context_menu_play_next`"
7860 errorLine1=" &lt;string name=&quot;context_menu_play_next&quot;>Siguiente&lt;/string>"
7861 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7862 <location
7863 file="res/values-es/strings.xml"
7864 line="73"
7865 column="5"/>
7866 <location
7867 file="res/values-es/strings.xml"
7868 line="86"
7869 column="5"
7870 message="Duplicates value in `context_menu_play_next`"/>
7871 </issue>
7872
7873 <issue
7874 id="DuplicateStrings"
7875 message="Duplicate string value `Play`, used in `accessibility_play` and `context_menu_play_selection`"
7876 errorLine1=" &lt;string name=&quot;context_menu_play_selection&quot;>Play&lt;/string>"
7877 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7878 <location
7879 file="res/values/strings.xml"
7880 line="90"
7881 column="5"/>
7882 <location
7883 file="res/values/strings.xml"
7884 line="104"
7885 column="5"
7886 message="Duplicates value in `context_menu_play_selection`"/>
7887 </issue>
7888
7889 <issue
7890 id="DuplicateStrings"
7891 message="Duplicate string value `音乐:4 \u00d7 1`, used in `app_widget_large` and `app_widget_small`"
7892 errorLine1=" &lt;string name=&quot;app_widget_small&quot;>音乐:4 \u00d7 1&lt;/string>"
7893 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7894 <location
7895 file="res/values-zh-rCN/strings.xml"
7896 line="104"
7897 column="5"/>
7898 <location
7899 file="res/values-zh-rCN/strings.xml"
7900 line="105"
7901 column="5"
7902 message="Duplicates value in `app_widget_small`"/>
7903 </issue>
7904
7905 <issue
7906 id="DuplicateStrings"
7907 message="Duplicate string value `Ez dago abestirik erreprodukzio-zerrendan`, used in `empty_playlist_main` and `empty_queue_main`"
7908 errorLine1=" &lt;string name=&quot;empty_playlist_main&quot;>Ez dago abestirik erreprodukzio-zerrendan&lt;/string>"
7909 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
7910 <location
7911 file="res/values-eu/strings.xml"
7912 line="109"
7913 column="5"/>
7914 <location
7915 file="res/values-eu/strings.xml"
7916 line="117"
7917 column="5"
7918 message="Duplicates value in `empty_playlist_main`"/>
7919 </issue>
7920
7921 <issue
7922 id="TypographyDashes"
7923 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
7924 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekundoj&lt;/string>"
7925 errorLine2=" ~~~~~~~~~~~~~~~~">
7926 <location
7927 file="res/values-eo/strings.xml"
7928 line="31"
7929 column="44"/>
7930 </issue>
7931
7932 <issue
7933 id="TypographyDashes"
7934 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
7935 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutoj&lt;/string>"
7936 errorLine2=" ~~~~~~~~~~~~~">
7937 <location
7938 file="res/values-eo/strings.xml"
7939 line="32"
7940 column="42"/>
7941 </issue>
7942
7943 <issue
7944 id="TypographyDashes"
7945 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
7946 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 segundos&lt;/string>"
7947 errorLine2=" ~~~~~~~~~~~~~~~~">
7948 <location
7949 file="res/values-sc-rIT/strings.xml"
7950 line="32"
7951 column="44"/>
7952 </issue>
7953
7954 <issue
7955 id="TypographyDashes"
7956 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
7957 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutoj&lt;/string>"
7958 errorLine2=" ~~~~~~~~~~~~~">
7959 <location
7960 file="res/values-eo/strings.xml"
7961 line="33"
7962 column="42"/>
7963 </issue>
7964
7965 <issue
7966 id="TypographyDashes"
7967 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
7968 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutos&lt;/string>"
7969 errorLine2=" ~~~~~~~~~~~~~">
7970 <location
7971 file="res/values-sc-rIT/strings.xml"
7972 line="33"
7973 column="42"/>
7974 </issue>
7975
7976 <issue
7977 id="TypographyDashes"
7978 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
7979 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutoj&lt;/string>"
7980 errorLine2=" ~~~~~~~~~~~~~">
7981 <location
7982 file="res/values-eo/strings.xml"
7983 line="34"
7984 column="42"/>
7985 </issue>
7986
7987 <issue
7988 id="TypographyDashes"
7989 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
7990 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutos&lt;/string>"
7991 errorLine2=" ~~~~~~~~~~~~~">
7992 <location
7993 file="res/values-sc-rIT/strings.xml"
7994 line="34"
7995 column="42"/>
7996 </issue>
7997
7998 <issue
7999 id="TypographyDashes"
8000 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8001 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutoj&lt;/string>"
8002 errorLine2=" ~~~~~~~~~~~~~">
8003 <location
8004 file="res/values-eo/strings.xml"
8005 line="35"
8006 column="42"/>
8007 </issue>
8008
8009 <issue
8010 id="TypographyDashes"
8011 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8012 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutos&lt;/string>"
8013 errorLine2=" ~~~~~~~~~~~~~">
8014 <location
8015 file="res/values-sc-rIT/strings.xml"
8016 line="35"
8017 column="42"/>
8018 </issue>
8019
8020 <issue
8021 id="TypographyDashes"
8022 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8023 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutoj&lt;/string>"
8024 errorLine2=" ~~~~~~~~~~~~~~">
8025 <location
8026 file="res/values-eo/strings.xml"
8027 line="36"
8028 column="43"/>
8029 </issue>
8030
8031 <issue
8032 id="TypographyDashes"
8033 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8034 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutos&lt;/string>"
8035 errorLine2=" ~~~~~~~~~~~~~">
8036 <location
8037 file="res/values-sc-rIT/strings.xml"
8038 line="36"
8039 column="42"/>
8040 </issue>
8041
8042 <issue
8043 id="TypographyDashes"
8044 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8045 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutoj&lt;/string>"
8046 errorLine2=" ~~~~~~~~~~~~~~~">
8047 <location
8048 file="res/values-eo/strings.xml"
8049 line="37"
8050 column="44"/>
8051 </issue>
8052
8053 <issue
8054 id="TypographyDashes"
8055 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8056 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutos&lt;/string>"
8057 errorLine2=" ~~~~~~~~~~~~~~">
8058 <location
8059 file="res/values-sc-rIT/strings.xml"
8060 line="37"
8061 column="43"/>
8062 </issue>
8063
8064 <issue
8065 id="TypographyDashes"
8066 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8067 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutoj&lt;/string>"
8068 errorLine2=" ~~~~~~~~~~~~~~~">
8069 <location
8070 file="res/values-eo/strings.xml"
8071 line="38"
8072 column="44"/>
8073 </issue>
8074
8075 <issue
8076 id="TypographyDashes"
8077 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8078 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutos&lt;/string>"
8079 errorLine2=" ~~~~~~~~~~~~~~~">
8080 <location
8081 file="res/values-sc-rIT/strings.xml"
8082 line="38"
8083 column="44"/>
8084 </issue>
8085
8086 <issue
8087 id="TypographyDashes"
8088 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8089 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutos&lt;/string>"
8090 errorLine2=" ~~~~~~~~~~~~~~~">
8091 <location
8092 file="res/values-sc-rIT/strings.xml"
8093 line="39"
8094 column="44"/>
8095 </issue>
8096
8097 <issue
8098 id="TypographyDashes"
8099 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8100 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 kantoj&lt;/string>"
8101 errorLine2=" ~~~~~~~~~~~~">
8102 <location
8103 file="res/values-eo/strings.xml"
8104 line="40"
8105 column="40"/>
8106 </issue>
8107
8108 <issue
8109 id="TypographyDashes"
8110 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8111 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 kantoj&lt;/string>"
8112 errorLine2=" ~~~~~~~~~~~~">
8113 <location
8114 file="res/values-eo/strings.xml"
8115 line="41"
8116 column="40"/>
8117 </issue>
8118
8119 <issue
8120 id="TypographyDashes"
8121 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8122 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekonda&lt;/string>"
8123 errorLine2=" ~~~~~~~~~~~~~~~">
8124 <location
8125 file="res/values-sq/strings.xml"
8126 line="68"
8127 column="44"/>
8128 </issue>
8129
8130 <issue
8131 id="TypographyDashes"
8132 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8133 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minuta&lt;/string>"
8134 errorLine2=" ~~~~~~~~~~~~">
8135 <location
8136 file="res/values-sq/strings.xml"
8137 line="69"
8138 column="42"/>
8139 </issue>
8140
8141 <issue
8142 id="TypographyDashes"
8143 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8144 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minuta&lt;/string>"
8145 errorLine2=" ~~~~~~~~~~~~">
8146 <location
8147 file="res/values-sq/strings.xml"
8148 line="70"
8149 column="42"/>
8150 </issue>
8151
8152 <issue
8153 id="TypographyDashes"
8154 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8155 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minuta&lt;/string>"
8156 errorLine2=" ~~~~~~~~~~~~">
8157 <location
8158 file="res/values-sq/strings.xml"
8159 line="71"
8160 column="42"/>
8161 </issue>
8162
8163 <issue
8164 id="TypographyDashes"
8165 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8166 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minuta&lt;/string>"
8167 errorLine2=" ~~~~~~~~~~~~">
8168 <location
8169 file="res/values-sq/strings.xml"
8170 line="72"
8171 column="42"/>
8172 </issue>
8173
8174 <issue
8175 id="TypographyDashes"
8176 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8177 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minuta&lt;/string>"
8178 errorLine2=" ~~~~~~~~~~~~~">
8179 <location
8180 file="res/values-sq/strings.xml"
8181 line="73"
8182 column="43"/>
8183 </issue>
8184
8185 <issue
8186 id="TypographyDashes"
8187 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8188 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minuta&lt;/string>"
8189 errorLine2=" ~~~~~~~~~~~~~~">
8190 <location
8191 file="res/values-sq/strings.xml"
8192 line="74"
8193 column="44"/>
8194 </issue>
8195
8196 <issue
8197 id="TypographyDashes"
8198 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8199 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minuta&lt;/string>"
8200 errorLine2=" ~~~~~~~~~~~~~~">
8201 <location
8202 file="res/values-sq/strings.xml"
8203 line="75"
8204 column="44"/>
8205 </issue>
8206
8207 <issue
8208 id="TypographyDashes"
8209 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8210 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 këngë&lt;/string>"
8211 errorLine2=" ~~~~~~~~~~~">
8212 <location
8213 file="res/values-sq/strings.xml"
8214 line="78"
8215 column="40"/>
8216 </issue>
8217
8218 <issue
8219 id="TypographyDashes"
8220 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8221 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 këngë&lt;/string>"
8222 errorLine2=" ~~~~~~~~~~~">
8223 <location
8224 file="res/values-sq/strings.xml"
8225 line="79"
8226 column="40"/>
8227 </issue>
8228
8229 <issue
8230 id="TypographyDashes"
8231 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8232 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 秒&lt;/string>"
8233 errorLine2=" ~~~~~~~~~">
8234 <location
8235 file="res/values-zh-rHK/strings.xml"
8236 line="113"
8237 column="44"/>
8238 </issue>
8239
8240 <issue
8241 id="TypographyDashes"
8242 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8243 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 分鐘&lt;/string>"
8244 errorLine2=" ~~~~~~~~">
8245 <location
8246 file="res/values-zh-rHK/strings.xml"
8247 line="114"
8248 column="42"/>
8249 </issue>
8250
8251 <issue
8252 id="TypographyDashes"
8253 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8254 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 分鐘&lt;/string>"
8255 errorLine2=" ~~~~~~~~">
8256 <location
8257 file="res/values-zh-rHK/strings.xml"
8258 line="115"
8259 column="42"/>
8260 </issue>
8261
8262 <issue
8263 id="TypographyDashes"
8264 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8265 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 分鐘&lt;/string>"
8266 errorLine2=" ~~~~~~~~">
8267 <location
8268 file="res/values-zh-rHK/strings.xml"
8269 line="116"
8270 column="42"/>
8271 </issue>
8272
8273 <issue
8274 id="TypographyDashes"
8275 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8276 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 分鐘&lt;/string>"
8277 errorLine2=" ~~~~~~~~">
8278 <location
8279 file="res/values-zh-rHK/strings.xml"
8280 line="117"
8281 column="42"/>
8282 </issue>
8283
8284 <issue
8285 id="TypographyDashes"
8286 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8287 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekundes&lt;/string>"
8288 errorLine2=" ~~~~~~~~~~~~~~~~">
8289 <location
8290 file="res/values-lv/strings.xml"
8291 line="118"
8292 column="44"/>
8293 </issue>
8294
8295 <issue
8296 id="TypographyDashes"
8297 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8298 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 分鐘&lt;/string>"
8299 errorLine2=" ~~~~~~~~~">
8300 <location
8301 file="res/values-zh-rHK/strings.xml"
8302 line="118"
8303 column="43"/>
8304 </issue>
8305
8306 <issue
8307 id="TypographyDashes"
8308 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8309 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minūtes&lt;/string>"
8310 errorLine2=" ~~~~~~~~~~~~~">
8311 <location
8312 file="res/values-lv/strings.xml"
8313 line="119"
8314 column="42"/>
8315 </issue>
8316
8317 <issue
8318 id="TypographyDashes"
8319 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8320 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 分鐘&lt;/string>"
8321 errorLine2=" ~~~~~~~~~~">
8322 <location
8323 file="res/values-zh-rHK/strings.xml"
8324 line="119"
8325 column="44"/>
8326 </issue>
8327
8328 <issue
8329 id="TypographyDashes"
8330 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8331 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minūtes&lt;/string>"
8332 errorLine2=" ~~~~~~~~~~~~~">
8333 <location
8334 file="res/values-lv/strings.xml"
8335 line="120"
8336 column="42"/>
8337 </issue>
8338
8339 <issue
8340 id="TypographyDashes"
8341 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8342 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 分鐘&lt;/string>"
8343 errorLine2=" ~~~~~~~~~~">
8344 <location
8345 file="res/values-zh-rHK/strings.xml"
8346 line="120"
8347 column="44"/>
8348 </issue>
8349
8350 <issue
8351 id="TypographyDashes"
8352 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8353 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 ಸೆಕೆಂಡ್‍ಗಳು&lt;/string>"
8354 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
8355 <location
8356 file="res/values-kn/strings.xml"
8357 line="121"
8358 column="44"/>
8359 </issue>
8360
8361 <issue
8362 id="TypographyDashes"
8363 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8364 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minūtes&lt;/string>"
8365 errorLine2=" ~~~~~~~~~~~~~">
8366 <location
8367 file="res/values-lv/strings.xml"
8368 line="121"
8369 column="42"/>
8370 </issue>
8371
8372 <issue
8373 id="TypographyDashes"
8374 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8375 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekondes&lt;/string>"
8376 errorLine2=" ~~~~~~~~~~~~~~~~">
8377 <location
8378 file="res/values-af/strings.xml"
8379 line="122"
8380 column="44"/>
8381 </issue>
8382
8383 <issue
8384 id="TypographyDashes"
8385 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8386 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 ছেকেণ্ড&lt;/string>"
8387 errorLine2=" ~~~~~~~~~~~~~~~">
8388 <location
8389 file="res/values-as/strings.xml"
8390 line="122"
8391 column="44"/>
8392 </issue>
8393
8394 <issue
8395 id="TypographyDashes"
8396 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8397 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 segundos&lt;/string>"
8398 errorLine2=" ~~~~~~~~~~~~~~~~">
8399 <location
8400 file="res/values-ast-rES/strings.xml"
8401 line="122"
8402 column="44"/>
8403 </issue>
8404
8405 <issue
8406 id="TypographyDashes"
8407 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8408 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 секундаў&lt;/string>"
8409 errorLine2=" ~~~~~~~~~~~~~~~~">
8410 <location
8411 file="res/values-be/strings.xml"
8412 line="122"
8413 column="44"/>
8414 </issue>
8415
8416 <issue
8417 id="TypographyDashes"
8418 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8419 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekunder&lt;/string>"
8420 errorLine2=" ~~~~~~~~~~~~~~~~">
8421 <location
8422 file="res/values-da/strings.xml"
8423 line="122"
8424 column="44"/>
8425 </issue>
8426
8427 <issue
8428 id="TypographyDashes"
8429 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8430 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 segundos&lt;/string>"
8431 errorLine2=" ~~~~~~~~~~~~~~~~">
8432 <location
8433 file="res/values-es-rUS/strings.xml"
8434 line="122"
8435 column="44"/>
8436 </issue>
8437
8438 <issue
8439 id="TypographyDashes"
8440 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8441 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 segundos&lt;/string>"
8442 errorLine2=" ~~~~~~~~~~~~~~~~">
8443 <location
8444 file="res/values-es/strings.xml"
8445 line="122"
8446 column="44"/>
8447 </issue>
8448
8449 <issue
8450 id="TypographyDashes"
8451 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8452 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 segundo&lt;/string>"
8453 errorLine2=" ~~~~~~~~~~~~~~~">
8454 <location
8455 file="res/values-eu/strings.xml"
8456 line="122"
8457 column="44"/>
8458 </issue>
8459
8460 <issue
8461 id="TypographyDashes"
8462 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8463 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 સેકન્ડો&lt;/string>"
8464 errorLine2=" ~~~~~~~~~~~~~~~">
8465 <location
8466 file="res/values-gu/strings.xml"
8467 line="122"
8468 column="44"/>
8469 </issue>
8470
8471 <issue
8472 id="TypographyDashes"
8473 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8474 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekundi&lt;/string>"
8475 errorLine2=" ~~~~~~~~~~~~~~~">
8476 <location
8477 file="res/values-hr/strings.xml"
8478 line="122"
8479 column="44"/>
8480 </issue>
8481
8482 <issue
8483 id="TypographyDashes"
8484 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8485 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 detik&lt;/string>"
8486 errorLine2=" ~~~~~~~~~~~~~">
8487 <location
8488 file="res/values-in/strings.xml"
8489 line="122"
8490 column="44"/>
8491 </issue>
8492
8493 <issue
8494 id="TypographyDashes"
8495 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8496 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 ನಿಮಿಷಗಳು&lt;/string>"
8497 errorLine2=" ~~~~~~~~~~~~~~">
8498 <location
8499 file="res/values-kn/strings.xml"
8500 line="122"
8501 column="42"/>
8502 </issue>
8503
8504 <issue
8505 id="TypographyDashes"
8506 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8507 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30-60 Sekonnen&lt;/string>"
8508 errorLine2=" ~~~~~~~~~~~~~~">
8509 <location
8510 file="res/values-lb/strings.xml"
8511 line="122"
8512 column="44"/>
8513 </issue>
8514
8515 <issue
8516 id="TypographyDashes"
8517 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8518 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sek.&lt;/string>"
8519 errorLine2=" ~~~~~~~~~~~~">
8520 <location
8521 file="res/values-lt/strings.xml"
8522 line="122"
8523 column="44"/>
8524 </issue>
8525
8526 <issue
8527 id="TypographyDashes"
8528 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8529 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minūtes&lt;/string>"
8530 errorLine2=" ~~~~~~~~~~~~~">
8531 <location
8532 file="res/values-lv/strings.xml"
8533 line="122"
8534 column="42"/>
8535 </issue>
8536
8537 <issue
8538 id="TypographyDashes"
8539 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8540 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 സെക്കൻഡ്&lt;/string>"
8541 errorLine2=" ~~~~~~~~~~~~~~~~">
8542 <location
8543 file="res/values-ml/strings.xml"
8544 line="122"
8545 column="44"/>
8546 </issue>
8547
8548 <issue
8549 id="TypographyDashes"
8550 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8551 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 सेकंद&lt;/string>"
8552 errorLine2=" ~~~~~~~~~~~~~">
8553 <location
8554 file="res/values-mr/strings.xml"
8555 line="122"
8556 column="44"/>
8557 </issue>
8558
8559 <issue
8560 id="TypographyDashes"
8561 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8562 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekunder&lt;/string>"
8563 errorLine2=" ~~~~~~~~~~~~~~~~">
8564 <location
8565 file="res/values-nb/strings.xml"
8566 line="122"
8567 column="44"/>
8568 </issue>
8569
8570 <issue
8571 id="TypographyDashes"
8572 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8573 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 seconden&lt;/string>"
8574 errorLine2=" ~~~~~~~~~~~~~~~~">
8575 <location
8576 file="res/values-nl/strings.xml"
8577 line="122"
8578 column="44"/>
8579 </issue>
8580
8581 <issue
8582 id="TypographyDashes"
8583 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8584 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 ସେକେଣ୍ଡ&lt;/string>"
8585 errorLine2=" ~~~~~~~~~~~~~~~">
8586 <location
8587 file="res/values-or/strings.xml"
8588 line="122"
8589 column="44"/>
8590 </issue>
8591
8592 <issue
8593 id="TypographyDashes"
8594 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8595 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekund&lt;/string>"
8596 errorLine2=" ~~~~~~~~~~~~~~">
8597 <location
8598 file="res/values-pl/strings.xml"
8599 line="122"
8600 column="44"/>
8601 </issue>
8602
8603 <issue
8604 id="TypographyDashes"
8605 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8606 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 секунди&lt;/string>"
8607 errorLine2=" ~~~~~~~~~~~~~~~">
8608 <location
8609 file="res/values-sr/strings.xml"
8610 line="122"
8611 column="44"/>
8612 </issue>
8613
8614 <issue
8615 id="TypographyDashes"
8616 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8617 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekunder&lt;/string>"
8618 errorLine2=" ~~~~~~~~~~~~~~~~">
8619 <location
8620 file="res/values-sv/strings.xml"
8621 line="122"
8622 column="44"/>
8623 </issue>
8624
8625 <issue
8626 id="TypographyDashes"
8627 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8628 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30-60 வினாடிகள்&lt;/string>"
8629 errorLine2=" ~~~~~~~~~~~~~~~">
8630 <location
8631 file="res/values-ta/strings.xml"
8632 line="122"
8633 column="44"/>
8634 </issue>
8635
8636 <issue
8637 id="TypographyDashes"
8638 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8639 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 సెకనులు&lt;/string>"
8640 errorLine2=" ~~~~~~~~~~~~~~~">
8641 <location
8642 file="res/values-te/strings.xml"
8643 line="122"
8644 column="44"/>
8645 </issue>
8646
8647 <issue
8648 id="TypographyDashes"
8649 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8650 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30-60 سىكونتقىچە&lt;/string>"
8651 errorLine2=" ~~~~~~~~~~~~~~~~">
8652 <location
8653 file="res/values-ug/strings.xml"
8654 line="122"
8655 column="44"/>
8656 </issue>
8657
8658 <issue
8659 id="TypographyDashes"
8660 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8661 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 секунд&lt;/string>"
8662 errorLine2=" ~~~~~~~~~~~~~~">
8663 <location
8664 file="res/values-uk/strings.xml"
8665 line="122"
8666 column="44"/>
8667 </issue>
8668
8669 <issue
8670 id="TypographyDashes"
8671 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8672 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 giây&lt;/string>"
8673 errorLine2=" ~~~~~~~~~~~~">
8674 <location
8675 file="res/values-vi/strings.xml"
8676 line="122"
8677 column="44"/>
8678 </issue>
8679
8680 <issue
8681 id="TypographyDashes"
8682 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8683 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minute&lt;/string>"
8684 errorLine2=" ~~~~~~~~~~~~">
8685 <location
8686 file="res/values-af/strings.xml"
8687 line="123"
8688 column="42"/>
8689 </issue>
8690
8691 <issue
8692 id="TypographyDashes"
8693 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8694 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 ثانية&lt;/string>"
8695 errorLine2=" ~~~~~~~~~~~~~">
8696 <location
8697 file="res/values-ar/strings.xml"
8698 line="123"
8699 column="44"/>
8700 </issue>
8701
8702 <issue
8703 id="TypographyDashes"
8704 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8705 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 মিনিট&lt;/string>"
8706 errorLine2=" ~~~~~~~~~~~">
8707 <location
8708 file="res/values-as/strings.xml"
8709 line="123"
8710 column="42"/>
8711 </issue>
8712
8713 <issue
8714 id="TypographyDashes"
8715 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8716 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutos&lt;/string>"
8717 errorLine2=" ~~~~~~~~~~~~~">
8718 <location
8719 file="res/values-ast-rES/strings.xml"
8720 line="123"
8721 column="42"/>
8722 </issue>
8723
8724 <issue
8725 id="TypographyDashes"
8726 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8727 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 saniyə&lt;/string>"
8728 errorLine2=" ~~~~~~~~~~~~~~">
8729 <location
8730 file="res/values-az/strings.xml"
8731 line="123"
8732 column="44"/>
8733 </issue>
8734
8735 <issue
8736 id="TypographyDashes"
8737 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8738 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 хвіліны&lt;/string>"
8739 errorLine2=" ~~~~~~~~~~~~~">
8740 <location
8741 file="res/values-be/strings.xml"
8742 line="123"
8743 column="42"/>
8744 </issue>
8745
8746 <issue
8747 id="TypographyDashes"
8748 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8749 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 секунди&lt;/string>"
8750 errorLine2=" ~~~~~~~~~~~~~~~">
8751 <location
8752 file="res/values-bg/strings.xml"
8753 line="123"
8754 column="44"/>
8755 </issue>
8756
8757 <issue
8758 id="TypographyDashes"
8759 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8760 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 segons&lt;/string>"
8761 errorLine2=" ~~~~~~~~~~~~~~">
8762 <location
8763 file="res/values-ca/strings.xml"
8764 line="123"
8765 column="44"/>
8766 </issue>
8767
8768 <issue
8769 id="TypographyDashes"
8770 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8771 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekund&lt;/string>"
8772 errorLine2=" ~~~~~~~~~~~~~~">
8773 <location
8774 file="res/values-cs/strings.xml"
8775 line="123"
8776 column="44"/>
8777 </issue>
8778
8779 <issue
8780 id="TypographyDashes"
8781 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8782 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutter&lt;/string>"
8783 errorLine2=" ~~~~~~~~~~~~~~">
8784 <location
8785 file="res/values-da/strings.xml"
8786 line="123"
8787 column="42"/>
8788 </issue>
8789
8790 <issue
8791 id="TypographyDashes"
8792 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8793 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 δευτερόλεπτα&lt;/string>"
8794 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
8795 <location
8796 file="res/values-el/strings.xml"
8797 line="123"
8798 column="44"/>
8799 </issue>
8800
8801 <issue
8802 id="TypographyDashes"
8803 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8804 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 seconds&lt;/string>"
8805 errorLine2=" ~~~~~~~~~~~~~~~">
8806 <location
8807 file="res/values-en-rAU/strings.xml"
8808 line="123"
8809 column="44"/>
8810 </issue>
8811
8812 <issue
8813 id="TypographyDashes"
8814 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8815 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 seconds&lt;/string>"
8816 errorLine2=" ~~~~~~~~~~~~~~~">
8817 <location
8818 file="res/values-en-rCA/strings.xml"
8819 line="123"
8820 column="44"/>
8821 </issue>
8822
8823 <issue
8824 id="TypographyDashes"
8825 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8826 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 seconds&lt;/string>"
8827 errorLine2=" ~~~~~~~~~~~~~~~">
8828 <location
8829 file="res/values-en-rGB/strings.xml"
8830 line="123"
8831 column="44"/>
8832 </issue>
8833
8834 <issue
8835 id="TypographyDashes"
8836 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8837 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 seconds&lt;/string>"
8838 errorLine2=" ~~~~~~~~~~~~~~~">
8839 <location
8840 file="res/values-en-rIN/strings.xml"
8841 line="123"
8842 column="44"/>
8843 </issue>
8844
8845 <issue
8846 id="TypographyDashes"
8847 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8848 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutos&lt;/string>"
8849 errorLine2=" ~~~~~~~~~~~~~">
8850 <location
8851 file="res/values-es-rUS/strings.xml"
8852 line="123"
8853 column="42"/>
8854 </issue>
8855
8856 <issue
8857 id="TypographyDashes"
8858 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8859 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutos&lt;/string>"
8860 errorLine2=" ~~~~~~~~~~~~~">
8861 <location
8862 file="res/values-es/strings.xml"
8863 line="123"
8864 column="42"/>
8865 </issue>
8866
8867 <issue
8868 id="TypographyDashes"
8869 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8870 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekundit&lt;/string>"
8871 errorLine2=" ~~~~~~~~~~~~~~~~">
8872 <location
8873 file="res/values-et/strings.xml"
8874 line="123"
8875 column="44"/>
8876 </issue>
8877
8878 <issue
8879 id="TypographyDashes"
8880 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8881 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutu&lt;/string>"
8882 errorLine2=" ~~~~~~~~~~~~">
8883 <location
8884 file="res/values-eu/strings.xml"
8885 line="123"
8886 column="42"/>
8887 </issue>
8888
8889 <issue
8890 id="TypographyDashes"
8891 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8892 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekuntia&lt;/string>"
8893 errorLine2=" ~~~~~~~~~~~~~~~~">
8894 <location
8895 file="res/values-fi/strings.xml"
8896 line="123"
8897 column="44"/>
8898 </issue>
8899
8900 <issue
8901 id="TypographyDashes"
8902 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8903 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekonden&lt;/string>"
8904 errorLine2=" ~~~~~~~~~~~~~~~~">
8905 <location
8906 file="res/values-fy-rNL/strings.xml"
8907 line="123"
8908 column="44"/>
8909 </issue>
8910
8911 <issue
8912 id="TypographyDashes"
8913 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8914 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 segundos&lt;/string>"
8915 errorLine2=" ~~~~~~~~~~~~~~~~">
8916 <location
8917 file="res/values-gl/strings.xml"
8918 line="123"
8919 column="44"/>
8920 </issue>
8921
8922 <issue
8923 id="TypographyDashes"
8924 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8925 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 મિનિટ&lt;/string>"
8926 errorLine2=" ~~~~~~~~~~~">
8927 <location
8928 file="res/values-gu/strings.xml"
8929 line="123"
8930 column="42"/>
8931 </issue>
8932
8933 <issue
8934 id="TypographyDashes"
8935 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8936 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 मिनट&lt;/string>"
8937 errorLine2=" ~~~~~~~~~~">
8938 <location
8939 file="res/values-hi/strings.xml"
8940 line="123"
8941 column="42"/>
8942 </issue>
8943
8944 <issue
8945 id="TypographyDashes"
8946 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8947 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minute&lt;/string>"
8948 errorLine2=" ~~~~~~~~~~~~">
8949 <location
8950 file="res/values-hr/strings.xml"
8951 line="123"
8952 column="42"/>
8953 </issue>
8954
8955 <issue
8956 id="TypographyDashes"
8957 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8958 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 másodperc&lt;/string>"
8959 errorLine2=" ~~~~~~~~~~~~~~~~~">
8960 <location
8961 file="res/values-hu/strings.xml"
8962 line="123"
8963 column="44"/>
8964 </issue>
8965
8966 <issue
8967 id="TypographyDashes"
8968 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8969 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 menit&lt;/string>"
8970 errorLine2=" ~~~~~~~~~~~">
8971 <location
8972 file="res/values-in/strings.xml"
8973 line="123"
8974 column="42"/>
8975 </issue>
8976
8977 <issue
8978 id="TypographyDashes"
8979 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8980 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 secondi&lt;/string>"
8981 errorLine2=" ~~~~~~~~~~~~~~~">
8982 <location
8983 file="res/values-it/strings.xml"
8984 line="123"
8985 column="44"/>
8986 </issue>
8987
8988 <issue
8989 id="TypographyDashes"
8990 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
8991 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 ನಿಮಿಷಗಳು&lt;/string>"
8992 errorLine2=" ~~~~~~~~~~~~~~">
8993 <location
8994 file="res/values-kn/strings.xml"
8995 line="123"
8996 column="42"/>
8997 </issue>
8998
8999 <issue
9000 id="TypographyDashes"
9001 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9002 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30-60초&lt;/string>"
9003 errorLine2=" ~~~~~~">
9004 <location
9005 file="res/values-ko/strings.xml"
9006 line="123"
9007 column="44"/>
9008 </issue>
9009
9010 <issue
9011 id="TypographyDashes"
9012 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9013 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1-2 Minutten&lt;/string>"
9014 errorLine2=" ~~~~~~~~~~~~">
9015 <location
9016 file="res/values-lb/strings.xml"
9017 line="123"
9018 column="42"/>
9019 </issue>
9020
9021 <issue
9022 id="TypographyDashes"
9023 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9024 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 min.&lt;/string>"
9025 errorLine2=" ~~~~~~~~~~">
9026 <location
9027 file="res/values-lt/strings.xml"
9028 line="123"
9029 column="42"/>
9030 </issue>
9031
9032 <issue
9033 id="TypographyDashes"
9034 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9035 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minūtes&lt;/string>"
9036 errorLine2=" ~~~~~~~~~~~~~~">
9037 <location
9038 file="res/values-lv/strings.xml"
9039 line="123"
9040 column="43"/>
9041 </issue>
9042
9043 <issue
9044 id="TypographyDashes"
9045 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9046 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 മിനിറ്റ്&lt;/string>"
9047 errorLine2=" ~~~~~~~~~~~~~~">
9048 <location
9049 file="res/values-ml/strings.xml"
9050 line="123"
9051 column="42"/>
9052 </issue>
9053
9054 <issue
9055 id="TypographyDashes"
9056 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9057 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 मिनिटे&lt;/string>"
9058 errorLine2=" ~~~~~~~~~~~~">
9059 <location
9060 file="res/values-mr/strings.xml"
9061 line="123"
9062 column="42"/>
9063 </issue>
9064
9065 <issue
9066 id="TypographyDashes"
9067 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9068 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutter&lt;/string>"
9069 errorLine2=" ~~~~~~~~~~~~~~">
9070 <location
9071 file="res/values-nb/strings.xml"
9072 line="123"
9073 column="42"/>
9074 </issue>
9075
9076 <issue
9077 id="TypographyDashes"
9078 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9079 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minuten&lt;/string>"
9080 errorLine2=" ~~~~~~~~~~~~~">
9081 <location
9082 file="res/values-nl/strings.xml"
9083 line="123"
9084 column="42"/>
9085 </issue>
9086
9087 <issue
9088 id="TypographyDashes"
9089 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9090 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 ମିନିଟ୍‍&lt;/string>"
9091 errorLine2=" ~~~~~~~~~~~~~">
9092 <location
9093 file="res/values-or/strings.xml"
9094 line="123"
9095 column="42"/>
9096 </issue>
9097
9098 <issue
9099 id="TypographyDashes"
9100 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9101 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minuty&lt;/string>"
9102 errorLine2=" ~~~~~~~~~~~~">
9103 <location
9104 file="res/values-pl/strings.xml"
9105 line="123"
9106 column="42"/>
9107 </issue>
9108
9109 <issue
9110 id="TypographyDashes"
9111 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9112 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 segundos&lt;/string>"
9113 errorLine2=" ~~~~~~~~~~~~~~~~">
9114 <location
9115 file="res/values-pt-rPT/strings.xml"
9116 line="123"
9117 column="44"/>
9118 </issue>
9119
9120 <issue
9121 id="TypographyDashes"
9122 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9123 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 de secunde&lt;/string>"
9124 errorLine2=" ~~~~~~~~~~~~~~~~~~">
9125 <location
9126 file="res/values-ro/strings.xml"
9127 line="123"
9128 column="44"/>
9129 </issue>
9130
9131 <issue
9132 id="TypographyDashes"
9133 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9134 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekúnd&lt;/string>"
9135 errorLine2=" ~~~~~~~~~~~~~~">
9136 <location
9137 file="res/values-sk/strings.xml"
9138 line="123"
9139 column="44"/>
9140 </issue>
9141
9142 <issue
9143 id="TypographyDashes"
9144 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9145 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 sekund&lt;/string>"
9146 errorLine2=" ~~~~~~~~~~~~~~">
9147 <location
9148 file="res/values-sl/strings.xml"
9149 line="123"
9150 column="44"/>
9151 </issue>
9152
9153 <issue
9154 id="TypographyDashes"
9155 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9156 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 минута&lt;/string>"
9157 errorLine2=" ~~~~~~~~~~~~">
9158 <location
9159 file="res/values-sr/strings.xml"
9160 line="123"
9161 column="42"/>
9162 </issue>
9163
9164 <issue
9165 id="TypographyDashes"
9166 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9167 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minuter&lt;/string>"
9168 errorLine2=" ~~~~~~~~~~~~~">
9169 <location
9170 file="res/values-sv/strings.xml"
9171 line="123"
9172 column="42"/>
9173 </issue>
9174
9175 <issue
9176 id="TypographyDashes"
9177 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9178 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 நிமிடங்கள்&lt;/string>"
9179 errorLine2=" ~~~~~~~~~~~~~~~~">
9180 <location
9181 file="res/values-ta/strings.xml"
9182 line="123"
9183 column="42"/>
9184 </issue>
9185
9186 <issue
9187 id="TypographyDashes"
9188 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9189 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 నిమిషాలు&lt;/string>"
9190 errorLine2=" ~~~~~~~~~~~~~~">
9191 <location
9192 file="res/values-te/strings.xml"
9193 line="123"
9194 column="42"/>
9195 </issue>
9196
9197 <issue
9198 id="TypographyDashes"
9199 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9200 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 วินาที&lt;/string>"
9201 errorLine2=" ~~~~~~~~~~~~~~">
9202 <location
9203 file="res/values-th/strings.xml"
9204 line="123"
9205 column="44"/>
9206 </issue>
9207
9208 <issue
9209 id="TypographyDashes"
9210 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9211 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 saniye&lt;/string>"
9212 errorLine2=" ~~~~~~~~~~~~~~">
9213 <location
9214 file="res/values-tr/strings.xml"
9215 line="123"
9216 column="44"/>
9217 </issue>
9218
9219 <issue
9220 id="TypographyDashes"
9221 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9222 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1-2 مىنۇتقىچە&lt;/string>"
9223 errorLine2=" ~~~~~~~~~~~~~">
9224 <location
9225 file="res/values-ug/strings.xml"
9226 line="123"
9227 column="42"/>
9228 </issue>
9229
9230 <issue
9231 id="TypographyDashes"
9232 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9233 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 хвилини&lt;/string>"
9234 errorLine2=" ~~~~~~~~~~~~~">
9235 <location
9236 file="res/values-uk/strings.xml"
9237 line="123"
9238 column="42"/>
9239 </issue>
9240
9241 <issue
9242 id="TypographyDashes"
9243 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9244 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 phút&lt;/string>"
9245 errorLine2=" ~~~~~~~~~~">
9246 <location
9247 file="res/values-vi/strings.xml"
9248 line="123"
9249 column="42"/>
9250 </issue>
9251
9252 <issue
9253 id="TypographyDashes"
9254 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9255 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30-60 秒&lt;/string>"
9256 errorLine2=" ~~~~~~~">
9257 <location
9258 file="res/values-zh-rCN/strings.xml"
9259 line="123"
9260 column="44"/>
9261 </issue>
9262
9263 <issue
9264 id="TypographyDashes"
9265 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9266 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 首歌曲&lt;/string>"
9267 errorLine2=" ~~~~~~~~~">
9268 <location
9269 file="res/values-zh-rHK/strings.xml"
9270 line="123"
9271 column="40"/>
9272 </issue>
9273
9274 <issue
9275 id="TypographyDashes"
9276 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9277 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 秒&lt;/string>"
9278 errorLine2=" ~~~~~~~~~">
9279 <location
9280 file="res/values-zh-rTW/strings.xml"
9281 line="123"
9282 column="44"/>
9283 </issue>
9284
9285 <issue
9286 id="TypographyDashes"
9287 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9288 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minute&lt;/string>"
9289 errorLine2=" ~~~~~~~~~~~~">
9290 <location
9291 file="res/values-af/strings.xml"
9292 line="124"
9293 column="42"/>
9294 </issue>
9295
9296 <issue
9297 id="TypographyDashes"
9298 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9299 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 دقيقة&lt;/string>"
9300 errorLine2=" ~~~~~~~~~~~">
9301 <location
9302 file="res/values-ar/strings.xml"
9303 line="124"
9304 column="42"/>
9305 </issue>
9306
9307 <issue
9308 id="TypographyDashes"
9309 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9310 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 মিনিট&lt;/string>"
9311 errorLine2=" ~~~~~~~~~~~">
9312 <location
9313 file="res/values-as/strings.xml"
9314 line="124"
9315 column="42"/>
9316 </issue>
9317
9318 <issue
9319 id="TypographyDashes"
9320 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9321 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutos&lt;/string>"
9322 errorLine2=" ~~~~~~~~~~~~~">
9323 <location
9324 file="res/values-ast-rES/strings.xml"
9325 line="124"
9326 column="42"/>
9327 </issue>
9328
9329 <issue
9330 id="TypographyDashes"
9331 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9332 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 dəqiqə&lt;/string>"
9333 errorLine2=" ~~~~~~~~~~~~">
9334 <location
9335 file="res/values-az/strings.xml"
9336 line="124"
9337 column="42"/>
9338 </issue>
9339
9340 <issue
9341 id="TypographyDashes"
9342 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9343 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 хвіліны&lt;/string>"
9344 errorLine2=" ~~~~~~~~~~~~~">
9345 <location
9346 file="res/values-be/strings.xml"
9347 line="124"
9348 column="42"/>
9349 </issue>
9350
9351 <issue
9352 id="TypographyDashes"
9353 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9354 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 минути&lt;/string>"
9355 errorLine2=" ~~~~~~~~~~~~">
9356 <location
9357 file="res/values-bg/strings.xml"
9358 line="124"
9359 column="42"/>
9360 </issue>
9361
9362 <issue
9363 id="TypographyDashes"
9364 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9365 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minuts&lt;/string>"
9366 errorLine2=" ~~~~~~~~~~~~">
9367 <location
9368 file="res/values-ca/strings.xml"
9369 line="124"
9370 column="42"/>
9371 </issue>
9372
9373 <issue
9374 id="TypographyDashes"
9375 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9376 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minuty&lt;/string>"
9377 errorLine2=" ~~~~~~~~~~~~">
9378 <location
9379 file="res/values-cs/strings.xml"
9380 line="124"
9381 column="42"/>
9382 </issue>
9383
9384 <issue
9385 id="TypographyDashes"
9386 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9387 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 munud&lt;/string>"
9388 errorLine2=" ~~~~~~~~~~~">
9389 <location
9390 file="res/values-cy/strings.xml"
9391 line="124"
9392 column="42"/>
9393 </issue>
9394
9395 <issue
9396 id="TypographyDashes"
9397 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9398 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutter&lt;/string>"
9399 errorLine2=" ~~~~~~~~~~~~~~">
9400 <location
9401 file="res/values-da/strings.xml"
9402 line="124"
9403 column="42"/>
9404 </issue>
9405
9406 <issue
9407 id="TypographyDashes"
9408 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9409 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 λεπτά&lt;/string>"
9410 errorLine2=" ~~~~~~~~~~~">
9411 <location
9412 file="res/values-el/strings.xml"
9413 line="124"
9414 column="42"/>
9415 </issue>
9416
9417 <issue
9418 id="TypographyDashes"
9419 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9420 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutes&lt;/string>"
9421 errorLine2=" ~~~~~~~~~~~~~">
9422 <location
9423 file="res/values-en-rAU/strings.xml"
9424 line="124"
9425 column="42"/>
9426 </issue>
9427
9428 <issue
9429 id="TypographyDashes"
9430 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9431 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutes&lt;/string>"
9432 errorLine2=" ~~~~~~~~~~~~~">
9433 <location
9434 file="res/values-en-rCA/strings.xml"
9435 line="124"
9436 column="42"/>
9437 </issue>
9438
9439 <issue
9440 id="TypographyDashes"
9441 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9442 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutes&lt;/string>"
9443 errorLine2=" ~~~~~~~~~~~~~">
9444 <location
9445 file="res/values-en-rGB/strings.xml"
9446 line="124"
9447 column="42"/>
9448 </issue>
9449
9450 <issue
9451 id="TypographyDashes"
9452 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9453 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutes&lt;/string>"
9454 errorLine2=" ~~~~~~~~~~~~~">
9455 <location
9456 file="res/values-en-rIN/strings.xml"
9457 line="124"
9458 column="42"/>
9459 </issue>
9460
9461 <issue
9462 id="TypographyDashes"
9463 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9464 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutos&lt;/string>"
9465 errorLine2=" ~~~~~~~~~~~~~">
9466 <location
9467 file="res/values-es-rUS/strings.xml"
9468 line="124"
9469 column="42"/>
9470 </issue>
9471
9472 <issue
9473 id="TypographyDashes"
9474 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9475 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutos&lt;/string>"
9476 errorLine2=" ~~~~~~~~~~~~~">
9477 <location
9478 file="res/values-es/strings.xml"
9479 line="124"
9480 column="42"/>
9481 </issue>
9482
9483 <issue
9484 id="TypographyDashes"
9485 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9486 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutit&lt;/string>"
9487 errorLine2=" ~~~~~~~~~~~~~">
9488 <location
9489 file="res/values-et/strings.xml"
9490 line="124"
9491 column="42"/>
9492 </issue>
9493
9494 <issue
9495 id="TypographyDashes"
9496 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9497 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutu&lt;/string>"
9498 errorLine2=" ~~~~~~~~~~~~">
9499 <location
9500 file="res/values-eu/strings.xml"
9501 line="124"
9502 column="42"/>
9503 </issue>
9504
9505 <issue
9506 id="TypographyDashes"
9507 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9508 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minuuttia&lt;/string>"
9509 errorLine2=" ~~~~~~~~~~~~~~~">
9510 <location
9511 file="res/values-fi/strings.xml"
9512 line="124"
9513 column="42"/>
9514 </issue>
9515
9516 <issue
9517 id="TypographyDashes"
9518 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9519 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minuten&lt;/string>"
9520 errorLine2=" ~~~~~~~~~~~~~">
9521 <location
9522 file="res/values-fy-rNL/strings.xml"
9523 line="124"
9524 column="42"/>
9525 </issue>
9526
9527 <issue
9528 id="TypographyDashes"
9529 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9530 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutos&lt;/string>"
9531 errorLine2=" ~~~~~~~~~~~~~">
9532 <location
9533 file="res/values-gl/strings.xml"
9534 line="124"
9535 column="42"/>
9536 </issue>
9537
9538 <issue
9539 id="TypographyDashes"
9540 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9541 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 મિનિટ&lt;/string>"
9542 errorLine2=" ~~~~~~~~~~~">
9543 <location
9544 file="res/values-gu/strings.xml"
9545 line="124"
9546 column="42"/>
9547 </issue>
9548
9549 <issue
9550 id="TypographyDashes"
9551 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9552 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 मिनट&lt;/string>"
9553 errorLine2=" ~~~~~~~~~~">
9554 <location
9555 file="res/values-hi/strings.xml"
9556 line="124"
9557 column="42"/>
9558 </issue>
9559
9560 <issue
9561 id="TypographyDashes"
9562 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9563 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minute&lt;/string>"
9564 errorLine2=" ~~~~~~~~~~~~">
9565 <location
9566 file="res/values-hr/strings.xml"
9567 line="124"
9568 column="42"/>
9569 </issue>
9570
9571 <issue
9572 id="TypographyDashes"
9573 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9574 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 perc&lt;/string>"
9575 errorLine2=" ~~~~~~~~~~">
9576 <location
9577 file="res/values-hu/strings.xml"
9578 line="124"
9579 column="42"/>
9580 </issue>
9581
9582 <issue
9583 id="TypographyDashes"
9584 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9585 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 menit&lt;/string>"
9586 errorLine2=" ~~~~~~~~~~~">
9587 <location
9588 file="res/values-in/strings.xml"
9589 line="124"
9590 column="42"/>
9591 </issue>
9592
9593 <issue
9594 id="TypographyDashes"
9595 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9596 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minuti&lt;/string>"
9597 errorLine2=" ~~~~~~~~~~~~">
9598 <location
9599 file="res/values-it/strings.xml"
9600 line="124"
9601 column="42"/>
9602 </issue>
9603
9604 <issue
9605 id="TypographyDashes"
9606 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9607 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 ನಿಮಿಷಗಳು&lt;/string>"
9608 errorLine2=" ~~~~~~~~~~~~~~">
9609 <location
9610 file="res/values-kn/strings.xml"
9611 line="124"
9612 column="42"/>
9613 </issue>
9614
9615 <issue
9616 id="TypographyDashes"
9617 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9618 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1-2분&lt;/string>"
9619 errorLine2=" ~~~~">
9620 <location
9621 file="res/values-ko/strings.xml"
9622 line="124"
9623 column="42"/>
9624 </issue>
9625
9626 <issue
9627 id="TypographyDashes"
9628 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9629 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2-3 Minutten&lt;/string>"
9630 errorLine2=" ~~~~~~~~~~~~">
9631 <location
9632 file="res/values-lb/strings.xml"
9633 line="124"
9634 column="42"/>
9635 </issue>
9636
9637 <issue
9638 id="TypographyDashes"
9639 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9640 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 min.&lt;/string>"
9641 errorLine2=" ~~~~~~~~~~">
9642 <location
9643 file="res/values-lt/strings.xml"
9644 line="124"
9645 column="42"/>
9646 </issue>
9647
9648 <issue
9649 id="TypographyDashes"
9650 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9651 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minūtes&lt;/string>"
9652 errorLine2=" ~~~~~~~~~~~~~~~">
9653 <location
9654 file="res/values-lv/strings.xml"
9655 line="124"
9656 column="44"/>
9657 </issue>
9658
9659 <issue
9660 id="TypographyDashes"
9661 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9662 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 മിനിറ്റ്&lt;/string>"
9663 errorLine2=" ~~~~~~~~~~~~~~">
9664 <location
9665 file="res/values-ml/strings.xml"
9666 line="124"
9667 column="42"/>
9668 </issue>
9669
9670 <issue
9671 id="TypographyDashes"
9672 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9673 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 मिनिटे&lt;/string>"
9674 errorLine2=" ~~~~~~~~~~~~">
9675 <location
9676 file="res/values-mr/strings.xml"
9677 line="124"
9678 column="42"/>
9679 </issue>
9680
9681 <issue
9682 id="TypographyDashes"
9683 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9684 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutter&lt;/string>"
9685 errorLine2=" ~~~~~~~~~~~~~~">
9686 <location
9687 file="res/values-nb/strings.xml"
9688 line="124"
9689 column="42"/>
9690 </issue>
9691
9692 <issue
9693 id="TypographyDashes"
9694 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9695 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minuten&lt;/string>"
9696 errorLine2=" ~~~~~~~~~~~~~">
9697 <location
9698 file="res/values-nl/strings.xml"
9699 line="124"
9700 column="42"/>
9701 </issue>
9702
9703 <issue
9704 id="TypographyDashes"
9705 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9706 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 ମିନିଟ୍‍&lt;/string>"
9707 errorLine2=" ~~~~~~~~~~~~~">
9708 <location
9709 file="res/values-or/strings.xml"
9710 line="124"
9711 column="42"/>
9712 </issue>
9713
9714 <issue
9715 id="TypographyDashes"
9716 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9717 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minut&lt;/string>"
9718 errorLine2=" ~~~~~~~~~~~">
9719 <location
9720 file="res/values-pl/strings.xml"
9721 line="124"
9722 column="42"/>
9723 </issue>
9724
9725 <issue
9726 id="TypographyDashes"
9727 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9728 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutos&lt;/string>"
9729 errorLine2=" ~~~~~~~~~~~~~">
9730 <location
9731 file="res/values-pt-rPT/strings.xml"
9732 line="124"
9733 column="42"/>
9734 </issue>
9735
9736 <issue
9737 id="TypographyDashes"
9738 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9739 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minute&lt;/string>"
9740 errorLine2=" ~~~~~~~~~~~~">
9741 <location
9742 file="res/values-ro/strings.xml"
9743 line="124"
9744 column="42"/>
9745 </issue>
9746
9747 <issue
9748 id="TypographyDashes"
9749 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9750 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minúty&lt;/string>"
9751 errorLine2=" ~~~~~~~~~~~~">
9752 <location
9753 file="res/values-sk/strings.xml"
9754 line="124"
9755 column="42"/>
9756 </issue>
9757
9758 <issue
9759 id="TypographyDashes"
9760 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9761 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minut&lt;/string>"
9762 errorLine2=" ~~~~~~~~~~~">
9763 <location
9764 file="res/values-sl/strings.xml"
9765 line="124"
9766 column="42"/>
9767 </issue>
9768
9769 <issue
9770 id="TypographyDashes"
9771 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9772 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 минута&lt;/string>"
9773 errorLine2=" ~~~~~~~~~~~~">
9774 <location
9775 file="res/values-sr/strings.xml"
9776 line="124"
9777 column="42"/>
9778 </issue>
9779
9780 <issue
9781 id="TypographyDashes"
9782 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9783 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minuter&lt;/string>"
9784 errorLine2=" ~~~~~~~~~~~~~">
9785 <location
9786 file="res/values-sv/strings.xml"
9787 line="124"
9788 column="42"/>
9789 </issue>
9790
9791 <issue
9792 id="TypographyDashes"
9793 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9794 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 நிமிடங்கள்&lt;/string>"
9795 errorLine2=" ~~~~~~~~~~~~~~~~">
9796 <location
9797 file="res/values-ta/strings.xml"
9798 line="124"
9799 column="42"/>
9800 </issue>
9801
9802 <issue
9803 id="TypographyDashes"
9804 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9805 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 నిమిషాలు&lt;/string>"
9806 errorLine2=" ~~~~~~~~~~~~~~">
9807 <location
9808 file="res/values-te/strings.xml"
9809 line="124"
9810 column="42"/>
9811 </issue>
9812
9813 <issue
9814 id="TypographyDashes"
9815 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9816 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 นาที&lt;/string>"
9817 errorLine2=" ~~~~~~~~~~">
9818 <location
9819 file="res/values-th/strings.xml"
9820 line="124"
9821 column="42"/>
9822 </issue>
9823
9824 <issue
9825 id="TypographyDashes"
9826 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9827 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 dakika&lt;/string>"
9828 errorLine2=" ~~~~~~~~~~~~">
9829 <location
9830 file="res/values-tr/strings.xml"
9831 line="124"
9832 column="42"/>
9833 </issue>
9834
9835 <issue
9836 id="TypographyDashes"
9837 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9838 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2-3 مىنۇتقىچە&lt;/string>"
9839 errorLine2=" ~~~~~~~~~~~~~">
9840 <location
9841 file="res/values-ug/strings.xml"
9842 line="124"
9843 column="42"/>
9844 </issue>
9845
9846 <issue
9847 id="TypographyDashes"
9848 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9849 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 хвилини&lt;/string>"
9850 errorLine2=" ~~~~~~~~~~~~~">
9851 <location
9852 file="res/values-uk/strings.xml"
9853 line="124"
9854 column="42"/>
9855 </issue>
9856
9857 <issue
9858 id="TypographyDashes"
9859 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9860 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 phút&lt;/string>"
9861 errorLine2=" ~~~~~~~~~~">
9862 <location
9863 file="res/values-vi/strings.xml"
9864 line="124"
9865 column="42"/>
9866 </issue>
9867
9868 <issue
9869 id="TypographyDashes"
9870 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9871 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1-2 分钟&lt;/string>"
9872 errorLine2=" ~~~~~~">
9873 <location
9874 file="res/values-zh-rCN/strings.xml"
9875 line="124"
9876 column="42"/>
9877 </issue>
9878
9879 <issue
9880 id="TypographyDashes"
9881 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9882 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 首歌曲&lt;/string>"
9883 errorLine2=" ~~~~~~~~~">
9884 <location
9885 file="res/values-zh-rHK/strings.xml"
9886 line="124"
9887 column="40"/>
9888 </issue>
9889
9890 <issue
9891 id="TypographyDashes"
9892 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9893 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 分鐘&lt;/string>"
9894 errorLine2=" ~~~~~~~~">
9895 <location
9896 file="res/values-zh-rTW/strings.xml"
9897 line="124"
9898 column="42"/>
9899 </issue>
9900
9901 <issue
9902 id="TypographyDashes"
9903 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9904 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minute&lt;/string>"
9905 errorLine2=" ~~~~~~~~~~~~">
9906 <location
9907 file="res/values-af/strings.xml"
9908 line="125"
9909 column="42"/>
9910 </issue>
9911
9912 <issue
9913 id="TypographyDashes"
9914 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9915 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 دقائق&lt;/string>"
9916 errorLine2=" ~~~~~~~~~~~">
9917 <location
9918 file="res/values-ar/strings.xml"
9919 line="125"
9920 column="42"/>
9921 </issue>
9922
9923 <issue
9924 id="TypographyDashes"
9925 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9926 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 মিনিট&lt;/string>"
9927 errorLine2=" ~~~~~~~~~~~">
9928 <location
9929 file="res/values-as/strings.xml"
9930 line="125"
9931 column="42"/>
9932 </issue>
9933
9934 <issue
9935 id="TypographyDashes"
9936 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9937 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutos&lt;/string>"
9938 errorLine2=" ~~~~~~~~~~~~~">
9939 <location
9940 file="res/values-ast-rES/strings.xml"
9941 line="125"
9942 column="42"/>
9943 </issue>
9944
9945 <issue
9946 id="TypographyDashes"
9947 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9948 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 dəqiqə&lt;/string>"
9949 errorLine2=" ~~~~~~~~~~~~">
9950 <location
9951 file="res/values-az/strings.xml"
9952 line="125"
9953 column="42"/>
9954 </issue>
9955
9956 <issue
9957 id="TypographyDashes"
9958 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9959 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 хвіліны&lt;/string>"
9960 errorLine2=" ~~~~~~~~~~~~~">
9961 <location
9962 file="res/values-be/strings.xml"
9963 line="125"
9964 column="42"/>
9965 </issue>
9966
9967 <issue
9968 id="TypographyDashes"
9969 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9970 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 минути&lt;/string>"
9971 errorLine2=" ~~~~~~~~~~~~">
9972 <location
9973 file="res/values-bg/strings.xml"
9974 line="125"
9975 column="42"/>
9976 </issue>
9977
9978 <issue
9979 id="TypographyDashes"
9980 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9981 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minuts&lt;/string>"
9982 errorLine2=" ~~~~~~~~~~~~">
9983 <location
9984 file="res/values-ca/strings.xml"
9985 line="125"
9986 column="42"/>
9987 </issue>
9988
9989 <issue
9990 id="TypographyDashes"
9991 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
9992 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minuty&lt;/string>"
9993 errorLine2=" ~~~~~~~~~~~~">
9994 <location
9995 file="res/values-cs/strings.xml"
9996 line="125"
9997 column="42"/>
9998 </issue>
9999
10000 <issue
10001 id="TypographyDashes"
10002 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10003 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 munud&lt;/string>"
10004 errorLine2=" ~~~~~~~~~~~">
10005 <location
10006 file="res/values-cy/strings.xml"
10007 line="125"
10008 column="42"/>
10009 </issue>
10010
10011 <issue
10012 id="TypographyDashes"
10013 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10014 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutter&lt;/string>"
10015 errorLine2=" ~~~~~~~~~~~~~~">
10016 <location
10017 file="res/values-da/strings.xml"
10018 line="125"
10019 column="42"/>
10020 </issue>
10021
10022 <issue
10023 id="TypographyDashes"
10024 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10025 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 λεπτά&lt;/string>"
10026 errorLine2=" ~~~~~~~~~~~">
10027 <location
10028 file="res/values-el/strings.xml"
10029 line="125"
10030 column="42"/>
10031 </issue>
10032
10033 <issue
10034 id="TypographyDashes"
10035 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10036 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutes&lt;/string>"
10037 errorLine2=" ~~~~~~~~~~~~~">
10038 <location
10039 file="res/values-en-rAU/strings.xml"
10040 line="125"
10041 column="42"/>
10042 </issue>
10043
10044 <issue
10045 id="TypographyDashes"
10046 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10047 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutes&lt;/string>"
10048 errorLine2=" ~~~~~~~~~~~~~">
10049 <location
10050 file="res/values-en-rCA/strings.xml"
10051 line="125"
10052 column="42"/>
10053 </issue>
10054
10055 <issue
10056 id="TypographyDashes"
10057 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10058 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutes&lt;/string>"
10059 errorLine2=" ~~~~~~~~~~~~~">
10060 <location
10061 file="res/values-en-rGB/strings.xml"
10062 line="125"
10063 column="42"/>
10064 </issue>
10065
10066 <issue
10067 id="TypographyDashes"
10068 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10069 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutes&lt;/string>"
10070 errorLine2=" ~~~~~~~~~~~~~">
10071 <location
10072 file="res/values-en-rIN/strings.xml"
10073 line="125"
10074 column="42"/>
10075 </issue>
10076
10077 <issue
10078 id="TypographyDashes"
10079 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10080 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutos&lt;/string>"
10081 errorLine2=" ~~~~~~~~~~~~~">
10082 <location
10083 file="res/values-es-rUS/strings.xml"
10084 line="125"
10085 column="42"/>
10086 </issue>
10087
10088 <issue
10089 id="TypographyDashes"
10090 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10091 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutos&lt;/string>"
10092 errorLine2=" ~~~~~~~~~~~~~">
10093 <location
10094 file="res/values-es/strings.xml"
10095 line="125"
10096 column="42"/>
10097 </issue>
10098
10099 <issue
10100 id="TypographyDashes"
10101 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10102 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutit&lt;/string>"
10103 errorLine2=" ~~~~~~~~~~~~~">
10104 <location
10105 file="res/values-et/strings.xml"
10106 line="125"
10107 column="42"/>
10108 </issue>
10109
10110 <issue
10111 id="TypographyDashes"
10112 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10113 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutu&lt;/string>"
10114 errorLine2=" ~~~~~~~~~~~~">
10115 <location
10116 file="res/values-eu/strings.xml"
10117 line="125"
10118 column="42"/>
10119 </issue>
10120
10121 <issue
10122 id="TypographyDashes"
10123 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10124 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minuuttia&lt;/string>"
10125 errorLine2=" ~~~~~~~~~~~~~~~">
10126 <location
10127 file="res/values-fi/strings.xml"
10128 line="125"
10129 column="42"/>
10130 </issue>
10131
10132 <issue
10133 id="TypographyDashes"
10134 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10135 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minuten&lt;/string>"
10136 errorLine2=" ~~~~~~~~~~~~~">
10137 <location
10138 file="res/values-fy-rNL/strings.xml"
10139 line="125"
10140 column="42"/>
10141 </issue>
10142
10143 <issue
10144 id="TypographyDashes"
10145 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10146 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutos&lt;/string>"
10147 errorLine2=" ~~~~~~~~~~~~~">
10148 <location
10149 file="res/values-gl/strings.xml"
10150 line="125"
10151 column="42"/>
10152 </issue>
10153
10154 <issue
10155 id="TypographyDashes"
10156 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10157 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 મિનિટ&lt;/string>"
10158 errorLine2=" ~~~~~~~~~~~">
10159 <location
10160 file="res/values-gu/strings.xml"
10161 line="125"
10162 column="42"/>
10163 </issue>
10164
10165 <issue
10166 id="TypographyDashes"
10167 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10168 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 मिनट&lt;/string>"
10169 errorLine2=" ~~~~~~~~~~">
10170 <location
10171 file="res/values-hi/strings.xml"
10172 line="125"
10173 column="42"/>
10174 </issue>
10175
10176 <issue
10177 id="TypographyDashes"
10178 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10179 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minute&lt;/string>"
10180 errorLine2=" ~~~~~~~~~~~~">
10181 <location
10182 file="res/values-hr/strings.xml"
10183 line="125"
10184 column="42"/>
10185 </issue>
10186
10187 <issue
10188 id="TypographyDashes"
10189 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10190 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 perc&lt;/string>"
10191 errorLine2=" ~~~~~~~~~~">
10192 <location
10193 file="res/values-hu/strings.xml"
10194 line="125"
10195 column="42"/>
10196 </issue>
10197
10198 <issue
10199 id="TypographyDashes"
10200 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10201 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 menit&lt;/string>"
10202 errorLine2=" ~~~~~~~~~~~">
10203 <location
10204 file="res/values-in/strings.xml"
10205 line="125"
10206 column="42"/>
10207 </issue>
10208
10209 <issue
10210 id="TypographyDashes"
10211 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10212 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minuti&lt;/string>"
10213 errorLine2=" ~~~~~~~~~~~~">
10214 <location
10215 file="res/values-it/strings.xml"
10216 line="125"
10217 column="42"/>
10218 </issue>
10219
10220 <issue
10221 id="TypographyDashes"
10222 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10223 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 ನಿಮಿಷಗಳು&lt;/string>"
10224 errorLine2=" ~~~~~~~~~~~~~~">
10225 <location
10226 file="res/values-kn/strings.xml"
10227 line="125"
10228 column="42"/>
10229 </issue>
10230
10231 <issue
10232 id="TypographyDashes"
10233 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10234 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2-3분&lt;/string>"
10235 errorLine2=" ~~~~">
10236 <location
10237 file="res/values-ko/strings.xml"
10238 line="125"
10239 column="42"/>
10240 </issue>
10241
10242 <issue
10243 id="TypographyDashes"
10244 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10245 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3-4 Minutten&lt;/string>"
10246 errorLine2=" ~~~~~~~~~~~~">
10247 <location
10248 file="res/values-lb/strings.xml"
10249 line="125"
10250 column="42"/>
10251 </issue>
10252
10253 <issue
10254 id="TypographyDashes"
10255 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10256 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 min.&lt;/string>"
10257 errorLine2=" ~~~~~~~~~~">
10258 <location
10259 file="res/values-lt/strings.xml"
10260 line="125"
10261 column="42"/>
10262 </issue>
10263
10264 <issue
10265 id="TypographyDashes"
10266 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10267 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minūtes&lt;/string>"
10268 errorLine2=" ~~~~~~~~~~~~~~~">
10269 <location
10270 file="res/values-lv/strings.xml"
10271 line="125"
10272 column="44"/>
10273 </issue>
10274
10275 <issue
10276 id="TypographyDashes"
10277 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10278 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 മിനിറ്റ്&lt;/string>"
10279 errorLine2=" ~~~~~~~~~~~~~~">
10280 <location
10281 file="res/values-ml/strings.xml"
10282 line="125"
10283 column="42"/>
10284 </issue>
10285
10286 <issue
10287 id="TypographyDashes"
10288 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10289 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 मिनिटे&lt;/string>"
10290 errorLine2=" ~~~~~~~~~~~~">
10291 <location
10292 file="res/values-mr/strings.xml"
10293 line="125"
10294 column="42"/>
10295 </issue>
10296
10297 <issue
10298 id="TypographyDashes"
10299 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10300 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutter&lt;/string>"
10301 errorLine2=" ~~~~~~~~~~~~~~">
10302 <location
10303 file="res/values-nb/strings.xml"
10304 line="125"
10305 column="42"/>
10306 </issue>
10307
10308 <issue
10309 id="TypographyDashes"
10310 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10311 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minuten&lt;/string>"
10312 errorLine2=" ~~~~~~~~~~~~~">
10313 <location
10314 file="res/values-nl/strings.xml"
10315 line="125"
10316 column="42"/>
10317 </issue>
10318
10319 <issue
10320 id="TypographyDashes"
10321 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10322 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 ମିନିଟ୍‍&lt;/string>"
10323 errorLine2=" ~~~~~~~~~~~~~">
10324 <location
10325 file="res/values-or/strings.xml"
10326 line="125"
10327 column="42"/>
10328 </issue>
10329
10330 <issue
10331 id="TypographyDashes"
10332 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10333 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minuty&lt;/string>"
10334 errorLine2=" ~~~~~~~~~~~~">
10335 <location
10336 file="res/values-pl/strings.xml"
10337 line="125"
10338 column="42"/>
10339 </issue>
10340
10341 <issue
10342 id="TypographyDashes"
10343 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10344 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutos&lt;/string>"
10345 errorLine2=" ~~~~~~~~~~~~~">
10346 <location
10347 file="res/values-pt-rPT/strings.xml"
10348 line="125"
10349 column="42"/>
10350 </issue>
10351
10352 <issue
10353 id="TypographyDashes"
10354 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10355 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minute&lt;/string>"
10356 errorLine2=" ~~~~~~~~~~~~">
10357 <location
10358 file="res/values-ro/strings.xml"
10359 line="125"
10360 column="42"/>
10361 </issue>
10362
10363 <issue
10364 id="TypographyDashes"
10365 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10366 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minúty&lt;/string>"
10367 errorLine2=" ~~~~~~~~~~~~">
10368 <location
10369 file="res/values-sk/strings.xml"
10370 line="125"
10371 column="42"/>
10372 </issue>
10373
10374 <issue
10375 id="TypographyDashes"
10376 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10377 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minute&lt;/string>"
10378 errorLine2=" ~~~~~~~~~~~~">
10379 <location
10380 file="res/values-sl/strings.xml"
10381 line="125"
10382 column="42"/>
10383 </issue>
10384
10385 <issue
10386 id="TypographyDashes"
10387 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10388 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 минута&lt;/string>"
10389 errorLine2=" ~~~~~~~~~~~~">
10390 <location
10391 file="res/values-sr/strings.xml"
10392 line="125"
10393 column="42"/>
10394 </issue>
10395
10396 <issue
10397 id="TypographyDashes"
10398 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10399 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minuter&lt;/string>"
10400 errorLine2=" ~~~~~~~~~~~~~">
10401 <location
10402 file="res/values-sv/strings.xml"
10403 line="125"
10404 column="42"/>
10405 </issue>
10406
10407 <issue
10408 id="TypographyDashes"
10409 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10410 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 நிமிடங்கள்&lt;/string>"
10411 errorLine2=" ~~~~~~~~~~~~~~~~">
10412 <location
10413 file="res/values-ta/strings.xml"
10414 line="125"
10415 column="42"/>
10416 </issue>
10417
10418 <issue
10419 id="TypographyDashes"
10420 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10421 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 నిమిషాలు&lt;/string>"
10422 errorLine2=" ~~~~~~~~~~~~~~">
10423 <location
10424 file="res/values-te/strings.xml"
10425 line="125"
10426 column="42"/>
10427 </issue>
10428
10429 <issue
10430 id="TypographyDashes"
10431 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10432 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 นาที&lt;/string>"
10433 errorLine2=" ~~~~~~~~~~">
10434 <location
10435 file="res/values-th/strings.xml"
10436 line="125"
10437 column="42"/>
10438 </issue>
10439
10440 <issue
10441 id="TypographyDashes"
10442 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10443 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 dakika&lt;/string>"
10444 errorLine2=" ~~~~~~~~~~~~">
10445 <location
10446 file="res/values-tr/strings.xml"
10447 line="125"
10448 column="42"/>
10449 </issue>
10450
10451 <issue
10452 id="TypographyDashes"
10453 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10454 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3-4 مىنۇتقىچە&lt;/string>"
10455 errorLine2=" ~~~~~~~~~~~~~">
10456 <location
10457 file="res/values-ug/strings.xml"
10458 line="125"
10459 column="42"/>
10460 </issue>
10461
10462 <issue
10463 id="TypographyDashes"
10464 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10465 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 хвилини&lt;/string>"
10466 errorLine2=" ~~~~~~~~~~~~~">
10467 <location
10468 file="res/values-uk/strings.xml"
10469 line="125"
10470 column="42"/>
10471 </issue>
10472
10473 <issue
10474 id="TypographyDashes"
10475 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10476 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 phút&lt;/string>"
10477 errorLine2=" ~~~~~~~~~~">
10478 <location
10479 file="res/values-vi/strings.xml"
10480 line="125"
10481 column="42"/>
10482 </issue>
10483
10484 <issue
10485 id="TypographyDashes"
10486 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10487 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2-3 分钟&lt;/string>"
10488 errorLine2=" ~~~~~~">
10489 <location
10490 file="res/values-zh-rCN/strings.xml"
10491 line="125"
10492 column="42"/>
10493 </issue>
10494
10495 <issue
10496 id="TypographyDashes"
10497 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10498 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 分鐘&lt;/string>"
10499 errorLine2=" ~~~~~~~~">
10500 <location
10501 file="res/values-zh-rTW/strings.xml"
10502 line="125"
10503 column="42"/>
10504 </issue>
10505
10506 <issue
10507 id="TypographyDashes"
10508 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10509 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minute&lt;/string>"
10510 errorLine2=" ~~~~~~~~~~~~">
10511 <location
10512 file="res/values-af/strings.xml"
10513 line="126"
10514 column="42"/>
10515 </issue>
10516
10517 <issue
10518 id="TypographyDashes"
10519 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10520 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 دقائق&lt;/string>"
10521 errorLine2=" ~~~~~~~~~~~">
10522 <location
10523 file="res/values-ar/strings.xml"
10524 line="126"
10525 column="42"/>
10526 </issue>
10527
10528 <issue
10529 id="TypographyDashes"
10530 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10531 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 মিনিট&lt;/string>"
10532 errorLine2=" ~~~~~~~~~~~">
10533 <location
10534 file="res/values-as/strings.xml"
10535 line="126"
10536 column="42"/>
10537 </issue>
10538
10539 <issue
10540 id="TypographyDashes"
10541 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10542 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutos&lt;/string>"
10543 errorLine2=" ~~~~~~~~~~~~~">
10544 <location
10545 file="res/values-ast-rES/strings.xml"
10546 line="126"
10547 column="42"/>
10548 </issue>
10549
10550 <issue
10551 id="TypographyDashes"
10552 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10553 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 dəqiqə&lt;/string>"
10554 errorLine2=" ~~~~~~~~~~~~">
10555 <location
10556 file="res/values-az/strings.xml"
10557 line="126"
10558 column="42"/>
10559 </issue>
10560
10561 <issue
10562 id="TypographyDashes"
10563 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10564 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 хвілін&lt;/string>"
10565 errorLine2=" ~~~~~~~~~~~~">
10566 <location
10567 file="res/values-be/strings.xml"
10568 line="126"
10569 column="42"/>
10570 </issue>
10571
10572 <issue
10573 id="TypographyDashes"
10574 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10575 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 минути&lt;/string>"
10576 errorLine2=" ~~~~~~~~~~~~">
10577 <location
10578 file="res/values-bg/strings.xml"
10579 line="126"
10580 column="42"/>
10581 </issue>
10582
10583 <issue
10584 id="TypographyDashes"
10585 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10586 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minuts&lt;/string>"
10587 errorLine2=" ~~~~~~~~~~~~">
10588 <location
10589 file="res/values-ca/strings.xml"
10590 line="126"
10591 column="42"/>
10592 </issue>
10593
10594 <issue
10595 id="TypographyDashes"
10596 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10597 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minuty&lt;/string>"
10598 errorLine2=" ~~~~~~~~~~~~">
10599 <location
10600 file="res/values-cs/strings.xml"
10601 line="126"
10602 column="42"/>
10603 </issue>
10604
10605 <issue
10606 id="TypographyDashes"
10607 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10608 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutter&lt;/string>"
10609 errorLine2=" ~~~~~~~~~~~~~~">
10610 <location
10611 file="res/values-da/strings.xml"
10612 line="126"
10613 column="42"/>
10614 </issue>
10615
10616 <issue
10617 id="TypographyDashes"
10618 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10619 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 λεπτά&lt;/string>"
10620 errorLine2=" ~~~~~~~~~~~">
10621 <location
10622 file="res/values-el/strings.xml"
10623 line="126"
10624 column="42"/>
10625 </issue>
10626
10627 <issue
10628 id="TypographyDashes"
10629 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10630 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutes&lt;/string>"
10631 errorLine2=" ~~~~~~~~~~~~~">
10632 <location
10633 file="res/values-en-rAU/strings.xml"
10634 line="126"
10635 column="42"/>
10636 </issue>
10637
10638 <issue
10639 id="TypographyDashes"
10640 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10641 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutes&lt;/string>"
10642 errorLine2=" ~~~~~~~~~~~~~">
10643 <location
10644 file="res/values-en-rCA/strings.xml"
10645 line="126"
10646 column="42"/>
10647 </issue>
10648
10649 <issue
10650 id="TypographyDashes"
10651 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10652 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutes&lt;/string>"
10653 errorLine2=" ~~~~~~~~~~~~~">
10654 <location
10655 file="res/values-en-rGB/strings.xml"
10656 line="126"
10657 column="42"/>
10658 </issue>
10659
10660 <issue
10661 id="TypographyDashes"
10662 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10663 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutes&lt;/string>"
10664 errorLine2=" ~~~~~~~~~~~~~">
10665 <location
10666 file="res/values-en-rIN/strings.xml"
10667 line="126"
10668 column="42"/>
10669 </issue>
10670
10671 <issue
10672 id="TypographyDashes"
10673 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10674 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutos&lt;/string>"
10675 errorLine2=" ~~~~~~~~~~~~~">
10676 <location
10677 file="res/values-es-rUS/strings.xml"
10678 line="126"
10679 column="42"/>
10680 </issue>
10681
10682 <issue
10683 id="TypographyDashes"
10684 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10685 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutos&lt;/string>"
10686 errorLine2=" ~~~~~~~~~~~~~">
10687 <location
10688 file="res/values-es/strings.xml"
10689 line="126"
10690 column="42"/>
10691 </issue>
10692
10693 <issue
10694 id="TypographyDashes"
10695 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10696 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutit&lt;/string>"
10697 errorLine2=" ~~~~~~~~~~~~~">
10698 <location
10699 file="res/values-et/strings.xml"
10700 line="126"
10701 column="42"/>
10702 </issue>
10703
10704 <issue
10705 id="TypographyDashes"
10706 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10707 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutu&lt;/string>"
10708 errorLine2=" ~~~~~~~~~~~~">
10709 <location
10710 file="res/values-eu/strings.xml"
10711 line="126"
10712 column="42"/>
10713 </issue>
10714
10715 <issue
10716 id="TypographyDashes"
10717 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10718 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minuuttia&lt;/string>"
10719 errorLine2=" ~~~~~~~~~~~~~~~">
10720 <location
10721 file="res/values-fi/strings.xml"
10722 line="126"
10723 column="42"/>
10724 </issue>
10725
10726 <issue
10727 id="TypographyDashes"
10728 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10729 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minuten&lt;/string>"
10730 errorLine2=" ~~~~~~~~~~~~~">
10731 <location
10732 file="res/values-fy-rNL/strings.xml"
10733 line="126"
10734 column="42"/>
10735 </issue>
10736
10737 <issue
10738 id="TypographyDashes"
10739 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10740 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutos&lt;/string>"
10741 errorLine2=" ~~~~~~~~~~~~~">
10742 <location
10743 file="res/values-gl/strings.xml"
10744 line="126"
10745 column="42"/>
10746 </issue>
10747
10748 <issue
10749 id="TypographyDashes"
10750 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10751 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 મિનિટ&lt;/string>"
10752 errorLine2=" ~~~~~~~~~~~">
10753 <location
10754 file="res/values-gu/strings.xml"
10755 line="126"
10756 column="42"/>
10757 </issue>
10758
10759 <issue
10760 id="TypographyDashes"
10761 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10762 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 मिनट&lt;/string>"
10763 errorLine2=" ~~~~~~~~~~">
10764 <location
10765 file="res/values-hi/strings.xml"
10766 line="126"
10767 column="42"/>
10768 </issue>
10769
10770 <issue
10771 id="TypographyDashes"
10772 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10773 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minuta&lt;/string>"
10774 errorLine2=" ~~~~~~~~~~~~">
10775 <location
10776 file="res/values-hr/strings.xml"
10777 line="126"
10778 column="42"/>
10779 </issue>
10780
10781 <issue
10782 id="TypographyDashes"
10783 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10784 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 perc&lt;/string>"
10785 errorLine2=" ~~~~~~~~~~">
10786 <location
10787 file="res/values-hu/strings.xml"
10788 line="126"
10789 column="42"/>
10790 </issue>
10791
10792 <issue
10793 id="TypographyDashes"
10794 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10795 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 menit&lt;/string>"
10796 errorLine2=" ~~~~~~~~~~~">
10797 <location
10798 file="res/values-in/strings.xml"
10799 line="126"
10800 column="42"/>
10801 </issue>
10802
10803 <issue
10804 id="TypographyDashes"
10805 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10806 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minuti&lt;/string>"
10807 errorLine2=" ~~~~~~~~~~~~">
10808 <location
10809 file="res/values-it/strings.xml"
10810 line="126"
10811 column="42"/>
10812 </issue>
10813
10814 <issue
10815 id="TypographyDashes"
10816 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10817 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 ನಿಮಿಷಗಳು&lt;/string>"
10818 errorLine2=" ~~~~~~~~~~~~~~~">
10819 <location
10820 file="res/values-kn/strings.xml"
10821 line="126"
10822 column="43"/>
10823 </issue>
10824
10825 <issue
10826 id="TypographyDashes"
10827 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10828 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3-4분&lt;/string>"
10829 errorLine2=" ~~~~">
10830 <location
10831 file="res/values-ko/strings.xml"
10832 line="126"
10833 column="42"/>
10834 </issue>
10835
10836 <issue
10837 id="TypographyDashes"
10838 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10839 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4-5 Minutten&lt;/string>"
10840 errorLine2=" ~~~~~~~~~~~~">
10841 <location
10842 file="res/values-lb/strings.xml"
10843 line="126"
10844 column="42"/>
10845 </issue>
10846
10847 <issue
10848 id="TypographyDashes"
10849 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10850 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 min.&lt;/string>"
10851 errorLine2=" ~~~~~~~~~~">
10852 <location
10853 file="res/values-lt/strings.xml"
10854 line="126"
10855 column="42"/>
10856 </issue>
10857
10858 <issue
10859 id="TypographyDashes"
10860 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10861 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 മിനിറ്റ്&lt;/string>"
10862 errorLine2=" ~~~~~~~~~~~~~~">
10863 <location
10864 file="res/values-ml/strings.xml"
10865 line="126"
10866 column="42"/>
10867 </issue>
10868
10869 <issue
10870 id="TypographyDashes"
10871 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10872 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 मिनिटे&lt;/string>"
10873 errorLine2=" ~~~~~~~~~~~~">
10874 <location
10875 file="res/values-mr/strings.xml"
10876 line="126"
10877 column="42"/>
10878 </issue>
10879
10880 <issue
10881 id="TypographyDashes"
10882 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10883 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutter&lt;/string>"
10884 errorLine2=" ~~~~~~~~~~~~~~">
10885 <location
10886 file="res/values-nb/strings.xml"
10887 line="126"
10888 column="42"/>
10889 </issue>
10890
10891 <issue
10892 id="TypographyDashes"
10893 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10894 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minuten&lt;/string>"
10895 errorLine2=" ~~~~~~~~~~~~~">
10896 <location
10897 file="res/values-nl/strings.xml"
10898 line="126"
10899 column="42"/>
10900 </issue>
10901
10902 <issue
10903 id="TypographyDashes"
10904 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10905 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 ମିନିଟ୍‍&lt;/string>"
10906 errorLine2=" ~~~~~~~~~~~~~">
10907 <location
10908 file="res/values-or/strings.xml"
10909 line="126"
10910 column="42"/>
10911 </issue>
10912
10913 <issue
10914 id="TypographyDashes"
10915 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10916 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minut&lt;/string>"
10917 errorLine2=" ~~~~~~~~~~~">
10918 <location
10919 file="res/values-pl/strings.xml"
10920 line="126"
10921 column="42"/>
10922 </issue>
10923
10924 <issue
10925 id="TypographyDashes"
10926 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10927 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutos&lt;/string>"
10928 errorLine2=" ~~~~~~~~~~~~~">
10929 <location
10930 file="res/values-pt-rPT/strings.xml"
10931 line="126"
10932 column="42"/>
10933 </issue>
10934
10935 <issue
10936 id="TypographyDashes"
10937 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10938 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minute&lt;/string>"
10939 errorLine2=" ~~~~~~~~~~~~">
10940 <location
10941 file="res/values-ro/strings.xml"
10942 line="126"
10943 column="42"/>
10944 </issue>
10945
10946 <issue
10947 id="TypographyDashes"
10948 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10949 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minúty&lt;/string>"
10950 errorLine2=" ~~~~~~~~~~~~">
10951 <location
10952 file="res/values-sk/strings.xml"
10953 line="126"
10954 column="42"/>
10955 </issue>
10956
10957 <issue
10958 id="TypographyDashes"
10959 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10960 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minute&lt;/string>"
10961 errorLine2=" ~~~~~~~~~~~~">
10962 <location
10963 file="res/values-sl/strings.xml"
10964 line="126"
10965 column="42"/>
10966 </issue>
10967
10968 <issue
10969 id="TypographyDashes"
10970 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10971 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 минута&lt;/string>"
10972 errorLine2=" ~~~~~~~~~~~~">
10973 <location
10974 file="res/values-sr/strings.xml"
10975 line="126"
10976 column="42"/>
10977 </issue>
10978
10979 <issue
10980 id="TypographyDashes"
10981 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10982 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minuter&lt;/string>"
10983 errorLine2=" ~~~~~~~~~~~~~">
10984 <location
10985 file="res/values-sv/strings.xml"
10986 line="126"
10987 column="42"/>
10988 </issue>
10989
10990 <issue
10991 id="TypographyDashes"
10992 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
10993 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 நிமிடங்கள்&lt;/string>"
10994 errorLine2=" ~~~~~~~~~~~~~~~~">
10995 <location
10996 file="res/values-ta/strings.xml"
10997 line="126"
10998 column="42"/>
10999 </issue>
11000
11001 <issue
11002 id="TypographyDashes"
11003 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11004 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 నిమిషాలు&lt;/string>"
11005 errorLine2=" ~~~~~~~~~~~~~~">
11006 <location
11007 file="res/values-te/strings.xml"
11008 line="126"
11009 column="42"/>
11010 </issue>
11011
11012 <issue
11013 id="TypographyDashes"
11014 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11015 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 นาที&lt;/string>"
11016 errorLine2=" ~~~~~~~~~~">
11017 <location
11018 file="res/values-th/strings.xml"
11019 line="126"
11020 column="42"/>
11021 </issue>
11022
11023 <issue
11024 id="TypographyDashes"
11025 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11026 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 dakika&lt;/string>"
11027 errorLine2=" ~~~~~~~~~~~~">
11028 <location
11029 file="res/values-tr/strings.xml"
11030 line="126"
11031 column="42"/>
11032 </issue>
11033
11034 <issue
11035 id="TypographyDashes"
11036 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11037 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4-5 مىنۇتقىچە&lt;/string>"
11038 errorLine2=" ~~~~~~~~~~~~~">
11039 <location
11040 file="res/values-ug/strings.xml"
11041 line="126"
11042 column="42"/>
11043 </issue>
11044
11045 <issue
11046 id="TypographyDashes"
11047 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11048 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 хвилин&lt;/string>"
11049 errorLine2=" ~~~~~~~~~~~~">
11050 <location
11051 file="res/values-uk/strings.xml"
11052 line="126"
11053 column="42"/>
11054 </issue>
11055
11056 <issue
11057 id="TypographyDashes"
11058 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11059 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 phút&lt;/string>"
11060 errorLine2=" ~~~~~~~~~~">
11061 <location
11062 file="res/values-vi/strings.xml"
11063 line="126"
11064 column="42"/>
11065 </issue>
11066
11067 <issue
11068 id="TypographyDashes"
11069 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11070 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3-4 分钟&lt;/string>"
11071 errorLine2=" ~~~~~~">
11072 <location
11073 file="res/values-zh-rCN/strings.xml"
11074 line="126"
11075 column="42"/>
11076 </issue>
11077
11078 <issue
11079 id="TypographyDashes"
11080 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11081 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 分鐘&lt;/string>"
11082 errorLine2=" ~~~~~~~~">
11083 <location
11084 file="res/values-zh-rTW/strings.xml"
11085 line="126"
11086 column="42"/>
11087 </issue>
11088
11089 <issue
11090 id="TypographyDashes"
11091 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11092 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minute&lt;/string>"
11093 errorLine2=" ~~~~~~~~~~~~~">
11094 <location
11095 file="res/values-af/strings.xml"
11096 line="127"
11097 column="43"/>
11098 </issue>
11099
11100 <issue
11101 id="TypographyDashes"
11102 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11103 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 دقائق&lt;/string>"
11104 errorLine2=" ~~~~~~~~~~~">
11105 <location
11106 file="res/values-ar/strings.xml"
11107 line="127"
11108 column="42"/>
11109 </issue>
11110
11111 <issue
11112 id="TypographyDashes"
11113 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11114 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 মিনিট&lt;/string>"
11115 errorLine2=" ~~~~~~~~~~~~">
11116 <location
11117 file="res/values-as/strings.xml"
11118 line="127"
11119 column="43"/>
11120 </issue>
11121
11122 <issue
11123 id="TypographyDashes"
11124 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11125 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutos&lt;/string>"
11126 errorLine2=" ~~~~~~~~~~~~~~">
11127 <location
11128 file="res/values-ast-rES/strings.xml"
11129 line="127"
11130 column="43"/>
11131 </issue>
11132
11133 <issue
11134 id="TypographyDashes"
11135 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11136 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 dəqiqə&lt;/string>"
11137 errorLine2=" ~~~~~~~~~~~~">
11138 <location
11139 file="res/values-az/strings.xml"
11140 line="127"
11141 column="42"/>
11142 </issue>
11143
11144 <issue
11145 id="TypographyDashes"
11146 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11147 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 хвілін&lt;/string>"
11148 errorLine2=" ~~~~~~~~~~~~~">
11149 <location
11150 file="res/values-be/strings.xml"
11151 line="127"
11152 column="43"/>
11153 </issue>
11154
11155 <issue
11156 id="TypographyDashes"
11157 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11158 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 минути&lt;/string>"
11159 errorLine2=" ~~~~~~~~~~~~">
11160 <location
11161 file="res/values-bg/strings.xml"
11162 line="127"
11163 column="42"/>
11164 </issue>
11165
11166 <issue
11167 id="TypographyDashes"
11168 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11169 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minuts&lt;/string>"
11170 errorLine2=" ~~~~~~~~~~~~">
11171 <location
11172 file="res/values-ca/strings.xml"
11173 line="127"
11174 column="42"/>
11175 </issue>
11176
11177 <issue
11178 id="TypographyDashes"
11179 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11180 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minut&lt;/string>"
11181 errorLine2=" ~~~~~~~~~~~">
11182 <location
11183 file="res/values-cs/strings.xml"
11184 line="127"
11185 column="42"/>
11186 </issue>
11187
11188 <issue
11189 id="TypographyDashes"
11190 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11191 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutter&lt;/string>"
11192 errorLine2=" ~~~~~~~~~~~~~~~">
11193 <location
11194 file="res/values-da/strings.xml"
11195 line="127"
11196 column="43"/>
11197 </issue>
11198
11199 <issue
11200 id="TypographyDashes"
11201 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11202 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 λεπτά&lt;/string>"
11203 errorLine2=" ~~~~~~~~~~~">
11204 <location
11205 file="res/values-el/strings.xml"
11206 line="127"
11207 column="42"/>
11208 </issue>
11209
11210 <issue
11211 id="TypographyDashes"
11212 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11213 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutes&lt;/string>"
11214 errorLine2=" ~~~~~~~~~~~~~">
11215 <location
11216 file="res/values-en-rAU/strings.xml"
11217 line="127"
11218 column="42"/>
11219 </issue>
11220
11221 <issue
11222 id="TypographyDashes"
11223 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11224 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutes&lt;/string>"
11225 errorLine2=" ~~~~~~~~~~~~~">
11226 <location
11227 file="res/values-en-rCA/strings.xml"
11228 line="127"
11229 column="42"/>
11230 </issue>
11231
11232 <issue
11233 id="TypographyDashes"
11234 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11235 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutes&lt;/string>"
11236 errorLine2=" ~~~~~~~~~~~~~">
11237 <location
11238 file="res/values-en-rGB/strings.xml"
11239 line="127"
11240 column="42"/>
11241 </issue>
11242
11243 <issue
11244 id="TypographyDashes"
11245 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11246 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutes&lt;/string>"
11247 errorLine2=" ~~~~~~~~~~~~~">
11248 <location
11249 file="res/values-en-rIN/strings.xml"
11250 line="127"
11251 column="42"/>
11252 </issue>
11253
11254 <issue
11255 id="TypographyDashes"
11256 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11257 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutos&lt;/string>"
11258 errorLine2=" ~~~~~~~~~~~~~~">
11259 <location
11260 file="res/values-es-rUS/strings.xml"
11261 line="127"
11262 column="43"/>
11263 </issue>
11264
11265 <issue
11266 id="TypographyDashes"
11267 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11268 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutos&lt;/string>"
11269 errorLine2=" ~~~~~~~~~~~~~~">
11270 <location
11271 file="res/values-es/strings.xml"
11272 line="127"
11273 column="43"/>
11274 </issue>
11275
11276 <issue
11277 id="TypographyDashes"
11278 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11279 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutit&lt;/string>"
11280 errorLine2=" ~~~~~~~~~~~~~">
11281 <location
11282 file="res/values-et/strings.xml"
11283 line="127"
11284 column="42"/>
11285 </issue>
11286
11287 <issue
11288 id="TypographyDashes"
11289 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11290 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutu&lt;/string>"
11291 errorLine2=" ~~~~~~~~~~~~~">
11292 <location
11293 file="res/values-eu/strings.xml"
11294 line="127"
11295 column="43"/>
11296 </issue>
11297
11298 <issue
11299 id="TypographyDashes"
11300 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11301 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minuuttia&lt;/string>"
11302 errorLine2=" ~~~~~~~~~~~~~~~">
11303 <location
11304 file="res/values-fi/strings.xml"
11305 line="127"
11306 column="42"/>
11307 </issue>
11308
11309 <issue
11310 id="TypographyDashes"
11311 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11312 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minuten&lt;/string>"
11313 errorLine2=" ~~~~~~~~~~~~~">
11314 <location
11315 file="res/values-fy-rNL/strings.xml"
11316 line="127"
11317 column="42"/>
11318 </issue>
11319
11320 <issue
11321 id="TypographyDashes"
11322 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11323 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutos&lt;/string>"
11324 errorLine2=" ~~~~~~~~~~~~~">
11325 <location
11326 file="res/values-gl/strings.xml"
11327 line="127"
11328 column="42"/>
11329 </issue>
11330
11331 <issue
11332 id="TypographyDashes"
11333 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11334 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 મિનિટ&lt;/string>"
11335 errorLine2=" ~~~~~~~~~~~~">
11336 <location
11337 file="res/values-gu/strings.xml"
11338 line="127"
11339 column="43"/>
11340 </issue>
11341
11342 <issue
11343 id="TypographyDashes"
11344 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11345 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 मिनट&lt;/string>"
11346 errorLine2=" ~~~~~~~~~~~">
11347 <location
11348 file="res/values-hi/strings.xml"
11349 line="127"
11350 column="43"/>
11351 </issue>
11352
11353 <issue
11354 id="TypographyDashes"
11355 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11356 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minuta&lt;/string>"
11357 errorLine2=" ~~~~~~~~~~~~~">
11358 <location
11359 file="res/values-hr/strings.xml"
11360 line="127"
11361 column="43"/>
11362 </issue>
11363
11364 <issue
11365 id="TypographyDashes"
11366 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11367 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 perc&lt;/string>"
11368 errorLine2=" ~~~~~~~~~~">
11369 <location
11370 file="res/values-hu/strings.xml"
11371 line="127"
11372 column="42"/>
11373 </issue>
11374
11375 <issue
11376 id="TypographyDashes"
11377 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11378 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 menit&lt;/string>"
11379 errorLine2=" ~~~~~~~~~~~~">
11380 <location
11381 file="res/values-in/strings.xml"
11382 line="127"
11383 column="43"/>
11384 </issue>
11385
11386 <issue
11387 id="TypographyDashes"
11388 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11389 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minuti&lt;/string>"
11390 errorLine2=" ~~~~~~~~~~~~">
11391 <location
11392 file="res/values-it/strings.xml"
11393 line="127"
11394 column="42"/>
11395 </issue>
11396
11397 <issue
11398 id="TypographyDashes"
11399 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11400 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 ನಿಮಿಷಗಳು&lt;/string>"
11401 errorLine2=" ~~~~~~~~~~~~~~~~">
11402 <location
11403 file="res/values-kn/strings.xml"
11404 line="127"
11405 column="44"/>
11406 </issue>
11407
11408 <issue
11409 id="TypographyDashes"
11410 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11411 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4-5분&lt;/string>"
11412 errorLine2=" ~~~~">
11413 <location
11414 file="res/values-ko/strings.xml"
11415 line="127"
11416 column="42"/>
11417 </issue>
11418
11419 <issue
11420 id="TypographyDashes"
11421 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11422 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5-10 Minutten&lt;/string>"
11423 errorLine2=" ~~~~~~~~~~~~~">
11424 <location
11425 file="res/values-lb/strings.xml"
11426 line="127"
11427 column="43"/>
11428 </issue>
11429
11430 <issue
11431 id="TypographyDashes"
11432 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11433 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 min.&lt;/string>"
11434 errorLine2=" ~~~~~~~~~~~">
11435 <location
11436 file="res/values-lt/strings.xml"
11437 line="127"
11438 column="43"/>
11439 </issue>
11440
11441 <issue
11442 id="TypographyDashes"
11443 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11444 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 മിനിറ്റ്&lt;/string>"
11445 errorLine2=" ~~~~~~~~~~~~~~~">
11446 <location
11447 file="res/values-ml/strings.xml"
11448 line="127"
11449 column="43"/>
11450 </issue>
11451
11452 <issue
11453 id="TypographyDashes"
11454 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11455 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 मिनिटे&lt;/string>"
11456 errorLine2=" ~~~~~~~~~~~~~">
11457 <location
11458 file="res/values-mr/strings.xml"
11459 line="127"
11460 column="43"/>
11461 </issue>
11462
11463 <issue
11464 id="TypographyDashes"
11465 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11466 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutter&lt;/string>"
11467 errorLine2=" ~~~~~~~~~~~~~~~">
11468 <location
11469 file="res/values-nb/strings.xml"
11470 line="127"
11471 column="43"/>
11472 </issue>
11473
11474 <issue
11475 id="TypographyDashes"
11476 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11477 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minuten&lt;/string>"
11478 errorLine2=" ~~~~~~~~~~~~~~">
11479 <location
11480 file="res/values-nl/strings.xml"
11481 line="127"
11482 column="43"/>
11483 </issue>
11484
11485 <issue
11486 id="TypographyDashes"
11487 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11488 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 ମିନିଟ୍‍&lt;/string>"
11489 errorLine2=" ~~~~~~~~~~~~~~">
11490 <location
11491 file="res/values-or/strings.xml"
11492 line="127"
11493 column="43"/>
11494 </issue>
11495
11496 <issue
11497 id="TypographyDashes"
11498 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11499 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minut&lt;/string>"
11500 errorLine2=" ~~~~~~~~~~~~">
11501 <location
11502 file="res/values-pl/strings.xml"
11503 line="127"
11504 column="43"/>
11505 </issue>
11506
11507 <issue
11508 id="TypographyDashes"
11509 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11510 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutos&lt;/string>"
11511 errorLine2=" ~~~~~~~~~~~~~">
11512 <location
11513 file="res/values-pt-rPT/strings.xml"
11514 line="127"
11515 column="42"/>
11516 </issue>
11517
11518 <issue
11519 id="TypographyDashes"
11520 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11521 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minute&lt;/string>"
11522 errorLine2=" ~~~~~~~~~~~~">
11523 <location
11524 file="res/values-ro/strings.xml"
11525 line="127"
11526 column="42"/>
11527 </issue>
11528
11529 <issue
11530 id="TypographyDashes"
11531 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11532 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minút&lt;/string>"
11533 errorLine2=" ~~~~~~~~~~~">
11534 <location
11535 file="res/values-sk/strings.xml"
11536 line="127"
11537 column="42"/>
11538 </issue>
11539
11540 <issue
11541 id="TypographyDashes"
11542 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11543 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minut&lt;/string>"
11544 errorLine2=" ~~~~~~~~~~~">
11545 <location
11546 file="res/values-sl/strings.xml"
11547 line="127"
11548 column="42"/>
11549 </issue>
11550
11551 <issue
11552 id="TypographyDashes"
11553 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11554 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 минута&lt;/string>"
11555 errorLine2=" ~~~~~~~~~~~~~">
11556 <location
11557 file="res/values-sr/strings.xml"
11558 line="127"
11559 column="43"/>
11560 </issue>
11561
11562 <issue
11563 id="TypographyDashes"
11564 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11565 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minuter&lt;/string>"
11566 errorLine2=" ~~~~~~~~~~~~~~">
11567 <location
11568 file="res/values-sv/strings.xml"
11569 line="127"
11570 column="43"/>
11571 </issue>
11572
11573 <issue
11574 id="TypographyDashes"
11575 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11576 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 நிமிடங்கள்&lt;/string>"
11577 errorLine2=" ~~~~~~~~~~~~~~~~~">
11578 <location
11579 file="res/values-ta/strings.xml"
11580 line="127"
11581 column="43"/>
11582 </issue>
11583
11584 <issue
11585 id="TypographyDashes"
11586 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11587 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 నిమిషాలు&lt;/string>"
11588 errorLine2=" ~~~~~~~~~~~~~~~">
11589 <location
11590 file="res/values-te/strings.xml"
11591 line="127"
11592 column="43"/>
11593 </issue>
11594
11595 <issue
11596 id="TypographyDashes"
11597 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11598 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 นาที&lt;/string>"
11599 errorLine2=" ~~~~~~~~~~">
11600 <location
11601 file="res/values-th/strings.xml"
11602 line="127"
11603 column="42"/>
11604 </issue>
11605
11606 <issue
11607 id="TypographyDashes"
11608 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11609 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 dakika&lt;/string>"
11610 errorLine2=" ~~~~~~~~~~~~">
11611 <location
11612 file="res/values-tr/strings.xml"
11613 line="127"
11614 column="42"/>
11615 </issue>
11616
11617 <issue
11618 id="TypographyDashes"
11619 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11620 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5-10 مىنۇتقىچە&lt;/string>"
11621 errorLine2=" ~~~~~~~~~~~~~~">
11622 <location
11623 file="res/values-ug/strings.xml"
11624 line="127"
11625 column="43"/>
11626 </issue>
11627
11628 <issue
11629 id="TypographyDashes"
11630 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11631 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 хвилин&lt;/string>"
11632 errorLine2=" ~~~~~~~~~~~~~">
11633 <location
11634 file="res/values-uk/strings.xml"
11635 line="127"
11636 column="43"/>
11637 </issue>
11638
11639 <issue
11640 id="TypographyDashes"
11641 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11642 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 phút&lt;/string>"
11643 errorLine2=" ~~~~~~~~~~~">
11644 <location
11645 file="res/values-vi/strings.xml"
11646 line="127"
11647 column="43"/>
11648 </issue>
11649
11650 <issue
11651 id="TypographyDashes"
11652 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11653 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4-5 分钟&lt;/string>"
11654 errorLine2=" ~~~~~~">
11655 <location
11656 file="res/values-zh-rCN/strings.xml"
11657 line="127"
11658 column="42"/>
11659 </issue>
11660
11661 <issue
11662 id="TypographyDashes"
11663 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11664 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 分鐘&lt;/string>"
11665 errorLine2=" ~~~~~~~~">
11666 <location
11667 file="res/values-zh-rTW/strings.xml"
11668 line="127"
11669 column="42"/>
11670 </issue>
11671
11672 <issue
11673 id="TypographyDashes"
11674 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11675 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minute&lt;/string>"
11676 errorLine2=" ~~~~~~~~~~~~~~">
11677 <location
11678 file="res/values-af/strings.xml"
11679 line="128"
11680 column="44"/>
11681 </issue>
11682
11683 <issue
11684 id="TypographyDashes"
11685 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11686 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 دقائق&lt;/string>"
11687 errorLine2=" ~~~~~~~~~~~~">
11688 <location
11689 file="res/values-ar/strings.xml"
11690 line="128"
11691 column="43"/>
11692 </issue>
11693
11694 <issue
11695 id="TypographyDashes"
11696 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11697 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 মিনিট&lt;/string>"
11698 errorLine2=" ~~~~~~~~~~~~~">
11699 <location
11700 file="res/values-as/strings.xml"
11701 line="128"
11702 column="44"/>
11703 </issue>
11704
11705 <issue
11706 id="TypographyDashes"
11707 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11708 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutos&lt;/string>"
11709 errorLine2=" ~~~~~~~~~~~~~~~">
11710 <location
11711 file="res/values-ast-rES/strings.xml"
11712 line="128"
11713 column="44"/>
11714 </issue>
11715
11716 <issue
11717 id="TypographyDashes"
11718 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11719 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 dəqiqə&lt;/string>"
11720 errorLine2=" ~~~~~~~~~~~~~">
11721 <location
11722 file="res/values-az/strings.xml"
11723 line="128"
11724 column="43"/>
11725 </issue>
11726
11727 <issue
11728 id="TypographyDashes"
11729 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11730 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 хвілін&lt;/string>"
11731 errorLine2=" ~~~~~~~~~~~~~~">
11732 <location
11733 file="res/values-be/strings.xml"
11734 line="128"
11735 column="44"/>
11736 </issue>
11737
11738 <issue
11739 id="TypographyDashes"
11740 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11741 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 минути&lt;/string>"
11742 errorLine2=" ~~~~~~~~~~~~~">
11743 <location
11744 file="res/values-bg/strings.xml"
11745 line="128"
11746 column="43"/>
11747 </issue>
11748
11749 <issue
11750 id="TypographyDashes"
11751 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11752 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minuts&lt;/string>"
11753 errorLine2=" ~~~~~~~~~~~~~">
11754 <location
11755 file="res/values-ca/strings.xml"
11756 line="128"
11757 column="43"/>
11758 </issue>
11759
11760 <issue
11761 id="TypographyDashes"
11762 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11763 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minut&lt;/string>"
11764 errorLine2=" ~~~~~~~~~~~~">
11765 <location
11766 file="res/values-cs/strings.xml"
11767 line="128"
11768 column="43"/>
11769 </issue>
11770
11771 <issue
11772 id="TypographyDashes"
11773 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11774 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutter&lt;/string>"
11775 errorLine2=" ~~~~~~~~~~~~~~~~">
11776 <location
11777 file="res/values-da/strings.xml"
11778 line="128"
11779 column="44"/>
11780 </issue>
11781
11782 <issue
11783 id="TypographyDashes"
11784 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11785 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 λεπτά&lt;/string>"
11786 errorLine2=" ~~~~~~~~~~~~">
11787 <location
11788 file="res/values-el/strings.xml"
11789 line="128"
11790 column="43"/>
11791 </issue>
11792
11793 <issue
11794 id="TypographyDashes"
11795 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11796 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutes&lt;/string>"
11797 errorLine2=" ~~~~~~~~~~~~~~">
11798 <location
11799 file="res/values-en-rAU/strings.xml"
11800 line="128"
11801 column="43"/>
11802 </issue>
11803
11804 <issue
11805 id="TypographyDashes"
11806 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11807 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutes&lt;/string>"
11808 errorLine2=" ~~~~~~~~~~~~~~">
11809 <location
11810 file="res/values-en-rCA/strings.xml"
11811 line="128"
11812 column="43"/>
11813 </issue>
11814
11815 <issue
11816 id="TypographyDashes"
11817 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11818 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutes&lt;/string>"
11819 errorLine2=" ~~~~~~~~~~~~~~">
11820 <location
11821 file="res/values-en-rGB/strings.xml"
11822 line="128"
11823 column="43"/>
11824 </issue>
11825
11826 <issue
11827 id="TypographyDashes"
11828 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11829 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutes&lt;/string>"
11830 errorLine2=" ~~~~~~~~~~~~~~">
11831 <location
11832 file="res/values-en-rIN/strings.xml"
11833 line="128"
11834 column="43"/>
11835 </issue>
11836
11837 <issue
11838 id="TypographyDashes"
11839 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11840 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutos&lt;/string>"
11841 errorLine2=" ~~~~~~~~~~~~~~~">
11842 <location
11843 file="res/values-es-rUS/strings.xml"
11844 line="128"
11845 column="44"/>
11846 </issue>
11847
11848 <issue
11849 id="TypographyDashes"
11850 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11851 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutos&lt;/string>"
11852 errorLine2=" ~~~~~~~~~~~~~~~">
11853 <location
11854 file="res/values-es/strings.xml"
11855 line="128"
11856 column="44"/>
11857 </issue>
11858
11859 <issue
11860 id="TypographyDashes"
11861 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11862 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutit&lt;/string>"
11863 errorLine2=" ~~~~~~~~~~~~~~">
11864 <location
11865 file="res/values-et/strings.xml"
11866 line="128"
11867 column="43"/>
11868 </issue>
11869
11870 <issue
11871 id="TypographyDashes"
11872 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11873 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutu&lt;/string>"
11874 errorLine2=" ~~~~~~~~~~~~~~">
11875 <location
11876 file="res/values-eu/strings.xml"
11877 line="128"
11878 column="44"/>
11879 </issue>
11880
11881 <issue
11882 id="TypographyDashes"
11883 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11884 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minuuttia&lt;/string>"
11885 errorLine2=" ~~~~~~~~~~~~~~~~">
11886 <location
11887 file="res/values-fi/strings.xml"
11888 line="128"
11889 column="43"/>
11890 </issue>
11891
11892 <issue
11893 id="TypographyDashes"
11894 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11895 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minuten&lt;/string>"
11896 errorLine2=" ~~~~~~~~~~~~~~">
11897 <location
11898 file="res/values-fy-rNL/strings.xml"
11899 line="128"
11900 column="43"/>
11901 </issue>
11902
11903 <issue
11904 id="TypographyDashes"
11905 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11906 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutos&lt;/string>"
11907 errorLine2=" ~~~~~~~~~~~~~~">
11908 <location
11909 file="res/values-gl/strings.xml"
11910 line="128"
11911 column="43"/>
11912 </issue>
11913
11914 <issue
11915 id="TypographyDashes"
11916 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11917 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 મિનિટ&lt;/string>"
11918 errorLine2=" ~~~~~~~~~~~~~">
11919 <location
11920 file="res/values-gu/strings.xml"
11921 line="128"
11922 column="44"/>
11923 </issue>
11924
11925 <issue
11926 id="TypographyDashes"
11927 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11928 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 मिनट&lt;/string>"
11929 errorLine2=" ~~~~~~~~~~~~">
11930 <location
11931 file="res/values-hi/strings.xml"
11932 line="128"
11933 column="44"/>
11934 </issue>
11935
11936 <issue
11937 id="TypographyDashes"
11938 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11939 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minuta&lt;/string>"
11940 errorLine2=" ~~~~~~~~~~~~~~">
11941 <location
11942 file="res/values-hr/strings.xml"
11943 line="128"
11944 column="44"/>
11945 </issue>
11946
11947 <issue
11948 id="TypographyDashes"
11949 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11950 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 perc&lt;/string>"
11951 errorLine2=" ~~~~~~~~~~~">
11952 <location
11953 file="res/values-hu/strings.xml"
11954 line="128"
11955 column="43"/>
11956 </issue>
11957
11958 <issue
11959 id="TypographyDashes"
11960 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11961 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 menit&lt;/string>"
11962 errorLine2=" ~~~~~~~~~~~~~">
11963 <location
11964 file="res/values-in/strings.xml"
11965 line="128"
11966 column="44"/>
11967 </issue>
11968
11969 <issue
11970 id="TypographyDashes"
11971 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11972 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minuti&lt;/string>"
11973 errorLine2=" ~~~~~~~~~~~~~">
11974 <location
11975 file="res/values-it/strings.xml"
11976 line="128"
11977 column="43"/>
11978 </issue>
11979
11980 <issue
11981 id="TypographyDashes"
11982 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11983 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 ನಿಮಿಷಗಳು&lt;/string>"
11984 errorLine2=" ~~~~~~~~~~~~~~~~">
11985 <location
11986 file="res/values-kn/strings.xml"
11987 line="128"
11988 column="44"/>
11989 </issue>
11990
11991 <issue
11992 id="TypographyDashes"
11993 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
11994 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5-10분&lt;/string>"
11995 errorLine2=" ~~~~~">
11996 <location
11997 file="res/values-ko/strings.xml"
11998 line="128"
11999 column="43"/>
12000 </issue>
12001
12002 <issue
12003 id="TypographyDashes"
12004 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12005 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10-30 Minutten&lt;/string>"
12006 errorLine2=" ~~~~~~~~~~~~~~">
12007 <location
12008 file="res/values-lb/strings.xml"
12009 line="128"
12010 column="44"/>
12011 </issue>
12012
12013 <issue
12014 id="TypographyDashes"
12015 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12016 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 min.&lt;/string>"
12017 errorLine2=" ~~~~~~~~~~~~">
12018 <location
12019 file="res/values-lt/strings.xml"
12020 line="128"
12021 column="44"/>
12022 </issue>
12023
12024 <issue
12025 id="TypographyDashes"
12026 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12027 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 dziesmas&lt;/string>"
12028 errorLine2=" ~~~~~~~~~~~~~~">
12029 <location
12030 file="res/values-lv/strings.xml"
12031 line="128"
12032 column="40"/>
12033 </issue>
12034
12035 <issue
12036 id="TypographyDashes"
12037 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12038 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 മിനിറ്റ്&lt;/string>"
12039 errorLine2=" ~~~~~~~~~~~~~~~~">
12040 <location
12041 file="res/values-ml/strings.xml"
12042 line="128"
12043 column="44"/>
12044 </issue>
12045
12046 <issue
12047 id="TypographyDashes"
12048 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12049 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 मिनिटे&lt;/string>"
12050 errorLine2=" ~~~~~~~~~~~~~~">
12051 <location
12052 file="res/values-mr/strings.xml"
12053 line="128"
12054 column="44"/>
12055 </issue>
12056
12057 <issue
12058 id="TypographyDashes"
12059 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12060 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutter&lt;/string>"
12061 errorLine2=" ~~~~~~~~~~~~~~~~">
12062 <location
12063 file="res/values-nb/strings.xml"
12064 line="128"
12065 column="44"/>
12066 </issue>
12067
12068 <issue
12069 id="TypographyDashes"
12070 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12071 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minuten&lt;/string>"
12072 errorLine2=" ~~~~~~~~~~~~~~~">
12073 <location
12074 file="res/values-nl/strings.xml"
12075 line="128"
12076 column="44"/>
12077 </issue>
12078
12079 <issue
12080 id="TypographyDashes"
12081 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12082 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 ମିନିଟ୍‍&lt;/string>"
12083 errorLine2=" ~~~~~~~~~~~~~~~">
12084 <location
12085 file="res/values-or/strings.xml"
12086 line="128"
12087 column="44"/>
12088 </issue>
12089
12090 <issue
12091 id="TypographyDashes"
12092 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12093 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minut&lt;/string>"
12094 errorLine2=" ~~~~~~~~~~~~~">
12095 <location
12096 file="res/values-pl/strings.xml"
12097 line="128"
12098 column="44"/>
12099 </issue>
12100
12101 <issue
12102 id="TypographyDashes"
12103 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12104 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutos&lt;/string>"
12105 errorLine2=" ~~~~~~~~~~~~~~">
12106 <location
12107 file="res/values-pt-rPT/strings.xml"
12108 line="128"
12109 column="43"/>
12110 </issue>
12111
12112 <issue
12113 id="TypographyDashes"
12114 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12115 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minute&lt;/string>"
12116 errorLine2=" ~~~~~~~~~~~~~">
12117 <location
12118 file="res/values-ro/strings.xml"
12119 line="128"
12120 column="43"/>
12121 </issue>
12122
12123 <issue
12124 id="TypographyDashes"
12125 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12126 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minút&lt;/string>"
12127 errorLine2=" ~~~~~~~~~~~~">
12128 <location
12129 file="res/values-sk/strings.xml"
12130 line="128"
12131 column="43"/>
12132 </issue>
12133
12134 <issue
12135 id="TypographyDashes"
12136 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12137 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minut&lt;/string>"
12138 errorLine2=" ~~~~~~~~~~~~">
12139 <location
12140 file="res/values-sl/strings.xml"
12141 line="128"
12142 column="43"/>
12143 </issue>
12144
12145 <issue
12146 id="TypographyDashes"
12147 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12148 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 минута&lt;/string>"
12149 errorLine2=" ~~~~~~~~~~~~~~">
12150 <location
12151 file="res/values-sr/strings.xml"
12152 line="128"
12153 column="44"/>
12154 </issue>
12155
12156 <issue
12157 id="TypographyDashes"
12158 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12159 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minuter&lt;/string>"
12160 errorLine2=" ~~~~~~~~~~~~~~~">
12161 <location
12162 file="res/values-sv/strings.xml"
12163 line="128"
12164 column="44"/>
12165 </issue>
12166
12167 <issue
12168 id="TypographyDashes"
12169 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12170 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 நிமிடங்கள்&lt;/string>"
12171 errorLine2=" ~~~~~~~~~~~~~~~~~~">
12172 <location
12173 file="res/values-ta/strings.xml"
12174 line="128"
12175 column="44"/>
12176 </issue>
12177
12178 <issue
12179 id="TypographyDashes"
12180 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12181 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 నిమిషాలు&lt;/string>"
12182 errorLine2=" ~~~~~~~~~~~~~~~~">
12183 <location
12184 file="res/values-te/strings.xml"
12185 line="128"
12186 column="44"/>
12187 </issue>
12188
12189 <issue
12190 id="TypographyDashes"
12191 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12192 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 นาที&lt;/string>"
12193 errorLine2=" ~~~~~~~~~~~">
12194 <location
12195 file="res/values-th/strings.xml"
12196 line="128"
12197 column="43"/>
12198 </issue>
12199
12200 <issue
12201 id="TypographyDashes"
12202 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12203 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 dakika&lt;/string>"
12204 errorLine2=" ~~~~~~~~~~~~~">
12205 <location
12206 file="res/values-tr/strings.xml"
12207 line="128"
12208 column="43"/>
12209 </issue>
12210
12211 <issue
12212 id="TypographyDashes"
12213 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12214 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10-30 مىنۇتقىچە&lt;/string>"
12215 errorLine2=" ~~~~~~~~~~~~~~~">
12216 <location
12217 file="res/values-ug/strings.xml"
12218 line="128"
12219 column="44"/>
12220 </issue>
12221
12222 <issue
12223 id="TypographyDashes"
12224 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12225 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 хвилин&lt;/string>"
12226 errorLine2=" ~~~~~~~~~~~~~~">
12227 <location
12228 file="res/values-uk/strings.xml"
12229 line="128"
12230 column="44"/>
12231 </issue>
12232
12233 <issue
12234 id="TypographyDashes"
12235 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12236 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 phút&lt;/string>"
12237 errorLine2=" ~~~~~~~~~~~~">
12238 <location
12239 file="res/values-vi/strings.xml"
12240 line="128"
12241 column="44"/>
12242 </issue>
12243
12244 <issue
12245 id="TypographyDashes"
12246 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12247 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5-10 分钟&lt;/string>"
12248 errorLine2=" ~~~~~~~">
12249 <location
12250 file="res/values-zh-rCN/strings.xml"
12251 line="128"
12252 column="43"/>
12253 </issue>
12254
12255 <issue
12256 id="TypographyDashes"
12257 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12258 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 分鐘&lt;/string>"
12259 errorLine2=" ~~~~~~~~~">
12260 <location
12261 file="res/values-zh-rTW/strings.xml"
12262 line="128"
12263 column="43"/>
12264 </issue>
12265
12266 <issue
12267 id="TypographyDashes"
12268 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12269 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minute&lt;/string>"
12270 errorLine2=" ~~~~~~~~~~~~~~">
12271 <location
12272 file="res/values-af/strings.xml"
12273 line="129"
12274 column="44"/>
12275 </issue>
12276
12277 <issue
12278 id="TypographyDashes"
12279 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12280 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 دقيقة&lt;/string>"
12281 errorLine2=" ~~~~~~~~~~~~~">
12282 <location
12283 file="res/values-ar/strings.xml"
12284 line="129"
12285 column="44"/>
12286 </issue>
12287
12288 <issue
12289 id="TypographyDashes"
12290 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12291 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 মিনিট&lt;/string>"
12292 errorLine2=" ~~~~~~~~~~~~~">
12293 <location
12294 file="res/values-as/strings.xml"
12295 line="129"
12296 column="44"/>
12297 </issue>
12298
12299 <issue
12300 id="TypographyDashes"
12301 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12302 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutos&lt;/string>"
12303 errorLine2=" ~~~~~~~~~~~~~~~">
12304 <location
12305 file="res/values-ast-rES/strings.xml"
12306 line="129"
12307 column="44"/>
12308 </issue>
12309
12310 <issue
12311 id="TypographyDashes"
12312 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12313 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 dəqiqə&lt;/string>"
12314 errorLine2=" ~~~~~~~~~~~~~~">
12315 <location
12316 file="res/values-az/strings.xml"
12317 line="129"
12318 column="44"/>
12319 </issue>
12320
12321 <issue
12322 id="TypographyDashes"
12323 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12324 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 хвілін&lt;/string>"
12325 errorLine2=" ~~~~~~~~~~~~~~">
12326 <location
12327 file="res/values-be/strings.xml"
12328 line="129"
12329 column="44"/>
12330 </issue>
12331
12332 <issue
12333 id="TypographyDashes"
12334 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12335 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 минути&lt;/string>"
12336 errorLine2=" ~~~~~~~~~~~~~~">
12337 <location
12338 file="res/values-bg/strings.xml"
12339 line="129"
12340 column="44"/>
12341 </issue>
12342
12343 <issue
12344 id="TypographyDashes"
12345 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12346 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minuts&lt;/string>"
12347 errorLine2=" ~~~~~~~~~~~~~~">
12348 <location
12349 file="res/values-ca/strings.xml"
12350 line="129"
12351 column="44"/>
12352 </issue>
12353
12354 <issue
12355 id="TypographyDashes"
12356 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12357 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minut&lt;/string>"
12358 errorLine2=" ~~~~~~~~~~~~~">
12359 <location
12360 file="res/values-cs/strings.xml"
12361 line="129"
12362 column="44"/>
12363 </issue>
12364
12365 <issue
12366 id="TypographyDashes"
12367 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12368 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 munud&lt;/string>"
12369 errorLine2=" ~~~~~~~~~~~~~">
12370 <location
12371 file="res/values-cy/strings.xml"
12372 line="129"
12373 column="44"/>
12374 </issue>
12375
12376 <issue
12377 id="TypographyDashes"
12378 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12379 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutter&lt;/string>"
12380 errorLine2=" ~~~~~~~~~~~~~~~~">
12381 <location
12382 file="res/values-da/strings.xml"
12383 line="129"
12384 column="44"/>
12385 </issue>
12386
12387 <issue
12388 id="TypographyDashes"
12389 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12390 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 λεπτά&lt;/string>"
12391 errorLine2=" ~~~~~~~~~~~~~">
12392 <location
12393 file="res/values-el/strings.xml"
12394 line="129"
12395 column="44"/>
12396 </issue>
12397
12398 <issue
12399 id="TypographyDashes"
12400 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12401 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutes&lt;/string>"
12402 errorLine2=" ~~~~~~~~~~~~~~~">
12403 <location
12404 file="res/values-en-rAU/strings.xml"
12405 line="129"
12406 column="44"/>
12407 </issue>
12408
12409 <issue
12410 id="TypographyDashes"
12411 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12412 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutes&lt;/string>"
12413 errorLine2=" ~~~~~~~~~~~~~~~">
12414 <location
12415 file="res/values-en-rCA/strings.xml"
12416 line="129"
12417 column="44"/>
12418 </issue>
12419
12420 <issue
12421 id="TypographyDashes"
12422 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12423 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutes&lt;/string>"
12424 errorLine2=" ~~~~~~~~~~~~~~~">
12425 <location
12426 file="res/values-en-rGB/strings.xml"
12427 line="129"
12428 column="44"/>
12429 </issue>
12430
12431 <issue
12432 id="TypographyDashes"
12433 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12434 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutes&lt;/string>"
12435 errorLine2=" ~~~~~~~~~~~~~~~">
12436 <location
12437 file="res/values-en-rIN/strings.xml"
12438 line="129"
12439 column="44"/>
12440 </issue>
12441
12442 <issue
12443 id="TypographyDashes"
12444 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12445 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutos&lt;/string>"
12446 errorLine2=" ~~~~~~~~~~~~~~~">
12447 <location
12448 file="res/values-es-rUS/strings.xml"
12449 line="129"
12450 column="44"/>
12451 </issue>
12452
12453 <issue
12454 id="TypographyDashes"
12455 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12456 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutos&lt;/string>"
12457 errorLine2=" ~~~~~~~~~~~~~~~">
12458 <location
12459 file="res/values-es/strings.xml"
12460 line="129"
12461 column="44"/>
12462 </issue>
12463
12464 <issue
12465 id="TypographyDashes"
12466 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12467 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutit&lt;/string>"
12468 errorLine2=" ~~~~~~~~~~~~~~~">
12469 <location
12470 file="res/values-et/strings.xml"
12471 line="129"
12472 column="44"/>
12473 </issue>
12474
12475 <issue
12476 id="TypographyDashes"
12477 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12478 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutu&lt;/string>"
12479 errorLine2=" ~~~~~~~~~~~~~~">
12480 <location
12481 file="res/values-eu/strings.xml"
12482 line="129"
12483 column="44"/>
12484 </issue>
12485
12486 <issue
12487 id="TypographyDashes"
12488 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12489 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minuuttia&lt;/string>"
12490 errorLine2=" ~~~~~~~~~~~~~~~~~">
12491 <location
12492 file="res/values-fi/strings.xml"
12493 line="129"
12494 column="44"/>
12495 </issue>
12496
12497 <issue
12498 id="TypographyDashes"
12499 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12500 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minuten&lt;/string>"
12501 errorLine2=" ~~~~~~~~~~~~~~~">
12502 <location
12503 file="res/values-fy-rNL/strings.xml"
12504 line="129"
12505 column="44"/>
12506 </issue>
12507
12508 <issue
12509 id="TypographyDashes"
12510 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12511 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutos&lt;/string>"
12512 errorLine2=" ~~~~~~~~~~~~~~~">
12513 <location
12514 file="res/values-gl/strings.xml"
12515 line="129"
12516 column="44"/>
12517 </issue>
12518
12519 <issue
12520 id="TypographyDashes"
12521 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12522 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 મિનિટ&lt;/string>"
12523 errorLine2=" ~~~~~~~~~~~~~">
12524 <location
12525 file="res/values-gu/strings.xml"
12526 line="129"
12527 column="44"/>
12528 </issue>
12529
12530 <issue
12531 id="TypographyDashes"
12532 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12533 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 मिनट&lt;/string>"
12534 errorLine2=" ~~~~~~~~~~~~">
12535 <location
12536 file="res/values-hi/strings.xml"
12537 line="129"
12538 column="44"/>
12539 </issue>
12540
12541 <issue
12542 id="TypographyDashes"
12543 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12544 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minuta&lt;/string>"
12545 errorLine2=" ~~~~~~~~~~~~~~">
12546 <location
12547 file="res/values-hr/strings.xml"
12548 line="129"
12549 column="44"/>
12550 </issue>
12551
12552 <issue
12553 id="TypographyDashes"
12554 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12555 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 perc&lt;/string>"
12556 errorLine2=" ~~~~~~~~~~~~">
12557 <location
12558 file="res/values-hu/strings.xml"
12559 line="129"
12560 column="44"/>
12561 </issue>
12562
12563 <issue
12564 id="TypographyDashes"
12565 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12566 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 menit&lt;/string>"
12567 errorLine2=" ~~~~~~~~~~~~~">
12568 <location
12569 file="res/values-in/strings.xml"
12570 line="129"
12571 column="44"/>
12572 </issue>
12573
12574 <issue
12575 id="TypographyDashes"
12576 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12577 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minuti&lt;/string>"
12578 errorLine2=" ~~~~~~~~~~~~~~">
12579 <location
12580 file="res/values-it/strings.xml"
12581 line="129"
12582 column="44"/>
12583 </issue>
12584
12585 <issue
12586 id="TypographyDashes"
12587 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12588 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10-30분&lt;/string>"
12589 errorLine2=" ~~~~~~">
12590 <location
12591 file="res/values-ko/strings.xml"
12592 line="129"
12593 column="44"/>
12594 </issue>
12595
12596 <issue
12597 id="TypographyDashes"
12598 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12599 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30-60 Minutten&lt;/string>"
12600 errorLine2=" ~~~~~~~~~~~~~~">
12601 <location
12602 file="res/values-lb/strings.xml"
12603 line="129"
12604 column="44"/>
12605 </issue>
12606
12607 <issue
12608 id="TypographyDashes"
12609 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12610 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 min.&lt;/string>"
12611 errorLine2=" ~~~~~~~~~~~~">
12612 <location
12613 file="res/values-lt/strings.xml"
12614 line="129"
12615 column="44"/>
12616 </issue>
12617
12618 <issue
12619 id="TypographyDashes"
12620 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12621 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 dziesmas&lt;/string>"
12622 errorLine2=" ~~~~~~~~~~~~~~">
12623 <location
12624 file="res/values-lv/strings.xml"
12625 line="129"
12626 column="40"/>
12627 </issue>
12628
12629 <issue
12630 id="TypographyDashes"
12631 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12632 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 മിനിറ്റ്&lt;/string>"
12633 errorLine2=" ~~~~~~~~~~~~~~~~">
12634 <location
12635 file="res/values-ml/strings.xml"
12636 line="129"
12637 column="44"/>
12638 </issue>
12639
12640 <issue
12641 id="TypographyDashes"
12642 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12643 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 मिनिटे&lt;/string>"
12644 errorLine2=" ~~~~~~~~~~~~~~">
12645 <location
12646 file="res/values-mr/strings.xml"
12647 line="129"
12648 column="44"/>
12649 </issue>
12650
12651 <issue
12652 id="TypographyDashes"
12653 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12654 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutter&lt;/string>"
12655 errorLine2=" ~~~~~~~~~~~~~~~~">
12656 <location
12657 file="res/values-nb/strings.xml"
12658 line="129"
12659 column="44"/>
12660 </issue>
12661
12662 <issue
12663 id="TypographyDashes"
12664 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12665 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minuten&lt;/string>"
12666 errorLine2=" ~~~~~~~~~~~~~~~">
12667 <location
12668 file="res/values-nl/strings.xml"
12669 line="129"
12670 column="44"/>
12671 </issue>
12672
12673 <issue
12674 id="TypographyDashes"
12675 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12676 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 ମିନିଟ୍‍&lt;/string>"
12677 errorLine2=" ~~~~~~~~~~~~~~~">
12678 <location
12679 file="res/values-or/strings.xml"
12680 line="129"
12681 column="44"/>
12682 </issue>
12683
12684 <issue
12685 id="TypographyDashes"
12686 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12687 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minut&lt;/string>"
12688 errorLine2=" ~~~~~~~~~~~~~">
12689 <location
12690 file="res/values-pl/strings.xml"
12691 line="129"
12692 column="44"/>
12693 </issue>
12694
12695 <issue
12696 id="TypographyDashes"
12697 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12698 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutos&lt;/string>"
12699 errorLine2=" ~~~~~~~~~~~~~~~">
12700 <location
12701 file="res/values-pt-rPT/strings.xml"
12702 line="129"
12703 column="44"/>
12704 </issue>
12705
12706 <issue
12707 id="TypographyDashes"
12708 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12709 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 de minute&lt;/string>"
12710 errorLine2=" ~~~~~~~~~~~~~~~~~">
12711 <location
12712 file="res/values-ro/strings.xml"
12713 line="129"
12714 column="44"/>
12715 </issue>
12716
12717 <issue
12718 id="TypographyDashes"
12719 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12720 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minút&lt;/string>"
12721 errorLine2=" ~~~~~~~~~~~~~">
12722 <location
12723 file="res/values-sk/strings.xml"
12724 line="129"
12725 column="44"/>
12726 </issue>
12727
12728 <issue
12729 id="TypographyDashes"
12730 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12731 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minut&lt;/string>"
12732 errorLine2=" ~~~~~~~~~~~~~">
12733 <location
12734 file="res/values-sl/strings.xml"
12735 line="129"
12736 column="44"/>
12737 </issue>
12738
12739 <issue
12740 id="TypographyDashes"
12741 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12742 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 минута&lt;/string>"
12743 errorLine2=" ~~~~~~~~~~~~~~">
12744 <location
12745 file="res/values-sr/strings.xml"
12746 line="129"
12747 column="44"/>
12748 </issue>
12749
12750 <issue
12751 id="TypographyDashes"
12752 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12753 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minuter&lt;/string>"
12754 errorLine2=" ~~~~~~~~~~~~~~~">
12755 <location
12756 file="res/values-sv/strings.xml"
12757 line="129"
12758 column="44"/>
12759 </issue>
12760
12761 <issue
12762 id="TypographyDashes"
12763 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12764 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 நிமிடங்கள்&lt;/string>"
12765 errorLine2=" ~~~~~~~~~~~~~~~~~~">
12766 <location
12767 file="res/values-ta/strings.xml"
12768 line="129"
12769 column="44"/>
12770 </issue>
12771
12772 <issue
12773 id="TypographyDashes"
12774 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12775 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 నిమిషాలు&lt;/string>"
12776 errorLine2=" ~~~~~~~~~~~~~~~~">
12777 <location
12778 file="res/values-te/strings.xml"
12779 line="129"
12780 column="44"/>
12781 </issue>
12782
12783 <issue
12784 id="TypographyDashes"
12785 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12786 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 นาที&lt;/string>"
12787 errorLine2=" ~~~~~~~~~~~~">
12788 <location
12789 file="res/values-th/strings.xml"
12790 line="129"
12791 column="44"/>
12792 </issue>
12793
12794 <issue
12795 id="TypographyDashes"
12796 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12797 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 dakika&lt;/string>"
12798 errorLine2=" ~~~~~~~~~~~~~~">
12799 <location
12800 file="res/values-tr/strings.xml"
12801 line="129"
12802 column="44"/>
12803 </issue>
12804
12805 <issue
12806 id="TypographyDashes"
12807 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12808 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30-60 مىنۇتقىچە&lt;/string>"
12809 errorLine2=" ~~~~~~~~~~~~~~~">
12810 <location
12811 file="res/values-ug/strings.xml"
12812 line="129"
12813 column="44"/>
12814 </issue>
12815
12816 <issue
12817 id="TypographyDashes"
12818 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12819 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 хвилин&lt;/string>"
12820 errorLine2=" ~~~~~~~~~~~~~~">
12821 <location
12822 file="res/values-uk/strings.xml"
12823 line="129"
12824 column="44"/>
12825 </issue>
12826
12827 <issue
12828 id="TypographyDashes"
12829 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12830 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 phút&lt;/string>"
12831 errorLine2=" ~~~~~~~~~~~~">
12832 <location
12833 file="res/values-vi/strings.xml"
12834 line="129"
12835 column="44"/>
12836 </issue>
12837
12838 <issue
12839 id="TypographyDashes"
12840 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12841 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10-30 分钟&lt;/string>"
12842 errorLine2=" ~~~~~~~~">
12843 <location
12844 file="res/values-zh-rCN/strings.xml"
12845 line="129"
12846 column="44"/>
12847 </issue>
12848
12849 <issue
12850 id="TypographyDashes"
12851 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12852 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 分鐘&lt;/string>"
12853 errorLine2=" ~~~~~~~~~~">
12854 <location
12855 file="res/values-zh-rTW/strings.xml"
12856 line="129"
12857 column="44"/>
12858 </issue>
12859
12860 <issue
12861 id="TypographyDashes"
12862 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12863 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 دقيقة&lt;/string>"
12864 errorLine2=" ~~~~~~~~~~~~~">
12865 <location
12866 file="res/values-ar/strings.xml"
12867 line="130"
12868 column="44"/>
12869 </issue>
12870
12871 <issue
12872 id="TypographyDashes"
12873 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12874 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 dəqiqə&lt;/string>"
12875 errorLine2=" ~~~~~~~~~~~~~~">
12876 <location
12877 file="res/values-az/strings.xml"
12878 line="130"
12879 column="44"/>
12880 </issue>
12881
12882 <issue
12883 id="TypographyDashes"
12884 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12885 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 минути&lt;/string>"
12886 errorLine2=" ~~~~~~~~~~~~~~">
12887 <location
12888 file="res/values-bg/strings.xml"
12889 line="130"
12890 column="44"/>
12891 </issue>
12892
12893 <issue
12894 id="TypographyDashes"
12895 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12896 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minuts&lt;/string>"
12897 errorLine2=" ~~~~~~~~~~~~~~">
12898 <location
12899 file="res/values-ca/strings.xml"
12900 line="130"
12901 column="44"/>
12902 </issue>
12903
12904 <issue
12905 id="TypographyDashes"
12906 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12907 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minut&lt;/string>"
12908 errorLine2=" ~~~~~~~~~~~~~">
12909 <location
12910 file="res/values-cs/strings.xml"
12911 line="130"
12912 column="44"/>
12913 </issue>
12914
12915 <issue
12916 id="TypographyDashes"
12917 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12918 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 λεπτά&lt;/string>"
12919 errorLine2=" ~~~~~~~~~~~~~">
12920 <location
12921 file="res/values-el/strings.xml"
12922 line="130"
12923 column="44"/>
12924 </issue>
12925
12926 <issue
12927 id="TypographyDashes"
12928 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12929 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutes&lt;/string>"
12930 errorLine2=" ~~~~~~~~~~~~~~~">
12931 <location
12932 file="res/values-en-rAU/strings.xml"
12933 line="130"
12934 column="44"/>
12935 </issue>
12936
12937 <issue
12938 id="TypographyDashes"
12939 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12940 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutes&lt;/string>"
12941 errorLine2=" ~~~~~~~~~~~~~~~">
12942 <location
12943 file="res/values-en-rCA/strings.xml"
12944 line="130"
12945 column="44"/>
12946 </issue>
12947
12948 <issue
12949 id="TypographyDashes"
12950 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12951 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutes&lt;/string>"
12952 errorLine2=" ~~~~~~~~~~~~~~~">
12953 <location
12954 file="res/values-en-rGB/strings.xml"
12955 line="130"
12956 column="44"/>
12957 </issue>
12958
12959 <issue
12960 id="TypographyDashes"
12961 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12962 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutes&lt;/string>"
12963 errorLine2=" ~~~~~~~~~~~~~~~">
12964 <location
12965 file="res/values-en-rIN/strings.xml"
12966 line="130"
12967 column="44"/>
12968 </issue>
12969
12970 <issue
12971 id="TypographyDashes"
12972 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12973 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutit&lt;/string>"
12974 errorLine2=" ~~~~~~~~~~~~~~~">
12975 <location
12976 file="res/values-et/strings.xml"
12977 line="130"
12978 column="44"/>
12979 </issue>
12980
12981 <issue
12982 id="TypographyDashes"
12983 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12984 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minuuttia&lt;/string>"
12985 errorLine2=" ~~~~~~~~~~~~~~~~~">
12986 <location
12987 file="res/values-fi/strings.xml"
12988 line="130"
12989 column="44"/>
12990 </issue>
12991
12992 <issue
12993 id="TypographyDashes"
12994 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
12995 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minuten&lt;/string>"
12996 errorLine2=" ~~~~~~~~~~~~~~~">
12997 <location
12998 file="res/values-fy-rNL/strings.xml"
12999 line="130"
13000 column="44"/>
13001 </issue>
13002
13003 <issue
13004 id="TypographyDashes"
13005 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13006 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutos&lt;/string>"
13007 errorLine2=" ~~~~~~~~~~~~~~~">
13008 <location
13009 file="res/values-gl/strings.xml"
13010 line="130"
13011 column="44"/>
13012 </issue>
13013
13014 <issue
13015 id="TypographyDashes"
13016 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13017 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 perc&lt;/string>"
13018 errorLine2=" ~~~~~~~~~~~~">
13019 <location
13020 file="res/values-hu/strings.xml"
13021 line="130"
13022 column="44"/>
13023 </issue>
13024
13025 <issue
13026 id="TypographyDashes"
13027 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13028 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minuti&lt;/string>"
13029 errorLine2=" ~~~~~~~~~~~~~~">
13030 <location
13031 file="res/values-it/strings.xml"
13032 line="130"
13033 column="44"/>
13034 </issue>
13035
13036 <issue
13037 id="TypographyDashes"
13038 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13039 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30-60분&lt;/string>"
13040 errorLine2=" ~~~~~~">
13041 <location
13042 file="res/values-ko/strings.xml"
13043 line="130"
13044 column="44"/>
13045 </issue>
13046
13047 <issue
13048 id="TypographyDashes"
13049 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13050 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutos&lt;/string>"
13051 errorLine2=" ~~~~~~~~~~~~~~~">
13052 <location
13053 file="res/values-pt-rPT/strings.xml"
13054 line="130"
13055 column="44"/>
13056 </issue>
13057
13058 <issue
13059 id="TypographyDashes"
13060 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13061 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 de minute&lt;/string>"
13062 errorLine2=" ~~~~~~~~~~~~~~~~~">
13063 <location
13064 file="res/values-ro/strings.xml"
13065 line="130"
13066 column="44"/>
13067 </issue>
13068
13069 <issue
13070 id="TypographyDashes"
13071 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13072 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minút&lt;/string>"
13073 errorLine2=" ~~~~~~~~~~~~~">
13074 <location
13075 file="res/values-sk/strings.xml"
13076 line="130"
13077 column="44"/>
13078 </issue>
13079
13080 <issue
13081 id="TypographyDashes"
13082 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13083 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minut&lt;/string>"
13084 errorLine2=" ~~~~~~~~~~~~~">
13085 <location
13086 file="res/values-sl/strings.xml"
13087 line="130"
13088 column="44"/>
13089 </issue>
13090
13091 <issue
13092 id="TypographyDashes"
13093 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13094 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 นาที&lt;/string>"
13095 errorLine2=" ~~~~~~~~~~~~">
13096 <location
13097 file="res/values-th/strings.xml"
13098 line="130"
13099 column="44"/>
13100 </issue>
13101
13102 <issue
13103 id="TypographyDashes"
13104 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13105 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 dakika&lt;/string>"
13106 errorLine2=" ~~~~~~~~~~~~~~">
13107 <location
13108 file="res/values-tr/strings.xml"
13109 line="130"
13110 column="44"/>
13111 </issue>
13112
13113 <issue
13114 id="TypographyDashes"
13115 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13116 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30-60 分钟&lt;/string>"
13117 errorLine2=" ~~~~~~~~">
13118 <location
13119 file="res/values-zh-rCN/strings.xml"
13120 line="130"
13121 column="44"/>
13122 </issue>
13123
13124 <issue
13125 id="TypographyDashes"
13126 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13127 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 分鐘&lt;/string>"
13128 errorLine2=" ~~~~~~~~~~">
13129 <location
13130 file="res/values-zh-rTW/strings.xml"
13131 line="130"
13132 column="44"/>
13133 </issue>
13134
13135 <issue
13136 id="TypographyDashes"
13137 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13138 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 ಹಾಡುಗಳು&lt;/string>"
13139 errorLine2=" ~~~~~~~~~~~~~">
13140 <location
13141 file="res/values-kn/strings.xml"
13142 line="131"
13143 column="40"/>
13144 </issue>
13145
13146 <issue
13147 id="TypographyDashes"
13148 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13149 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 liedjies&lt;/string>"
13150 errorLine2=" ~~~~~~~~~~~~~~">
13151 <location
13152 file="res/values-af/strings.xml"
13153 line="132"
13154 column="40"/>
13155 </issue>
13156
13157 <issue
13158 id="TypographyDashes"
13159 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13160 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 টা গীত&lt;/string>"
13161 errorLine2=" ~~~~~~~~~~~~">
13162 <location
13163 file="res/values-as/strings.xml"
13164 line="132"
13165 column="40"/>
13166 </issue>
13167
13168 <issue
13169 id="TypographyDashes"
13170 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13171 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 canciones&lt;/string>"
13172 errorLine2=" ~~~~~~~~~~~~~~~">
13173 <location
13174 file="res/values-ast-rES/strings.xml"
13175 line="132"
13176 column="40"/>
13177 </issue>
13178
13179 <issue
13180 id="TypographyDashes"
13181 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13182 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 трэка&lt;/string>"
13183 errorLine2=" ~~~~~~~~~~~">
13184 <location
13185 file="res/values-be/strings.xml"
13186 line="132"
13187 column="40"/>
13188 </issue>
13189
13190 <issue
13191 id="TypographyDashes"
13192 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13193 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 sange&lt;/string>"
13194 errorLine2=" ~~~~~~~~~~~">
13195 <location
13196 file="res/values-da/strings.xml"
13197 line="132"
13198 column="40"/>
13199 </issue>
13200
13201 <issue
13202 id="TypographyDashes"
13203 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13204 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 canciones&lt;/string>"
13205 errorLine2=" ~~~~~~~~~~~~~~~">
13206 <location
13207 file="res/values-es-rUS/strings.xml"
13208 line="132"
13209 column="40"/>
13210 </issue>
13211
13212 <issue
13213 id="TypographyDashes"
13214 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13215 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 canciones&lt;/string>"
13216 errorLine2=" ~~~~~~~~~~~~~~~">
13217 <location
13218 file="res/values-es/strings.xml"
13219 line="132"
13220 column="40"/>
13221 </issue>
13222
13223 <issue
13224 id="TypographyDashes"
13225 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13226 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 abesti&lt;/string>"
13227 errorLine2=" ~~~~~~~~~~~~">
13228 <location
13229 file="res/values-eu/strings.xml"
13230 line="132"
13231 column="40"/>
13232 </issue>
13233
13234 <issue
13235 id="TypographyDashes"
13236 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13237 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 ગીતો&lt;/string>"
13238 errorLine2=" ~~~~~~~~~~">
13239 <location
13240 file="res/values-gu/strings.xml"
13241 line="132"
13242 column="40"/>
13243 </issue>
13244
13245 <issue
13246 id="TypographyDashes"
13247 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13248 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 गाने&lt;/string>"
13249 errorLine2=" ~~~~~~~~~~">
13250 <location
13251 file="res/values-hi/strings.xml"
13252 line="132"
13253 column="40"/>
13254 </issue>
13255
13256 <issue
13257 id="TypographyDashes"
13258 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13259 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 pjesme&lt;/string>"
13260 errorLine2=" ~~~~~~~~~~~~">
13261 <location
13262 file="res/values-hr/strings.xml"
13263 line="132"
13264 column="40"/>
13265 </issue>
13266
13267 <issue
13268 id="TypographyDashes"
13269 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13270 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 lagu&lt;/string>"
13271 errorLine2=" ~~~~~~~~~~">
13272 <location
13273 file="res/values-in/strings.xml"
13274 line="132"
13275 column="40"/>
13276 </issue>
13277
13278 <issue
13279 id="TypographyDashes"
13280 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13281 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 ಹಾಡುಗಳು&lt;/string>"
13282 errorLine2=" ~~~~~~~~~~~~~">
13283 <location
13284 file="res/values-kn/strings.xml"
13285 line="132"
13286 column="40"/>
13287 </issue>
13288
13289 <issue
13290 id="TypographyDashes"
13291 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13292 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2-4 Lidder&lt;/string>"
13293 errorLine2=" ~~~~~~~~~~">
13294 <location
13295 file="res/values-lb/strings.xml"
13296 line="132"
13297 column="40"/>
13298 </issue>
13299
13300 <issue
13301 id="TypographyDashes"
13302 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13303 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 dainos&lt;/string>"
13304 errorLine2=" ~~~~~~~~~~~~">
13305 <location
13306 file="res/values-lt/strings.xml"
13307 line="132"
13308 column="40"/>
13309 </issue>
13310
13311 <issue
13312 id="TypographyDashes"
13313 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13314 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 ഗാനങ്ങൾ&lt;/string>"
13315 errorLine2=" ~~~~~~~~~~~~~">
13316 <location
13317 file="res/values-ml/strings.xml"
13318 line="132"
13319 column="40"/>
13320 </issue>
13321
13322 <issue
13323 id="TypographyDashes"
13324 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13325 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 गाणी&lt;/string>"
13326 errorLine2=" ~~~~~~~~~~">
13327 <location
13328 file="res/values-mr/strings.xml"
13329 line="132"
13330 column="40"/>
13331 </issue>
13332
13333 <issue
13334 id="TypographyDashes"
13335 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13336 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 sanger&lt;/string>"
13337 errorLine2=" ~~~~~~~~~~~~">
13338 <location
13339 file="res/values-nb/strings.xml"
13340 line="132"
13341 column="40"/>
13342 </issue>
13343
13344 <issue
13345 id="TypographyDashes"
13346 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13347 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 nummers&lt;/string>"
13348 errorLine2=" ~~~~~~~~~~~~~">
13349 <location
13350 file="res/values-nl/strings.xml"
13351 line="132"
13352 column="40"/>
13353 </issue>
13354
13355 <issue
13356 id="TypographyDashes"
13357 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13358 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 ଗୀତ&lt;/string>"
13359 errorLine2=" ~~~~~~~~~">
13360 <location
13361 file="res/values-or/strings.xml"
13362 line="132"
13363 column="40"/>
13364 </issue>
13365
13366 <issue
13367 id="TypographyDashes"
13368 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13369 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 piosenek&lt;/string>"
13370 errorLine2=" ~~~~~~~~~~~~~~">
13371 <location
13372 file="res/values-pl/strings.xml"
13373 line="132"
13374 column="40"/>
13375 </issue>
13376
13377 <issue
13378 id="TypographyDashes"
13379 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13380 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 песме&lt;/string>"
13381 errorLine2=" ~~~~~~~~~~~">
13382 <location
13383 file="res/values-sr/strings.xml"
13384 line="132"
13385 column="40"/>
13386 </issue>
13387
13388 <issue
13389 id="TypographyDashes"
13390 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13391 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 låtar&lt;/string>"
13392 errorLine2=" ~~~~~~~~~~~">
13393 <location
13394 file="res/values-sv/strings.xml"
13395 line="132"
13396 column="40"/>
13397 </issue>
13398
13399 <issue
13400 id="TypographyDashes"
13401 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13402 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 பாடல்கள்&lt;/string>"
13403 errorLine2=" ~~~~~~~~~~~~~~">
13404 <location
13405 file="res/values-ta/strings.xml"
13406 line="132"
13407 column="40"/>
13408 </issue>
13409
13410 <issue
13411 id="TypographyDashes"
13412 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13413 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 పాటలు&lt;/string>"
13414 errorLine2=" ~~~~~~~~~~~">
13415 <location
13416 file="res/values-te/strings.xml"
13417 line="132"
13418 column="40"/>
13419 </issue>
13420
13421 <issue
13422 id="TypographyDashes"
13423 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13424 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2-4 نەغمە ناخشا&lt;/string>"
13425 errorLine2=" ~~~~~~~~~~~~~~~">
13426 <location
13427 file="res/values-ug/strings.xml"
13428 line="132"
13429 column="40"/>
13430 </issue>
13431
13432 <issue
13433 id="TypographyDashes"
13434 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13435 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 пісні&lt;/string>"
13436 errorLine2=" ~~~~~~~~~~~">
13437 <location
13438 file="res/values-uk/strings.xml"
13439 line="132"
13440 column="40"/>
13441 </issue>
13442
13443 <issue
13444 id="TypographyDashes"
13445 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13446 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 bài hát&lt;/string>"
13447 errorLine2=" ~~~~~~~~~~~~~">
13448 <location
13449 file="res/values-vi/strings.xml"
13450 line="132"
13451 column="40"/>
13452 </issue>
13453
13454 <issue
13455 id="TypographyDashes"
13456 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13457 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 liedjies&lt;/string>"
13458 errorLine2=" ~~~~~~~~~~~~~~">
13459 <location
13460 file="res/values-af/strings.xml"
13461 line="133"
13462 column="40"/>
13463 </issue>
13464
13465 <issue
13466 id="TypographyDashes"
13467 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13468 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2-4 أغاني&lt;/string>"
13469 errorLine2=" ~~~~~~~~~">
13470 <location
13471 file="res/values-ar/strings.xml"
13472 line="133"
13473 column="40"/>
13474 </issue>
13475
13476 <issue
13477 id="TypographyDashes"
13478 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13479 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 টা গীত&lt;/string>"
13480 errorLine2=" ~~~~~~~~~~~~">
13481 <location
13482 file="res/values-as/strings.xml"
13483 line="133"
13484 column="40"/>
13485 </issue>
13486
13487 <issue
13488 id="TypographyDashes"
13489 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13490 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 canciones&lt;/string>"
13491 errorLine2=" ~~~~~~~~~~~~~~~">
13492 <location
13493 file="res/values-ast-rES/strings.xml"
13494 line="133"
13495 column="40"/>
13496 </issue>
13497
13498 <issue
13499 id="TypographyDashes"
13500 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13501 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 mahnı&lt;/string>"
13502 errorLine2=" ~~~~~~~~~~~">
13503 <location
13504 file="res/values-az/strings.xml"
13505 line="133"
13506 column="40"/>
13507 </issue>
13508
13509 <issue
13510 id="TypographyDashes"
13511 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13512 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 трэкаў&lt;/string>"
13513 errorLine2=" ~~~~~~~~~~~~">
13514 <location
13515 file="res/values-be/strings.xml"
13516 line="133"
13517 column="40"/>
13518 </issue>
13519
13520 <issue
13521 id="TypographyDashes"
13522 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13523 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 песни&lt;/string>"
13524 errorLine2=" ~~~~~~~~~~~">
13525 <location
13526 file="res/values-bg/strings.xml"
13527 line="133"
13528 column="40"/>
13529 </issue>
13530
13531 <issue
13532 id="TypographyDashes"
13533 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13534 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 cançons&lt;/string>"
13535 errorLine2=" ~~~~~~~~~~~~~">
13536 <location
13537 file="res/values-ca/strings.xml"
13538 line="133"
13539 column="40"/>
13540 </issue>
13541
13542 <issue
13543 id="TypographyDashes"
13544 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13545 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 skladby&lt;/string>"
13546 errorLine2=" ~~~~~~~~~~~~~">
13547 <location
13548 file="res/values-cs/strings.xml"
13549 line="133"
13550 column="40"/>
13551 </issue>
13552
13553 <issue
13554 id="TypographyDashes"
13555 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13556 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 cân&lt;/string>"
13557 errorLine2=" ~~~~~~~~~">
13558 <location
13559 file="res/values-cy/strings.xml"
13560 line="133"
13561 column="40"/>
13562 </issue>
13563
13564 <issue
13565 id="TypographyDashes"
13566 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13567 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 sange&lt;/string>"
13568 errorLine2=" ~~~~~~~~~~~">
13569 <location
13570 file="res/values-da/strings.xml"
13571 line="133"
13572 column="40"/>
13573 </issue>
13574
13575 <issue
13576 id="TypographyDashes"
13577 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13578 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 τραγούδια&lt;/string>"
13579 errorLine2=" ~~~~~~~~~~~~~~~">
13580 <location
13581 file="res/values-el/strings.xml"
13582 line="133"
13583 column="40"/>
13584 </issue>
13585
13586 <issue
13587 id="TypographyDashes"
13588 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13589 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 songs&lt;/string>"
13590 errorLine2=" ~~~~~~~~~~~">
13591 <location
13592 file="res/values-en-rAU/strings.xml"
13593 line="133"
13594 column="40"/>
13595 </issue>
13596
13597 <issue
13598 id="TypographyDashes"
13599 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13600 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 songs&lt;/string>"
13601 errorLine2=" ~~~~~~~~~~~">
13602 <location
13603 file="res/values-en-rCA/strings.xml"
13604 line="133"
13605 column="40"/>
13606 </issue>
13607
13608 <issue
13609 id="TypographyDashes"
13610 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13611 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 songs&lt;/string>"
13612 errorLine2=" ~~~~~~~~~~~">
13613 <location
13614 file="res/values-en-rGB/strings.xml"
13615 line="133"
13616 column="40"/>
13617 </issue>
13618
13619 <issue
13620 id="TypographyDashes"
13621 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13622 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 songs&lt;/string>"
13623 errorLine2=" ~~~~~~~~~~~">
13624 <location
13625 file="res/values-en-rIN/strings.xml"
13626 line="133"
13627 column="40"/>
13628 </issue>
13629
13630 <issue
13631 id="TypographyDashes"
13632 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13633 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 canciones&lt;/string>"
13634 errorLine2=" ~~~~~~~~~~~~~~~">
13635 <location
13636 file="res/values-es-rUS/strings.xml"
13637 line="133"
13638 column="40"/>
13639 </issue>
13640
13641 <issue
13642 id="TypographyDashes"
13643 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13644 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 canciones&lt;/string>"
13645 errorLine2=" ~~~~~~~~~~~~~~~">
13646 <location
13647 file="res/values-es/strings.xml"
13648 line="133"
13649 column="40"/>
13650 </issue>
13651
13652 <issue
13653 id="TypographyDashes"
13654 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13655 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 laulu&lt;/string>"
13656 errorLine2=" ~~~~~~~~~~~">
13657 <location
13658 file="res/values-et/strings.xml"
13659 line="133"
13660 column="40"/>
13661 </issue>
13662
13663 <issue
13664 id="TypographyDashes"
13665 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13666 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 abesti&lt;/string>"
13667 errorLine2=" ~~~~~~~~~~~~">
13668 <location
13669 file="res/values-eu/strings.xml"
13670 line="133"
13671 column="40"/>
13672 </issue>
13673
13674 <issue
13675 id="TypographyDashes"
13676 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13677 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 kappaletta&lt;/string>"
13678 errorLine2=" ~~~~~~~~~~~~~~~~">
13679 <location
13680 file="res/values-fi/strings.xml"
13681 line="133"
13682 column="40"/>
13683 </issue>
13684
13685 <issue
13686 id="TypographyDashes"
13687 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13688 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 nûmers&lt;/string>"
13689 errorLine2=" ~~~~~~~~~~~~">
13690 <location
13691 file="res/values-fy-rNL/strings.xml"
13692 line="133"
13693 column="40"/>
13694 </issue>
13695
13696 <issue
13697 id="TypographyDashes"
13698 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13699 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 cancións&lt;/string>"
13700 errorLine2=" ~~~~~~~~~~~~~~">
13701 <location
13702 file="res/values-gl/strings.xml"
13703 line="133"
13704 column="40"/>
13705 </issue>
13706
13707 <issue
13708 id="TypographyDashes"
13709 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13710 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 ગીતો&lt;/string>"
13711 errorLine2=" ~~~~~~~~~~">
13712 <location
13713 file="res/values-gu/strings.xml"
13714 line="133"
13715 column="40"/>
13716 </issue>
13717
13718 <issue
13719 id="TypographyDashes"
13720 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13721 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5- 9 गाने&lt;/string>"
13722 errorLine2=" ~~~~~~~~~">
13723 <location
13724 file="res/values-hi/strings.xml"
13725 line="133"
13726 column="40"/>
13727 </issue>
13728
13729 <issue
13730 id="TypographyDashes"
13731 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13732 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 pjesama&lt;/string>"
13733 errorLine2=" ~~~~~~~~~~~~~">
13734 <location
13735 file="res/values-hr/strings.xml"
13736 line="133"
13737 column="40"/>
13738 </issue>
13739
13740 <issue
13741 id="TypographyDashes"
13742 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13743 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 dal&lt;/string>"
13744 errorLine2=" ~~~~~~~~~">
13745 <location
13746 file="res/values-hu/strings.xml"
13747 line="133"
13748 column="40"/>
13749 </issue>
13750
13751 <issue
13752 id="TypographyDashes"
13753 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13754 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 lagu&lt;/string>"
13755 errorLine2=" ~~~~~~~~~~">
13756 <location
13757 file="res/values-in/strings.xml"
13758 line="133"
13759 column="40"/>
13760 </issue>
13761
13762 <issue
13763 id="TypographyDashes"
13764 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13765 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 canzoni&lt;/string>"
13766 errorLine2=" ~~~~~~~~~~~~~">
13767 <location
13768 file="res/values-it/strings.xml"
13769 line="133"
13770 column="40"/>
13771 </issue>
13772
13773 <issue
13774 id="TypographyDashes"
13775 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13776 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2-4곡의 음악&lt;/string>"
13777 errorLine2=" ~~~~~~~~">
13778 <location
13779 file="res/values-ko/strings.xml"
13780 line="133"
13781 column="40"/>
13782 </issue>
13783
13784 <issue
13785 id="TypographyDashes"
13786 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13787 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5-9 Lidder&lt;/string>"
13788 errorLine2=" ~~~~~~~~~~">
13789 <location
13790 file="res/values-lb/strings.xml"
13791 line="133"
13792 column="40"/>
13793 </issue>
13794
13795 <issue
13796 id="TypographyDashes"
13797 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13798 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 dainos&lt;/string>"
13799 errorLine2=" ~~~~~~~~~~~~">
13800 <location
13801 file="res/values-lt/strings.xml"
13802 line="133"
13803 column="40"/>
13804 </issue>
13805
13806 <issue
13807 id="TypographyDashes"
13808 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13809 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 ഗാനങ്ങൾ&lt;/string>"
13810 errorLine2=" ~~~~~~~~~~~~~">
13811 <location
13812 file="res/values-ml/strings.xml"
13813 line="133"
13814 column="40"/>
13815 </issue>
13816
13817 <issue
13818 id="TypographyDashes"
13819 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13820 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 गाणी&lt;/string>"
13821 errorLine2=" ~~~~~~~~~~">
13822 <location
13823 file="res/values-mr/strings.xml"
13824 line="133"
13825 column="40"/>
13826 </issue>
13827
13828 <issue
13829 id="TypographyDashes"
13830 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13831 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 sanger&lt;/string>"
13832 errorLine2=" ~~~~~~~~~~~~">
13833 <location
13834 file="res/values-nb/strings.xml"
13835 line="133"
13836 column="40"/>
13837 </issue>
13838
13839 <issue
13840 id="TypographyDashes"
13841 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13842 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 nummers&lt;/string>"
13843 errorLine2=" ~~~~~~~~~~~~~">
13844 <location
13845 file="res/values-nl/strings.xml"
13846 line="133"
13847 column="40"/>
13848 </issue>
13849
13850 <issue
13851 id="TypographyDashes"
13852 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13853 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 ଗୀତ&lt;/string>"
13854 errorLine2=" ~~~~~~~~~">
13855 <location
13856 file="res/values-or/strings.xml"
13857 line="133"
13858 column="40"/>
13859 </issue>
13860
13861 <issue
13862 id="TypographyDashes"
13863 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13864 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 piosenek&lt;/string>"
13865 errorLine2=" ~~~~~~~~~~~~~~">
13866 <location
13867 file="res/values-pl/strings.xml"
13868 line="133"
13869 column="40"/>
13870 </issue>
13871
13872 <issue
13873 id="TypographyDashes"
13874 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13875 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 músicas&lt;/string>"
13876 errorLine2=" ~~~~~~~~~~~~~">
13877 <location
13878 file="res/values-pt-rPT/strings.xml"
13879 line="133"
13880 column="40"/>
13881 </issue>
13882
13883 <issue
13884 id="TypographyDashes"
13885 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13886 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 melodii&lt;/string>"
13887 errorLine2=" ~~~~~~~~~~~~~">
13888 <location
13889 file="res/values-ro/strings.xml"
13890 line="133"
13891 column="40"/>
13892 </issue>
13893
13894 <issue
13895 id="TypographyDashes"
13896 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13897 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 skladby&lt;/string>"
13898 errorLine2=" ~~~~~~~~~~~~~">
13899 <location
13900 file="res/values-sk/strings.xml"
13901 line="133"
13902 column="40"/>
13903 </issue>
13904
13905 <issue
13906 id="TypographyDashes"
13907 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13908 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 skladbe&lt;/string>"
13909 errorLine2=" ~~~~~~~~~~~~~">
13910 <location
13911 file="res/values-sl/strings.xml"
13912 line="133"
13913 column="40"/>
13914 </issue>
13915
13916 <issue
13917 id="TypographyDashes"
13918 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13919 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 песама&lt;/string>"
13920 errorLine2=" ~~~~~~~~~~~~">
13921 <location
13922 file="res/values-sr/strings.xml"
13923 line="133"
13924 column="40"/>
13925 </issue>
13926
13927 <issue
13928 id="TypographyDashes"
13929 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13930 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 låtar&lt;/string>"
13931 errorLine2=" ~~~~~~~~~~~">
13932 <location
13933 file="res/values-sv/strings.xml"
13934 line="133"
13935 column="40"/>
13936 </issue>
13937
13938 <issue
13939 id="TypographyDashes"
13940 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13941 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 பாடல்கள்&lt;/string>"
13942 errorLine2=" ~~~~~~~~~~~~~~">
13943 <location
13944 file="res/values-ta/strings.xml"
13945 line="133"
13946 column="40"/>
13947 </issue>
13948
13949 <issue
13950 id="TypographyDashes"
13951 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13952 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 పాటలు&lt;/string>"
13953 errorLine2=" ~~~~~~~~~~~">
13954 <location
13955 file="res/values-te/strings.xml"
13956 line="133"
13957 column="40"/>
13958 </issue>
13959
13960 <issue
13961 id="TypographyDashes"
13962 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13963 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 เพลง&lt;/string>"
13964 errorLine2=" ~~~~~~~~~~">
13965 <location
13966 file="res/values-th/strings.xml"
13967 line="133"
13968 column="40"/>
13969 </issue>
13970
13971 <issue
13972 id="TypographyDashes"
13973 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13974 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 şarkı&lt;/string>"
13975 errorLine2=" ~~~~~~~~~~~">
13976 <location
13977 file="res/values-tr/strings.xml"
13978 line="133"
13979 column="40"/>
13980 </issue>
13981
13982 <issue
13983 id="TypographyDashes"
13984 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13985 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5-9 نەغمە ناخشا&lt;/string>"
13986 errorLine2=" ~~~~~~~~~~~~~~~">
13987 <location
13988 file="res/values-ug/strings.xml"
13989 line="133"
13990 column="40"/>
13991 </issue>
13992
13993 <issue
13994 id="TypographyDashes"
13995 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
13996 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 пісень&lt;/string>"
13997 errorLine2=" ~~~~~~~~~~~~">
13998 <location
13999 file="res/values-uk/strings.xml"
14000 line="133"
14001 column="40"/>
14002 </issue>
14003
14004 <issue
14005 id="TypographyDashes"
14006 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14007 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 bài hát&lt;/string>"
14008 errorLine2=" ~~~~~~~~~~~~~">
14009 <location
14010 file="res/values-vi/strings.xml"
14011 line="133"
14012 column="40"/>
14013 </issue>
14014
14015 <issue
14016 id="TypographyDashes"
14017 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14018 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2-4 首歌曲&lt;/string>"
14019 errorLine2=" ~~~~~~~">
14020 <location
14021 file="res/values-zh-rCN/strings.xml"
14022 line="133"
14023 column="40"/>
14024 </issue>
14025
14026 <issue
14027 id="TypographyDashes"
14028 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14029 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 首樂曲&lt;/string>"
14030 errorLine2=" ~~~~~~~~~">
14031 <location
14032 file="res/values-zh-rTW/strings.xml"
14033 line="133"
14034 column="40"/>
14035 </issue>
14036
14037 <issue
14038 id="TypographyDashes"
14039 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14040 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5-9 أغاني&lt;/string>"
14041 errorLine2=" ~~~~~~~~~">
14042 <location
14043 file="res/values-ar/strings.xml"
14044 line="134"
14045 column="40"/>
14046 </issue>
14047
14048 <issue
14049 id="TypographyDashes"
14050 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14051 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 mahnı&lt;/string>"
14052 errorLine2=" ~~~~~~~~~~~">
14053 <location
14054 file="res/values-az/strings.xml"
14055 line="134"
14056 column="40"/>
14057 </issue>
14058
14059 <issue
14060 id="TypographyDashes"
14061 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14062 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 песни&lt;/string>"
14063 errorLine2=" ~~~~~~~~~~~">
14064 <location
14065 file="res/values-bg/strings.xml"
14066 line="134"
14067 column="40"/>
14068 </issue>
14069
14070 <issue
14071 id="TypographyDashes"
14072 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14073 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 cançons&lt;/string>"
14074 errorLine2=" ~~~~~~~~~~~~~">
14075 <location
14076 file="res/values-ca/strings.xml"
14077 line="134"
14078 column="40"/>
14079 </issue>
14080
14081 <issue
14082 id="TypographyDashes"
14083 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14084 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 skladeb&lt;/string>"
14085 errorLine2=" ~~~~~~~~~~~~~">
14086 <location
14087 file="res/values-cs/strings.xml"
14088 line="134"
14089 column="40"/>
14090 </issue>
14091
14092 <issue
14093 id="TypographyDashes"
14094 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14095 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 τραγούδια&lt;/string>"
14096 errorLine2=" ~~~~~~~~~~~~~~~">
14097 <location
14098 file="res/values-el/strings.xml"
14099 line="134"
14100 column="40"/>
14101 </issue>
14102
14103 <issue
14104 id="TypographyDashes"
14105 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14106 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 songs&lt;/string>"
14107 errorLine2=" ~~~~~~~~~~~">
14108 <location
14109 file="res/values-en-rAU/strings.xml"
14110 line="134"
14111 column="40"/>
14112 </issue>
14113
14114 <issue
14115 id="TypographyDashes"
14116 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14117 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 songs&lt;/string>"
14118 errorLine2=" ~~~~~~~~~~~">
14119 <location
14120 file="res/values-en-rCA/strings.xml"
14121 line="134"
14122 column="40"/>
14123 </issue>
14124
14125 <issue
14126 id="TypographyDashes"
14127 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14128 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 songs&lt;/string>"
14129 errorLine2=" ~~~~~~~~~~~">
14130 <location
14131 file="res/values-en-rGB/strings.xml"
14132 line="134"
14133 column="40"/>
14134 </issue>
14135
14136 <issue
14137 id="TypographyDashes"
14138 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14139 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 songs&lt;/string>"
14140 errorLine2=" ~~~~~~~~~~~">
14141 <location
14142 file="res/values-en-rIN/strings.xml"
14143 line="134"
14144 column="40"/>
14145 </issue>
14146
14147 <issue
14148 id="TypographyDashes"
14149 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14150 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 laulu&lt;/string>"
14151 errorLine2=" ~~~~~~~~~~~">
14152 <location
14153 file="res/values-et/strings.xml"
14154 line="134"
14155 column="40"/>
14156 </issue>
14157
14158 <issue
14159 id="TypographyDashes"
14160 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14161 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 kappaletta&lt;/string>"
14162 errorLine2=" ~~~~~~~~~~~~~~~~">
14163 <location
14164 file="res/values-fi/strings.xml"
14165 line="134"
14166 column="40"/>
14167 </issue>
14168
14169 <issue
14170 id="TypographyDashes"
14171 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14172 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 nûmers&lt;/string>"
14173 errorLine2=" ~~~~~~~~~~~~">
14174 <location
14175 file="res/values-fy-rNL/strings.xml"
14176 line="134"
14177 column="40"/>
14178 </issue>
14179
14180 <issue
14181 id="TypographyDashes"
14182 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14183 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 cancións&lt;/string>"
14184 errorLine2=" ~~~~~~~~~~~~~~">
14185 <location
14186 file="res/values-gl/strings.xml"
14187 line="134"
14188 column="40"/>
14189 </issue>
14190
14191 <issue
14192 id="TypographyDashes"
14193 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14194 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 dal&lt;/string>"
14195 errorLine2=" ~~~~~~~~~">
14196 <location
14197 file="res/values-hu/strings.xml"
14198 line="134"
14199 column="40"/>
14200 </issue>
14201
14202 <issue
14203 id="TypographyDashes"
14204 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14205 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 canzoni&lt;/string>"
14206 errorLine2=" ~~~~~~~~~~~~~">
14207 <location
14208 file="res/values-it/strings.xml"
14209 line="134"
14210 column="40"/>
14211 </issue>
14212
14213 <issue
14214 id="TypographyDashes"
14215 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14216 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5-9곡의 음악&lt;/string>"
14217 errorLine2=" ~~~~~~~~">
14218 <location
14219 file="res/values-ko/strings.xml"
14220 line="134"
14221 column="40"/>
14222 </issue>
14223
14224 <issue
14225 id="TypographyDashes"
14226 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14227 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 músicas&lt;/string>"
14228 errorLine2=" ~~~~~~~~~~~~~">
14229 <location
14230 file="res/values-pt-rPT/strings.xml"
14231 line="134"
14232 column="40"/>
14233 </issue>
14234
14235 <issue
14236 id="TypographyDashes"
14237 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14238 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 melodii&lt;/string>"
14239 errorLine2=" ~~~~~~~~~~~~~">
14240 <location
14241 file="res/values-ro/strings.xml"
14242 line="134"
14243 column="40"/>
14244 </issue>
14245
14246 <issue
14247 id="TypographyDashes"
14248 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14249 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 skladieb&lt;/string>"
14250 errorLine2=" ~~~~~~~~~~~~~~">
14251 <location
14252 file="res/values-sk/strings.xml"
14253 line="134"
14254 column="40"/>
14255 </issue>
14256
14257 <issue
14258 id="TypographyDashes"
14259 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14260 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 skladb&lt;/string>"
14261 errorLine2=" ~~~~~~~~~~~~">
14262 <location
14263 file="res/values-sl/strings.xml"
14264 line="134"
14265 column="40"/>
14266 </issue>
14267
14268 <issue
14269 id="TypographyDashes"
14270 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14271 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 เพลง&lt;/string>"
14272 errorLine2=" ~~~~~~~~~~">
14273 <location
14274 file="res/values-th/strings.xml"
14275 line="134"
14276 column="40"/>
14277 </issue>
14278
14279 <issue
14280 id="TypographyDashes"
14281 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14282 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 şarkı&lt;/string>"
14283 errorLine2=" ~~~~~~~~~~~">
14284 <location
14285 file="res/values-tr/strings.xml"
14286 line="134"
14287 column="40"/>
14288 </issue>
14289
14290 <issue
14291 id="TypographyDashes"
14292 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14293 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5-9 首歌曲&lt;/string>"
14294 errorLine2=" ~~~~~~~">
14295 <location
14296 file="res/values-zh-rCN/strings.xml"
14297 line="134"
14298 column="40"/>
14299 </issue>
14300
14301 <issue
14302 id="TypographyDashes"
14303 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14304 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 首樂曲&lt;/string>"
14305 errorLine2=" ~~~~~~~~~">
14306 <location
14307 file="res/values-zh-rTW/strings.xml"
14308 line="134"
14309 column="40"/>
14310 </issue>
14311
14312 <issue
14313 id="TypographyDashes"
14314 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14315 errorLine1=" &lt;string name=&quot;header_30_to_60_seconds&quot;>30 - 60 seconds&lt;/string>"
14316 errorLine2=" ~~~~~~~~~~~~~~~">
14317 <location
14318 file="res/values/strings.xml"
14319 line="153"
14320 column="44"/>
14321 </issue>
14322
14323 <issue
14324 id="TypographyDashes"
14325 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14326 errorLine1=" &lt;string name=&quot;header_1_to_2_minutes&quot;>1 - 2 minutes&lt;/string>"
14327 errorLine2=" ~~~~~~~~~~~~~">
14328 <location
14329 file="res/values/strings.xml"
14330 line="154"
14331 column="42"/>
14332 </issue>
14333
14334 <issue
14335 id="TypographyDashes"
14336 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14337 errorLine1=" &lt;string name=&quot;header_2_to_3_minutes&quot;>2 - 3 minutes&lt;/string>"
14338 errorLine2=" ~~~~~~~~~~~~~">
14339 <location
14340 file="res/values/strings.xml"
14341 line="155"
14342 column="42"/>
14343 </issue>
14344
14345 <issue
14346 id="TypographyDashes"
14347 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14348 errorLine1=" &lt;string name=&quot;header_3_to_4_minutes&quot;>3 - 4 minutes&lt;/string>"
14349 errorLine2=" ~~~~~~~~~~~~~">
14350 <location
14351 file="res/values/strings.xml"
14352 line="156"
14353 column="42"/>
14354 </issue>
14355
14356 <issue
14357 id="TypographyDashes"
14358 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14359 errorLine1=" &lt;string name=&quot;header_4_to_5_minutes&quot;>4 - 5 minutes&lt;/string>"
14360 errorLine2=" ~~~~~~~~~~~~~">
14361 <location
14362 file="res/values/strings.xml"
14363 line="157"
14364 column="42"/>
14365 </issue>
14366
14367 <issue
14368 id="TypographyDashes"
14369 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14370 errorLine1=" &lt;string name=&quot;header_5_to_10_minutes&quot;>5 - 10 minutes&lt;/string>"
14371 errorLine2=" ~~~~~~~~~~~~~~">
14372 <location
14373 file="res/values/strings.xml"
14374 line="158"
14375 column="43"/>
14376 </issue>
14377
14378 <issue
14379 id="TypographyDashes"
14380 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14381 errorLine1=" &lt;string name=&quot;header_10_to_30_minutes&quot;>10 - 30 minutes&lt;/string>"
14382 errorLine2=" ~~~~~~~~~~~~~~~">
14383 <location
14384 file="res/values/strings.xml"
14385 line="159"
14386 column="44"/>
14387 </issue>
14388
14389 <issue
14390 id="TypographyDashes"
14391 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14392 errorLine1=" &lt;string name=&quot;header_30_to_60_minutes&quot;>30 - 60 minutes&lt;/string>"
14393 errorLine2=" ~~~~~~~~~~~~~~~">
14394 <location
14395 file="res/values/strings.xml"
14396 line="160"
14397 column="44"/>
14398 </issue>
14399
14400 <issue
14401 id="TypographyDashes"
14402 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14403 errorLine1=" &lt;string name=&quot;header_2_to_4_songs&quot;>2 - 4 songs&lt;/string>"
14404 errorLine2=" ~~~~~~~~~~~">
14405 <location
14406 file="res/values/strings.xml"
14407 line="164"
14408 column="40"/>
14409 </issue>
14410
14411 <issue
14412 id="TypographyDashes"
14413 message="Replace &quot;-&quot; with an &quot;en dash&quot; character (–, &amp;#8211;) ?"
14414 errorLine1=" &lt;string name=&quot;header_5_to_9_songs&quot;>5 - 9 songs&lt;/string>"
14415 errorLine2=" ~~~~~~~~~~~">
14416 <location
14417 file="res/values/strings.xml"
14418 line="165"
14419 column="40"/>
14420 </issue>
14421
14422 <issue
14423 id="TypographyQuotes"
14424 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14425 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Til að bæta lögum á þennan spilunarlista, ýttu þá á valmyndina á lagi, hljómplötu eða flytjanda og veldu \&quot;Bæta á spilunarlista\&quot;.&lt;/string>"
14426 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14427 <location
14428 file="res/values-is/strings.xml"
14429 line="27"
14430 column="45"/>
14431 </issue>
14432
14433 <issue
14434 id="TypographyQuotes"
14435 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14436 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Til að bæta lögum í spilunarbiðröðina þína, ýttu þá á valmyndina á lagi, hljómplötu eða flytjanda og veldu \&quot;Bæta í biðröð\&quot;.&lt;/string>"
14437 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14438 <location
14439 file="res/values-is/strings.xml"
14440 line="28"
14441 column="42"/>
14442 </issue>
14443
14444 <issue
14445 id="TypographyQuotes"
14446 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14447 errorLine1=" &lt;string name=&quot;menu_shuffle_recent&quot;>\&quot;VIru kuerzem ofgespillt\&quot; mëschen&lt;/string>"
14448 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14449 <location
14450 file="res/values-lb/strings.xml"
14451 line="35"
14452 column="40"/>
14453 </issue>
14454
14455 <issue
14456 id="TypographyQuotes"
14457 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14458 errorLine1=" &lt;string name=&quot;menu_shuffle_last_added&quot;>\&quot;Fir d\&apos;lescht dobäigesat\&quot; mëschen&lt;/string>"
14459 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14460 <location
14461 file="res/values-lb/strings.xml"
14462 line="36"
14463 column="44"/>
14464 </issue>
14465
14466 <issue
14467 id="TypographyQuotes"
14468 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14469 errorLine1=" &lt;string name=&quot;clear_recent_title&quot;>לנקות רשימת \&quot;הושמעו לאחרונה\&quot;?&lt;/string>"
14470 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14471 <location
14472 file="res/values-iw/strings.xml"
14473 line="66"
14474 column="39"/>
14475 </issue>
14476
14477 <issue
14478 id="TypographyQuotes"
14479 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14480 errorLine1=" &lt;string name=&quot;clear_last_added&quot;>לנקות רשימת \&quot;נוספו לאחרונה\&quot;?&lt;/string>"
14481 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14482 <location
14483 file="res/values-iw/strings.xml"
14484 line="67"
14485 column="37"/>
14486 </issue>
14487
14488 <issue
14489 id="TypographyQuotes"
14490 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14491 errorLine1=" &lt;string name=&quot;clear_last_added&quot;>\&quot;Fir d\&apos;lescht dobäigesat\&quot; eidel maachen?&lt;/string>"
14492 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14493 <location
14494 file="res/values-lb/strings.xml"
14495 line="67"
14496 column="37"/>
14497 </issue>
14498
14499 <issue
14500 id="TypographyQuotes"
14501 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14502 errorLine1=" &lt;string name=&quot;context_menu_remove_from_recent&quot;>Aus \&quot;Kürzlich gehört\&quot; entfernen&lt;/string>"
14503 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14504 <location
14505 file="res/values-de/strings.xml"
14506 line="80"
14507 column="52"/>
14508 </issue>
14509
14510 <issue
14511 id="TypographyQuotes"
14512 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14513 errorLine1=" &lt;string name=&quot;context_menu_remove_from_recent&quot;>Aus der \&quot;Viru kuerzem gelauschtert\&quot;-Lëscht läschen&lt;/string>"
14514 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14515 <location
14516 file="res/values-lb/strings.xml"
14517 line="80"
14518 column="52"/>
14519 </issue>
14520
14521 <issue
14522 id="TypographyQuotes"
14523 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14524 errorLine1=" &lt;string name=&quot;settings_show_lyrics_summary&quot;>Fir Lidder déi en \&quot;srt\&quot;-Fichier hunn&lt;/string>"
14525 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14526 <location
14527 file="res/values-lb/strings.xml"
14528 line="100"
14529 column="49"/>
14530 </issue>
14531
14532 <issue
14533 id="TypographyQuotes"
14534 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14535 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Lai šim atskaņošanas sarakstam pievienotu dziesmas, piesitiet dziesmas, albuma vai izpildītāja izvēlnei un izvēlieties \&quot;Pievienot atskaņošanas sarakstam\&quot;.&lt;/string>"
14536 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14537 <location
14538 file="res/values-lv/strings.xml"
14539 line="106"
14540 column="45"/>
14541 </issue>
14542
14543 <issue
14544 id="TypographyQuotes"
14545 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14546 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>ಪ್ಲೇಪಟ್ಟಿಗೆ ಹಾಡುಗಳನ್ನು ಸೇರಿಸಲು, ಕಲಾವಿದ, ಆಲ್ಬಂ ಅಥವ ಹಾಡಿನ ಮೇಲಿರುವ ಆಯ್ಕೆಗಳ ಮೆನು ಸ್ಪರ್ಶಿಸಿ ಹಾಗು \&quot;ಪ್ಲೇಪಟ್ಟಿಗೆ ಸೇರಿಸಿ\&quot; ಆಯ್ಕೆಮಾಡಿ.&lt;/string>"
14547 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14548 <location
14549 file="res/values-kn/strings.xml"
14550 line="109"
14551 column="45"/>
14552 </issue>
14553
14554 <issue
14555 id="TypographyQuotes"
14556 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14557 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Om Liedjies by te voeg tot hierdie speel lys, raak die opsies kieslys op \&apos;n liedjie, album of kunstenaar en kies \&quot;Voeg by speellys\&quot;.&lt;/string>"
14558 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14559 <location
14560 file="res/values-af/strings.xml"
14561 line="110"
14562 column="45"/>
14563 </issue>
14564
14565 <issue
14566 id="TypographyQuotes"
14567 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14568 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>এই প্লে-সূচীলৈ গীত যোগ কৰিবলৈ, এটা গীত, এলবাম বা শিল্পীৰ ওপৰত বিকল্প মেনু টেপ কৰক আৰু \&quot;Add to playlist\&quot; চয়ন কৰক।&lt;/string>"
14569 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14570 <location
14571 file="res/values-as/strings.xml"
14572 line="110"
14573 column="45"/>
14574 </issue>
14575
14576 <issue
14577 id="TypographyQuotes"
14578 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14579 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Каб дадаць трэкі ў плэйліст, націсніце на меню опцый трэка, альбома ці выканаўца і выберыце \&quot;Дадаць у плэйліст\&quot;.&lt;/string>"
14580 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14581 <location
14582 file="res/values-be/strings.xml"
14583 line="110"
14584 column="45"/>
14585 </issue>
14586
14587 <issue
14588 id="TypographyQuotes"
14589 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14590 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Tryk på valgmulighedsmenuen på en sang, et album, eller en kunstner, og vælg \&quot;Føj til afspilningsliste\&quot;, for at føje sange til denne afspilningsliste.&lt;/string>"
14591 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14592 <location
14593 file="res/values-da/strings.xml"
14594 line="110"
14595 column="45"/>
14596 </issue>
14597
14598 <issue
14599 id="TypographyQuotes"
14600 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14601 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Abestiak erreprodukzio-zerrendara gehitzeko, sakatu abesti, album edo artista baten aukeren menuan eta hautatu \&quot;Gehitu erreprodukzio-zerrendara\&quot;.&lt;/string>"
14602 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14603 <location
14604 file="res/values-eu/strings.xml"
14605 line="110"
14606 column="45"/>
14607 </issue>
14608
14609 <issue
14610 id="TypographyQuotes"
14611 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14612 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>આ પ્લેલિસ્ટમાં ગીતો ઉમેરવા, ગીત, આલ્બમ અથવા આર્ટિસ્ટ પરના વિકલ્પ મેન્યૂ પર ટૅપ કરો અને \&quot;પ્લેલિસ્ટમાં ઍડ કરો\&quot; પસંદ કરો.&lt;/string>"
14613 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14614 <location
14615 file="res/values-gu/strings.xml"
14616 line="110"
14617 column="45"/>
14618 </issue>
14619
14620 <issue
14621 id="TypographyQuotes"
14622 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14623 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>इस प्लेसूची में गाने जोड़ेने के लिए, गाने, एल्बम या कलाकार के विकल्प मेनू को टैप करें और \&quot;प्लेसूची में जोड़ें\&quot; को चुनें।&lt;/string>"
14624 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14625 <location
14626 file="res/values-hi/strings.xml"
14627 line="110"
14628 column="45"/>
14629 </issue>
14630
14631 <issue
14632 id="TypographyQuotes"
14633 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14634 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Za dodavanje pjesme u playlistu dodirnite opcije pjesme,albuma ili autora i odaberite \&quot;Dodaj u playlistu\&quot;&lt;/string>"
14635 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14636 <location
14637 file="res/values-hr/strings.xml"
14638 line="110"
14639 column="45"/>
14640 </issue>
14641
14642 <issue
14643 id="TypographyQuotes"
14644 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14645 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Untuk menambahkan lagu ke daftar putar ini, tekan menu pilihan pada lagu, album atau artis dan pilih \&quot;Tambahkan ke daftar putar\&quot;.&lt;/string>"
14646 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14647 <location
14648 file="res/values-in/strings.xml"
14649 line="110"
14650 column="45"/>
14651 </issue>
14652
14653 <issue
14654 id="TypographyQuotes"
14655 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14656 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>כדי להוסיף שירים לרשימת ההשמעה הזו, הקש על תפריט האפשרויות של שיר, אלבום או אמן ובחר \&quot;הוסף לרשימת השמעה\&quot;.&lt;/string>"
14657 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14658 <location
14659 file="res/values-iw/strings.xml"
14660 line="110"
14661 column="45"/>
14662 </issue>
14663
14664 <issue
14665 id="TypographyQuotes"
14666 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14667 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Fir Lidder an dës Ofspilllëscht ze setzen, dréck den Optiounsmenü op engem Lidd, Album oder Interpret, a wiel \&quot;An d\&apos;Ofspilllëscht setzen\&quot; aus.&lt;/string>"
14668 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14669 <location
14670 file="res/values-lb/strings.xml"
14671 line="110"
14672 column="45"/>
14673 </issue>
14674
14675 <issue
14676 id="TypographyQuotes"
14677 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14678 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>ഈ പ്ലേ ലിസ്റ്റിലേക്ക് ഗാനങ്ങള്‍ ചേര്‍ക്കാന്‍, ഒരു ഗാനം, ആൽബം അല്ലെങ്കിൽ ആർട്ടിസ്റ്റിന്റെ ഐച്ഛികങ്ങള്‍ മെനുവില്‍ അമര്‍ത്തി \&quot;പ്ലേ ലിസ്റ്റില്‍ ചേര്‍ക്കുക\&quot; തിരഞ്ഞെടുക്കുക.&lt;/string>"
14679 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14680 <location
14681 file="res/values-ml/strings.xml"
14682 line="110"
14683 column="45"/>
14684 </issue>
14685
14686 <issue
14687 id="TypographyQuotes"
14688 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14689 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>प्लेलिस्टमध्ये गाणी जोडण्यासाठी, गाणे, अल्बम किंवा कलाकारावरील पर्याय मेनू टॅप करा आणि \&quot;प्लेलिस्टमध्ये जोडा\&quot; निवडा.&lt;/string>"
14690 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14691 <location
14692 file="res/values-mr/strings.xml"
14693 line="110"
14694 column="45"/>
14695 </issue>
14696
14697 <issue
14698 id="TypographyQuotes"
14699 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14700 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>For å legge til sanger i denne spillelisten, trykk på Alternativer-menyen på en sang, et album eller en artist og velg \&quot;Legg til i spilleliste\&quot;.&lt;/string>"
14701 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14702 <location
14703 file="res/values-nb/strings.xml"
14704 line="110"
14705 column="45"/>
14706 </issue>
14707
14708 <issue
14709 id="TypographyQuotes"
14710 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14711 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>ଏହି ଚାଳନତାଲିକାରେ ଗୀତ ଯୋଗ କରିବା ପାଇଁ, ଗୀତ, ଆଲ୍‍ବମ୍‍ ବା କଳାକାରରେ ଥିବା ବିକଳ୍ପ ମେନ୍ୟୁରେ ଟ୍ୟାପ୍‍ କରନ୍ତୁ ଓ \&quot;ଚାଳନତାଲିକାରେ ଯୋଗ କରନ୍ତୁ\&quot;ରେ ଚୟନ କରନ୍ତୁ।&lt;/string>"
14712 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14713 <location
14714 file="res/values-or/strings.xml"
14715 line="110"
14716 column="45"/>
14717 </issue>
14718
14719 <issue
14720 id="TypographyQuotes"
14721 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14722 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Aby dodawać utwory do playlisty, użyj przycisku opcji na utworze, albumie lub artyście i wybierz \&quot;Dodaj do playlisty\&quot;.&lt;/string>"
14723 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14724 <location
14725 file="res/values-pl/strings.xml"
14726 line="110"
14727 column="45"/>
14728 </issue>
14729
14730 <issue
14731 id="TypographyQuotes"
14732 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14733 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Да додаш песме у ову плејлисту, додирни опциони мени песме, албума или уметника и одабери \&quot;Додај у плејлисту\&quot;.&lt;/string>"
14734 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14735 <location
14736 file="res/values-sr/strings.xml"
14737 line="110"
14738 column="45"/>
14739 </issue>
14740
14741 <issue
14742 id="TypographyQuotes"
14743 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14744 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>För att lägga till sånger till denna spellista, tryck på alternativmenyn på en låt, album eller artist och välj \&quot;Lägg till i spellista\&quot;.&lt;/string>"
14745 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14746 <location
14747 file="res/values-sv/strings.xml"
14748 line="110"
14749 column="45"/>
14750 </issue>
14751
14752 <issue
14753 id="TypographyQuotes"
14754 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14755 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>இந்த இசைப்பட்டியலில் பாடல்களை சேர்க்க, ஒரு பாடல், ஆல்பம் அல்லது கலைஞரில் உள்ள விருப்பங்கள் மெனுவை தட்டி \&quot;இசைப்பட்டியலில் சேர்\&quot;ஐ தேர்வுசெய்&lt;/string>"
14756 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14757 <location
14758 file="res/values-ta/strings.xml"
14759 line="110"
14760 column="45"/>
14761 </issue>
14762
14763 <issue
14764 id="TypographyQuotes"
14765 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14766 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>ప్లేజాబితాకు పాటలను జోడించడానికి, పాట, ఆల్బమ్ లేదా కళాకారుడు పైన ఉన్నఆప్షనుల మెనూను ట్యాప్ చేయండి మరియు \&quot;ప్లేజాబితాకు జోడించుము\&quot; ఎంచుకోండి.&lt;/string>"
14767 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14768 <location
14769 file="res/values-te/strings.xml"
14770 line="110"
14771 column="45"/>
14772 </issue>
14773
14774 <issue
14775 id="TypographyQuotes"
14776 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14777 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>تىزىملىككە ناخشا قوشۇش ئۈچۈن، تىزىملىكتىكى ناخشا، پىلاستنكا ياكى ئارتىسنى تاللاڭ، ھەمدە \&quot;تىزىملىككە ناخشا قوشۇش\&quot;نى تاللاڭ.&lt;/string>"
14778 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14779 <location
14780 file="res/values-ug/strings.xml"
14781 line="110"
14782 column="45"/>
14783 </issue>
14784
14785 <issue
14786 id="TypographyQuotes"
14787 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14788 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Щоб додати пісню у цей список відтворення, торкніться меню параметрів на композиції, альбому або виконавця та виберіть \&quot;Додати до списку відтворення\&quot;.&lt;/string>"
14789 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14790 <location
14791 file="res/values-uk/strings.xml"
14792 line="110"
14793 column="45"/>
14794 </issue>
14795
14796 <issue
14797 id="TypographyQuotes"
14798 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14799 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Để thêm bài hát vào danh sách phát này, chạm menu tuỳ chọn của bài hát, album hoặc nghệ sĩ và chọn \&quot;Thêm vào danh sách phát\&quot;.&lt;/string>"
14800 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14801 <location
14802 file="res/values-vi/strings.xml"
14803 line="110"
14804 column="45"/>
14805 </issue>
14806
14807 <issue
14808 id="TypographyQuotes"
14809 message="Replace straight quotes (&apos;&apos;) with directional quotes (‘’, &amp;#8216; and &amp;#8217;) ?"
14810 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Om nummers toe te voegen aan deze afspeellijst, tik op het menu van een nummer, album of artiest en selecteer \&apos;Toevoegen aan afspeellijst\&apos;.&lt;/string>"
14811 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14812 <location
14813 file="res/values-nl/strings.xml"
14814 line="110"
14815 column="45"/>
14816 </issue>
14817
14818 <issue
14819 id="TypographyQuotes"
14820 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14821 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>لإضافة الأغاني إلى قائمة التشغيل هذه، انقر فوق قائمة خيارات أي أغنية أو ألبوم أو الفنان وحدد \&quot;إضافة إلى قائمة التشغيل\&quot;.&lt;/string>"
14822 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14823 <location
14824 file="res/values-ar/strings.xml"
14825 line="111"
14826 column="45"/>
14827 </issue>
14828
14829 <issue
14830 id="TypographyQuotes"
14831 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14832 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Bu oynatma siyahısına mahnı əlavə etmək üçün seçimlərdən \&quot;Oynatma siyahısına əlavə et\&quot;ə toxunun.&lt;/string>"
14833 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14834 <location
14835 file="res/values-az/strings.xml"
14836 line="111"
14837 column="45"/>
14838 </issue>
14839
14840 <issue
14841 id="TypographyQuotes"
14842 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14843 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>За да добавите песни към този списък за изпълнение, натиснете менюто опции по песен, албум или изпълнител и изберете \&quot;Добави към списъка за изпълнение\&quot;.&lt;/string>"
14844 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14845 <location
14846 file="res/values-bg/strings.xml"
14847 line="111"
14848 column="45"/>
14849 </issue>
14850
14851 <issue
14852 id="TypographyQuotes"
14853 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14854 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Per afegir cançons a aquesta llista de reproducció, prem al menú opcions en una cançó, àlbum o artista i selecciona \&quot;Afegeix a la llista de reproducció\&quot;.&lt;/string>"
14855 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14856 <location
14857 file="res/values-ca/strings.xml"
14858 line="111"
14859 column="45"/>
14860 </issue>
14861
14862 <issue
14863 id="TypographyQuotes"
14864 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14865 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>I ychwanegu traciau at y rhestr chwarae hon, tapia dewislen opsiynau trac, casgliad neu artist a dewis \&quot;Ychwanegu i\&apos;r rhestr chwarae\&quot;.&lt;/string>"
14866 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14867 <location
14868 file="res/values-cy/strings.xml"
14869 line="111"
14870 column="45"/>
14871 </issue>
14872
14873 <issue
14874 id="TypographyQuotes"
14875 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14876 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Tippen Sie im Optionsmenü auf einen Titel, Künstler oder ein Album und wählen Sie \&quot;Zur Wiedergabeliste hinzufügen\&quot;, um den jeweiligen Eintrag zu dieser Liste hinzuzufügen.&lt;/string>"
14877 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14878 <location
14879 file="res/values-de/strings.xml"
14880 line="111"
14881 column="45"/>
14882 </issue>
14883
14884 <issue
14885 id="TypographyQuotes"
14886 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14887 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Για να προσθέσετε τραγούδια σε αυτήν τη λίστα αναπαραγωγής, ανοίξτε το μενού επιλογών σε ένα τραγούδι, άλμπουμ ή καλλιτέχνη και επιλέξτε \&quot;Προσθήκη στη λίστα αναπαραγωγής\&quot;.&lt;/string>"
14888 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14889 <location
14890 file="res/values-el/strings.xml"
14891 line="111"
14892 column="45"/>
14893 </issue>
14894
14895 <issue
14896 id="TypographyQuotes"
14897 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14898 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>To add songs to this playlist, tap the options menu on a song, album or artist and select \&quot;Add to playlist\&quot;.&lt;/string>"
14899 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14900 <location
14901 file="res/values-en-rAU/strings.xml"
14902 line="111"
14903 column="45"/>
14904 </issue>
14905
14906 <issue
14907 id="TypographyQuotes"
14908 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14909 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>To add songs to this playlist, tap the options menu on a song, album or artist and select \&quot;Add to playlist\&quot;.&lt;/string>"
14910 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14911 <location
14912 file="res/values-en-rCA/strings.xml"
14913 line="111"
14914 column="45"/>
14915 </issue>
14916
14917 <issue
14918 id="TypographyQuotes"
14919 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14920 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>To add songs to this playlist, tap the options menu on a song, album or artist and select \&quot;Add to playlist\&quot;.&lt;/string>"
14921 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14922 <location
14923 file="res/values-en-rGB/strings.xml"
14924 line="111"
14925 column="45"/>
14926 </issue>
14927
14928 <issue
14929 id="TypographyQuotes"
14930 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14931 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>To add songs to this playlist, tap the options menu on a song, album or artist and select \&quot;Add to playlist\&quot;.&lt;/string>"
14932 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14933 <location
14934 file="res/values-en-rIN/strings.xml"
14935 line="111"
14936 column="45"/>
14937 </issue>
14938
14939 <issue
14940 id="TypographyQuotes"
14941 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14942 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Lugude lisamiseks käesolevasse esitlusnimekirja, koputa laulu, albumi või artisti lisavalikute menüül ja vali \&quot;Lisa esitlusloendisse\&quot;.&lt;/string>"
14943 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14944 <location
14945 file="res/values-et/strings.xml"
14946 line="111"
14947 column="45"/>
14948 </issue>
14949
14950 <issue
14951 id="TypographyQuotes"
14952 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14953 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Lisätäksesi kappaleita soittolistaan, avaa valikko kappaleen, albumin tai esittäjän kohdalla ja valitse \&quot;Lisää soittolistaan\&quot;.&lt;/string>"
14954 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14955 <location
14956 file="res/values-fi/strings.xml"
14957 line="111"
14958 column="45"/>
14959 </issue>
14960
14961 <issue
14962 id="TypographyQuotes"
14963 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14964 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Zeneszámok hozzáadása a lejátszási listához, koppintson a beállítások menü, dal, album vagy előadó lehetőségre, és válassza a \&quot;Hozzáadás a lejátszási listához\&quot; lehetőséget.&lt;/string>"
14965 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14966 <location
14967 file="res/values-hu/strings.xml"
14968 line="111"
14969 column="45"/>
14970 </issue>
14971
14972 <issue
14973 id="TypographyQuotes"
14974 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14975 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Per aggiungere canzoni a questa playlist tocca il menu opzioni su una canzone, album o artista e seleziona \&quot;Aggiungi alla playlist\&quot;.&lt;/string>"
14976 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14977 <location
14978 file="res/values-it/strings.xml"
14979 line="111"
14980 column="45"/>
14981 </issue>
14982
14983 <issue
14984 id="TypographyQuotes"
14985 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14986 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>재생목록에 음악를 추가하려면 음악, 앨범, 또는 아티스트의 옵션 메뉴를 탭하여 연 뒤 \&quot;재생목록에 추가\&quot;를 선택하십시오.&lt;/string>"
14987 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14988 <location
14989 file="res/values-ko/strings.xml"
14990 line="111"
14991 column="45"/>
14992 </issue>
14993
14994 <issue
14995 id="TypographyQuotes"
14996 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
14997 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Para adicionar músicas a esta lista de reprodução, toque no menu de opções de uma música, álbum ou artista e selecione \&quot;Adicionar à lista de reprodução\&quot;.&lt;/string>"
14998 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
14999 <location
15000 file="res/values-pt-rBR/strings.xml"
15001 line="111"
15002 column="45"/>
15003 </issue>
15004
15005 <issue
15006 id="TypographyQuotes"
15007 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15008 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Para adicionar músicas a esta lista de reprodução, toque no menu de opções numa música, álbum ou artista e selecione \&quot;Adicionar à lista de reprodução\&quot;.&lt;/string>"
15009 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15010 <location
15011 file="res/values-pt-rPT/strings.xml"
15012 line="111"
15013 column="45"/>
15014 </issue>
15015
15016 <issue
15017 id="TypographyQuotes"
15018 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15019 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Pentru a adăuga melodii la această listă de redare, atingeți meniul de opțiuni pe un cântec, album sau artist și selectați \&quot;Adăugați la lista de redare\&quot;.&lt;/string>"
15020 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15021 <location
15022 file="res/values-ro/strings.xml"
15023 line="111"
15024 column="45"/>
15025 </issue>
15026
15027 <issue
15028 id="TypographyQuotes"
15029 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15030 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Pre pridanie skladieb do zoznamu skladieb kliknite na ponuku s možnosťami na skladbe, albume alebo interpretovi a vyberte \&quot;Pridať do zoznamu skladieb\&quot;.&lt;/string>"
15031 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15032 <location
15033 file="res/values-sk/strings.xml"
15034 line="111"
15035 column="45"/>
15036 </issue>
15037
15038 <issue
15039 id="TypographyQuotes"
15040 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15041 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>ในการเพิ่มเพลงไปยังรายการที่จะเล่น ให้แตะเมนูตัวเลือกบนเพลง อัลบั้มหรือศิลปินแล้วเลือก \&quot;เพิ่มไปยังรายการเพลง\&quot;&lt;/string>"
15042 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15043 <location
15044 file="res/values-th/strings.xml"
15045 line="111"
15046 column="45"/>
15047 </issue>
15048
15049 <issue
15050 id="TypographyQuotes"
15051 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15052 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>Bu çalma listesine şarkı eklemek için, seçeneklerden \&quot;Çalma listesine ekle\&quot;yi tıklayın.&lt;/string>"
15053 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15054 <location
15055 file="res/values-tr/strings.xml"
15056 line="111"
15057 column="45"/>
15058 </issue>
15059
15060 <issue
15061 id="TypographyQuotes"
15062 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15063 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Lai pievienotu dziesmas atskaņošanas rindai, piesitiet dziesmas, albuma vai izpildītāja izvēlnei un izvēlieties \&quot;Pievienot rindai\&quot;.&lt;/string>"
15064 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15065 <location
15066 file="res/values-lv/strings.xml"
15067 line="114"
15068 column="42"/>
15069 </issue>
15070
15071 <issue
15072 id="TypographyQuotes"
15073 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15074 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>ಪ್ಲೇ ಸರದಿಗೆ ಹಾಡುಗಳನ್ನು ಸೇರಿಸಲು, ಕಲಾವಿದ, ಆಲ್ಬಂ ಅಥವ ಹಾಡಿನ ಮೇಲಿರುವ ಆಯ್ಕೆಗಳ ಮೆನು ಸ್ಪರ್ಶಿಸಿ ಹಾಗು \&quot;ಸರದಿಗೆ ಸೇರಿಸಿ\&quot; ಆಯ್ಕೆಮಾಡಿ.&lt;/string>"
15075 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15076 <location
15077 file="res/values-kn/strings.xml"
15078 line="117"
15079 column="42"/>
15080 </issue>
15081
15082 <issue
15083 id="TypographyQuotes"
15084 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15085 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Om Liedjies by te voeg tot jou speel waglys, raak die opsies kieslys op \&apos;n liedjie, album of kunstenaar en kies \&quot;Voeg by waglys\&quot;.&lt;/string>"
15086 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15087 <location
15088 file="res/values-af/strings.xml"
15089 line="118"
15090 column="42"/>
15091 </issue>
15092
15093 <issue
15094 id="TypographyQuotes"
15095 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15096 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>আপোনাৰ এই প্লে কিউলৈ গীত যোগ কৰিবলৈ, এটা গীত, এলবাম বা শিল্পীৰ ওপৰত বিকল্প মেনু টেপ কৰক আৰু \&quot;Add to queue\&quot; চয়ন কৰক।&lt;/string>"
15097 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15098 <location
15099 file="res/values-as/strings.xml"
15100 line="118"
15101 column="42"/>
15102 </issue>
15103
15104 <issue
15105 id="TypographyQuotes"
15106 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15107 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Каб дадаць трэкі ў чаргу прайгравання, націсніце на меню опцый трэка, альбома ці выканаўца і выберыце \&quot;Дадаць у чаргу\&quot;.&lt;/string>"
15108 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15109 <location
15110 file="res/values-be/strings.xml"
15111 line="118"
15112 column="42"/>
15113 </issue>
15114
15115 <issue
15116 id="TypographyQuotes"
15117 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15118 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Tryk på valgmulighedsmenuen, på en sang, et album, eller en kunstner, og vælg \&quot;Føj til kø\&quot;, for at føje sange til din Afspilningskø.&lt;/string>"
15119 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15120 <location
15121 file="res/values-da/strings.xml"
15122 line="118"
15123 column="42"/>
15124 </issue>
15125
15126 <issue
15127 id="TypographyQuotes"
15128 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15129 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Abestiak erreprodukzio-zerrendara gehitzeko, sakatu abesti, album edo artista bat eta hautatu \&quot;Gehitu ilarara\&quot;.&lt;/string>"
15130 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15131 <location
15132 file="res/values-eu/strings.xml"
15133 line="118"
15134 column="42"/>
15135 </issue>
15136
15137 <issue
15138 id="TypographyQuotes"
15139 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15140 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>તમારી પ્લે હરોળમાં ગીતો ઉમેરવા, ગીત, આલ્બમ અથવા આર્ટિસ્ટ પરના વિકલ્પ મેન્યૂ પર ટૅપ કરો અને \&quot;હરોળમાં ઍડ કરો\&quot; પસંદ કરો.&lt;/string>"
15141 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15142 <location
15143 file="res/values-gu/strings.xml"
15144 line="118"
15145 column="42"/>
15146 </issue>
15147
15148 <issue
15149 id="TypographyQuotes"
15150 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15151 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>अपनी प्ले कतार में गाने जोड़ने के लिए, किसी गाने, एल्बम, या कलाकार के विकल्प मेनू को टैप करें और \&quot;कतार में जोड़ें\&quot; को चुनें।&lt;/string>"
15152 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15153 <location
15154 file="res/values-hi/strings.xml"
15155 line="118"
15156 column="42"/>
15157 </issue>
15158
15159 <issue
15160 id="TypographyQuotes"
15161 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15162 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Za dodavanje pjesmi u red za reprodukciju, dodirnite opcije pjesme,albuma ili autora i odaberite \&quot;Dodaj u red\&quot;&lt;/string>"
15163 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15164 <location
15165 file="res/values-hr/strings.xml"
15166 line="118"
15167 column="42"/>
15168 </issue>
15169
15170 <issue
15171 id="TypographyQuotes"
15172 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15173 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Untuk menambahkan lagu ke Antrean Putar Anda, tekan menu pilihan pada lagu, album, atau artis dan pilih \&quot;Tambahkan ke antrean\&quot;.&lt;/string>"
15174 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15175 <location
15176 file="res/values-in/strings.xml"
15177 line="118"
15178 column="42"/>
15179 </issue>
15180
15181 <issue
15182 id="TypographyQuotes"
15183 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15184 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>כדי להוסיף שירים לתור ההשמעה שלך, הקש על תפריט האפשרויות של שיר, אלבום או אמן ובחר \&quot;הוסף לתור\&quot;.&lt;/string>"
15185 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15186 <location
15187 file="res/values-iw/strings.xml"
15188 line="118"
15189 column="42"/>
15190 </issue>
15191
15192 <issue
15193 id="TypographyQuotes"
15194 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15195 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Fir Lidder an d\&apos;Waardeschlaang ze setzen, dréck den Optiounsmenü bei engem Lidd, Album oder Interpret, a wiel \&quot;An d\&apos;Waardeschlaang setzen\&quot; aus.&lt;/string>"
15196 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15197 <location
15198 file="res/values-lb/strings.xml"
15199 line="118"
15200 column="42"/>
15201 </issue>
15202
15203 <issue
15204 id="TypographyQuotes"
15205 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15206 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>ഈ പ്ലേ ക്യൂവില്‍ ഗാനങ്ങള്‍ ചേർക്കാൻ, ഒരു ഗാനം, ആൽബം അല്ലെങ്കിൽ ആർട്ടിസ്റ്റിന്റെ ഐച്ഛികങ്ങള്‍ മെനുവില്‍ അമര്‍ത്തി &quot;ക്യൂവില്‍ ചേര്‍ക്കുക\&quot; തിരഞ്ഞെടുക്കുക.&lt;/string>"
15207 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15208 <location
15209 file="res/values-ml/strings.xml"
15210 line="118"
15211 column="42"/>
15212 </issue>
15213
15214 <issue
15215 id="TypographyQuotes"
15216 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15217 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>प्ले रांगेमध्ये गाणी जोडण्यासाठी, गाणे, अल्बम किंवा कलाकारावरील पर्याय मेनू टॅप करा आणि \&quot;प्ले रांगेमध्ये जोडा\&quot; निवडा.&lt;/string>"
15218 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15219 <location
15220 file="res/values-mr/strings.xml"
15221 line="118"
15222 column="42"/>
15223 </issue>
15224
15225 <issue
15226 id="TypographyQuotes"
15227 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15228 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>For å legge til sanger i spillekøen, trykk på Alternativer-menyen på en sang, et album eller en artist og velg \&quot;Legg til i kø\&quot;.&lt;/string>"
15229 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15230 <location
15231 file="res/values-nb/strings.xml"
15232 line="118"
15233 column="42"/>
15234 </issue>
15235
15236 <issue
15237 id="TypographyQuotes"
15238 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15239 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>ଏହି ପ୍ଲେତାଲିକାରେ ଗୀତ ଯୋଗ କରିବା ପାଇଁ, ଗୀତ, ଆଲ୍‍ବମ୍‍ ବା କଳାକାରରେ ଥିବା ବିକଳ୍ପ ମେନ୍ୟୁରେ ଟ୍ୟାପ୍‍ କରନ୍ତୁ ଓ \&quot;ପ୍ଲେତାଲିକାରେ ଯୋଗ କରନ୍ତୁ\&quot;ରେ ଚୟନ କରନ୍ତୁ।&lt;/string>"
15240 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15241 <location
15242 file="res/values-or/strings.xml"
15243 line="118"
15244 column="42"/>
15245 </issue>
15246
15247 <issue
15248 id="TypographyQuotes"
15249 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15250 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Aby dodać utwory do Kolejki Odtwarzania, użyj przycisku opcji na utworze, albumie lub artyście i wybierz \&quot;Dodaj do kolejki\&quot;.&lt;/string>"
15251 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15252 <location
15253 file="res/values-pl/strings.xml"
15254 line="118"
15255 column="42"/>
15256 </issue>
15257
15258 <issue
15259 id="TypographyQuotes"
15260 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15261 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Да додаш песме у редослед за пуштање, додирни опциони мени на песми, албуму или уметнику и изабери \&quot;Додај у редослед\&quot;.&lt;/string>"
15262 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15263 <location
15264 file="res/values-sr/strings.xml"
15265 line="118"
15266 column="42"/>
15267 </issue>
15268
15269 <issue
15270 id="TypographyQuotes"
15271 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15272 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>För att lägga till sånger till din spelkö, tryck på alternativmenyn på en låt, album eller artist och välj \&quot;Lägg till i spellista\&quot;.&lt;/string>"
15273 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15274 <location
15275 file="res/values-sv/strings.xml"
15276 line="118"
15277 column="42"/>
15278 </issue>
15279
15280 <issue
15281 id="TypographyQuotes"
15282 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15283 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>இந்த சாரையில் பாடல்களை சேர்க்க, ஒரு பாடல், ஆல்பம் அல்லது கலைஞரில் உள்ள விருப்பங்கள் மெனுவை தட்டி \&quot;வரிசையில் சேர்\&quot;ஐ தேர்வுசெய்.&lt;/string>"
15284 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15285 <location
15286 file="res/values-ta/strings.xml"
15287 line="118"
15288 column="42"/>
15289 </issue>
15290
15291 <issue
15292 id="TypographyQuotes"
15293 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15294 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>మీరు ప్లే నిరీక్షణ క్రమానికి పాటలను జోడించేందుకు, పాట, ఆల్బమ్ లేదా కళాకారుడు పైన ఉన్నఆప్షనుల మెనూను ట్యాప్ చేయండి మరియు \&quot;నిరీక్షణ క్రమానికి జోడించుము\&quot; ఎంచుకోండి.&lt;/string>"
15295 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15296 <location
15297 file="res/values-te/strings.xml"
15298 line="118"
15299 column="42"/>
15300 </issue>
15301
15302 <issue
15303 id="TypographyQuotes"
15304 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15305 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>قويۇش سېپىگە ناخشا قوشۇش ئۈچۈن، تىزىملىكتىكى ناخشا، پىلاستنكا ياكى ئارتىسنى تاللاڭ، ھەمدە \&quot;سەپكە ناخشا قوشۇش\&quot;نى تاللاڭ.&lt;/string>"
15306 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15307 <location
15308 file="res/values-ug/strings.xml"
15309 line="118"
15310 column="42"/>
15311 </issue>
15312
15313 <issue
15314 id="TypographyQuotes"
15315 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15316 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Để thêm bài hát vào Danh sách chờ phát, chạm menu tuỳ chọn của bài hát, album hoặc nghệ sĩ và chọn \&quot;Thêm vào danh sách chờ\&quot;.&lt;/string>"
15317 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15318 <location
15319 file="res/values-vi/strings.xml"
15320 line="118"
15321 column="42"/>
15322 </issue>
15323
15324 <issue
15325 id="TypographyQuotes"
15326 message="Replace straight quotes (&apos;&apos;) with directional quotes (‘’, &amp;#8216; and &amp;#8217;) ?"
15327 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Om nummers toe te voegen aan de wachtrij, tik op het menu van een nummer, album of artiest en selecteer \&apos;Toevoegen aan wachtrij\&apos;.&lt;/string>"
15328 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15329 <location
15330 file="res/values-nl/strings.xml"
15331 line="118"
15332 column="42"/>
15333 </issue>
15334
15335 <issue
15336 id="TypographyQuotes"
15337 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15338 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>لإضافة الأغاني إلى قائمة الانتظار، انقر فوق قائمة خيارات أي أغنية أو ألبوم أو الفنان وحدد \&quot;إضافة إلى قائمة الانتظار\&quot;.&lt;/string>"
15339 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15340 <location
15341 file="res/values-ar/strings.xml"
15342 line="119"
15343 column="42"/>
15344 </issue>
15345
15346 <issue
15347 id="TypographyQuotes"
15348 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15349 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Çalma Növbəsinə mahnı əlavə etmək üçün, seçimlərdən \&quot;Növbəyə əlavə et\&quot;i seçin.&lt;/string>"
15350 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15351 <location
15352 file="res/values-az/strings.xml"
15353 line="119"
15354 column="42"/>
15355 </issue>
15356
15357 <issue
15358 id="TypographyQuotes"
15359 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15360 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>За да добавите песни към опашката за изпълнение, натиснете менюто опции по песен, албум или изпълнител и изберете \&quot;Добави към опашката за изпълнение\&quot;.&lt;/string>"
15361 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15362 <location
15363 file="res/values-bg/strings.xml"
15364 line="119"
15365 column="42"/>
15366 </issue>
15367
15368 <issue
15369 id="TypographyQuotes"
15370 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15371 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Per afegir cançons a la cua de reproducció, pica al menú opcions en una cançó, àlbum o artista i selecciona \&quot;Afegeix a la cua\&quot;.&lt;/string>"
15372 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15373 <location
15374 file="res/values-ca/strings.xml"
15375 line="119"
15376 column="42"/>
15377 </issue>
15378
15379 <issue
15380 id="TypographyQuotes"
15381 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15382 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>I ychwanegu traciau i dy Giw Chwarae, tapia\&apos;r ddewislen dewisiadau ar drac, casgliad neu artist a dewis \&quot;Ychwanegu i\&apos;r ciw\&quot;.&lt;/string>"
15383 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15384 <location
15385 file="res/values-cy/strings.xml"
15386 line="119"
15387 column="42"/>
15388 </issue>
15389
15390 <issue
15391 id="TypographyQuotes"
15392 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15393 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Um Titel zur Warteschlange hinzuzufügen, wählen Sie im Optionsmenü eines Titels, Albums oder Interpreten \&quot;Zur Warteschlange hinzufügen\&quot;.&lt;/string>"
15394 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15395 <location
15396 file="res/values-de/strings.xml"
15397 line="119"
15398 column="42"/>
15399 </issue>
15400
15401 <issue
15402 id="TypographyQuotes"
15403 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15404 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Για να προσθέσετε τραγούδια στην ουρά αναπαραγωγής, ανοίξτε το μενού επιλογών σε ένα τραγούδι, άλμπουμ ή καλλιτέχνη και επιλέξτε \&quot;Προσθήκη στην ουρά\&quot;.&lt;/string>"
15405 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15406 <location
15407 file="res/values-el/strings.xml"
15408 line="119"
15409 column="42"/>
15410 </issue>
15411
15412 <issue
15413 id="TypographyQuotes"
15414 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15415 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>To add songs to your Play Queue, tap the options menu on a song, album, or artist and select \&quot;Add to queue\&quot;.&lt;/string>"
15416 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15417 <location
15418 file="res/values-en-rAU/strings.xml"
15419 line="119"
15420 column="42"/>
15421 </issue>
15422
15423 <issue
15424 id="TypographyQuotes"
15425 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15426 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>To add songs to your Play Queue, tap the options menu on a song, album, or artist and select \&quot;Add to queue\&quot;.&lt;/string>"
15427 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15428 <location
15429 file="res/values-en-rCA/strings.xml"
15430 line="119"
15431 column="42"/>
15432 </issue>
15433
15434 <issue
15435 id="TypographyQuotes"
15436 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15437 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>To add songs to your Play Queue, tap the options menu on a song, album, or artist and select \&quot;Add to queue\&quot;.&lt;/string>"
15438 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15439 <location
15440 file="res/values-en-rGB/strings.xml"
15441 line="119"
15442 column="42"/>
15443 </issue>
15444
15445 <issue
15446 id="TypographyQuotes"
15447 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15448 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>To add songs to your Play Queue, tap the options menu on a song, album, or artist and select \&quot;Add to queue\&quot;.&lt;/string>"
15449 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15450 <location
15451 file="res/values-en-rIN/strings.xml"
15452 line="119"
15453 column="42"/>
15454 </issue>
15455
15456 <issue
15457 id="TypographyQuotes"
15458 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15459 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Lugude lisamiseks esitlusjärjekorda, koputa laulu, albumi või artisti lisavalikute menüül ja vali \&quot;Lisa järjekorda\&quot;.&lt;/string>"
15460 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15461 <location
15462 file="res/values-et/strings.xml"
15463 line="119"
15464 column="42"/>
15465 </issue>
15466
15467 <issue
15468 id="TypographyQuotes"
15469 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15470 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Lisätäksesi kappaleita jonoon, avaa valikko kappaleen, albumin tai esittäjän kohdalla ja valitse \&quot;Lisää jonoon\&quot;.&lt;/string>"
15471 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15472 <location
15473 file="res/values-fi/strings.xml"
15474 line="119"
15475 column="42"/>
15476 </issue>
15477
15478 <issue
15479 id="TypographyQuotes"
15480 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15481 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Para engadir cancións á súa lista de espere, toque o menú de opcións dunha canción, álbum ou artista e seleccione \&quot;Engadir á lista de espera\&quot;.&lt;/string>"
15482 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15483 <location
15484 file="res/values-gl/strings.xml"
15485 line="119"
15486 column="42"/>
15487 </issue>
15488
15489 <issue
15490 id="TypographyQuotes"
15491 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15492 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Zeneszámok hozzáadása a lejátszási sorhoz, koppintson a beállítások menü, dal, album vagy előadó lehetőségre, és válassza a \&quot;Hozzáadás a lejátszólistához\&quot; opciót.&lt;/string>"
15493 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15494 <location
15495 file="res/values-hu/strings.xml"
15496 line="119"
15497 column="42"/>
15498 </issue>
15499
15500 <issue
15501 id="TypographyQuotes"
15502 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15503 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Per aggiungere canzoni alla tua coda di riproduzione, tocca il menu di opzioni su una canzone, un album o un artista e seleziona \&quot;Aggiungi alla coda\&quot;.&lt;/string>"
15504 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15505 <location
15506 file="res/values-it/strings.xml"
15507 line="119"
15508 column="42"/>
15509 </issue>
15510
15511 <issue
15512 id="TypographyQuotes"
15513 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15514 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>노래를 재생 대기열에 추가하려면 노래, 앨범, 또는 아티스트의 옵션 메뉴를 탭하여 연 뒤 \&quot;대기열에 추가\&quot;를 선택하십시오.&lt;/string>"
15515 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15516 <location
15517 file="res/values-ko/strings.xml"
15518 line="119"
15519 column="42"/>
15520 </issue>
15521
15522 <issue
15523 id="TypographyQuotes"
15524 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15525 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Para adicionar músicas à sua fila de reprodução, toque no menu de opções de uma música, álbum ou artista e selecione \&quot;Adicionar à fila\&quot;.&lt;/string>"
15526 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15527 <location
15528 file="res/values-pt-rBR/strings.xml"
15529 line="119"
15530 column="42"/>
15531 </issue>
15532
15533 <issue
15534 id="TypographyQuotes"
15535 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15536 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Para adicionar músicas à sua fila de reprodução, toque no menu de opções numa música, álbum ou artista e selecione \&quot;Adicionar à fila\&quot;.&lt;/string>"
15537 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15538 <location
15539 file="res/values-pt-rPT/strings.xml"
15540 line="119"
15541 column="42"/>
15542 </issue>
15543
15544 <issue
15545 id="TypographyQuotes"
15546 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15547 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Pentru a adăuga melodii în coada de redare, atingeți meniul de opțiuni pe un cântec, album sau artist și selectați \&quot;Adăugați la coadă\&quot;.&lt;/string>"
15548 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15549 <location
15550 file="res/values-ro/strings.xml"
15551 line="119"
15552 column="42"/>
15553 </issue>
15554
15555 <issue
15556 id="TypographyQuotes"
15557 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15558 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Pre pridanie skladieb do poradia na prehrávanie kliknite na ponuku s možnosťami na skladbe, albume alebo interpretovi a vyberte \&quot;Pridať do poradia\&quot;.&lt;/string>"
15559 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15560 <location
15561 file="res/values-sk/strings.xml"
15562 line="119"
15563 column="42"/>
15564 </issue>
15565
15566 <issue
15567 id="TypographyQuotes"
15568 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15569 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>ในการเพิ่มเพลงไปยังรายการที่เล่น ให้แตะเมนูตัวเลือกบนเพลงหรือศิลปินและเลือก \&quot;เพิ่มไปยังคิวเล่น\&quot;&lt;/string>"
15570 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15571 <location
15572 file="res/values-th/strings.xml"
15573 line="119"
15574 column="42"/>
15575 </issue>
15576
15577 <issue
15578 id="TypographyQuotes"
15579 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15580 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>Çalma Kuyruğuna şarkı eklemek için şarkı, albüm veya sanatçı üzerindeki seçenekler menüsüne tıklayın ve \&quot;Kuyruğa ekle\&quot;yi seçin.&lt;/string>"
15581 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15582 <location
15583 file="res/values-tr/strings.xml"
15584 line="119"
15585 column="42"/>
15586 </issue>
15587
15588 <issue
15589 id="TypographyQuotes"
15590 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15591 errorLine1=" &lt;string name=&quot;error_playing_track&quot;>Der Titel \&quot;%1$s\&quot; konnte nicht abgespielt werden.&lt;/string>"
15592 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15593 <location
15594 file="res/values-de/strings.xml"
15595 line="120"
15596 column="40"/>
15597 </issue>
15598
15599 <issue
15600 id="TypographyQuotes"
15601 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15602 errorLine1=" &lt;string name=&quot;error_playing_track&quot;>Ei voi toistaa kappaletta \&quot;%1$s\&quot;&lt;/string>"
15603 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15604 <location
15605 file="res/values-fi/strings.xml"
15606 line="120"
15607 column="40"/>
15608 </issue>
15609
15610 <issue
15611 id="TypographyQuotes"
15612 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15613 errorLine1=" &lt;string name=&quot;empty_playlist_secondary&quot;>To add songs to this playlist, tap the options menu on a song, album or artist and select \&quot;Add to playlist\&quot;.&lt;/string>"
15614 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15615 <location
15616 file="res/values/strings.xml"
15617 line="139"
15618 column="45"/>
15619 </issue>
15620
15621 <issue
15622 id="TypographyQuotes"
15623 message="Replace straight quotes (&quot;) with directional quotes (“”, &amp;#8220; and &amp;#8221;) ?"
15624 errorLine1=" &lt;string name=&quot;empty_queue_secondary&quot;>To add songs to your Play Queue, tap the options menu on a song, album, or artist and select \&quot;Add to queue\&quot;.&lt;/string>"
15625 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
15626 <location
15627 file="res/values/strings.xml"
15628 line="147"
15629 column="42"/>
15630 </issue>
15631
15632 <issue
15633 id="ConvertToWebp"
15634 message="One or more images in this project can be converted to the WebP format which typically results in smaller file sizes, even for lossless conversion">
15635 <location
15636 file="res/mipmap-xxxhdpi/ic_foreground.png"/>
15637 </issue>
15638
15639 <issue
15640 id="SelectableText"
15641 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15642 errorLine1=" &lt;TextView"
15643 errorLine2=" ~~~~~~~~">
15644 <location
15645 file="res/layout/activity_album_detail.xml"
15646 line="30"
15647 column="14"/>
15648 </issue>
15649
15650 <issue
15651 id="SelectableText"
15652 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15653 errorLine1=" &lt;TextView"
15654 errorLine2=" ~~~~~~~~">
15655 <location
15656 file="res/layout/activity_album_detail.xml"
15657 line="40"
15658 column="14"/>
15659 </issue>
15660
15661 <issue
15662 id="SelectableText"
15663 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15664 errorLine1=" &lt;TextView"
15665 errorLine2=" ~~~~~~~~">
15666 <location
15667 file="res/layout/activity_album_detail.xml"
15668 line="73"
15669 column="14"/>
15670 </issue>
15671
15672 <issue
15673 id="SelectableText"
15674 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15675 errorLine1=" &lt;TextView"
15676 errorLine2=" ~~~~~~~~">
15677 <location
15678 file="res/layout/activity_audio_preview.xml"
15679 line="80"
15680 column="14"/>
15681 </issue>
15682
15683 <issue
15684 id="SelectableText"
15685 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15686 errorLine1=" &lt;TextView"
15687 errorLine2=" ~~~~~~~~">
15688 <location
15689 file="res/layout/activity_audio_preview.xml"
15690 line="92"
15691 column="14"/>
15692 </issue>
15693
15694 <issue
15695 id="SelectableText"
15696 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15697 errorLine1=" &lt;TextView"
15698 errorLine2=" ~~~~~~~~">
15699 <location
15700 file="res/layout/album_detail_song.xml"
15701 line="36"
15702 column="10"/>
15703 </issue>
15704
15705 <issue
15706 id="SelectableText"
15707 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15708 errorLine1=" &lt;TextView"
15709 errorLine2=" ~~~~~~~~">
15710 <location
15711 file="res/layout/album_detail_song.xml"
15712 line="42"
15713 column="10"/>
15714 </issue>
15715
15716 <issue
15717 id="SelectableText"
15718 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15719 errorLine1=" &lt;TextView"
15720 errorLine2=" ~~~~~~~~">
15721 <location
15722 file="res/layout/app_widget_large.xml"
15723 line="87"
15724 column="10"/>
15725 </issue>
15726
15727 <issue
15728 id="SelectableText"
15729 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15730 errorLine1=" &lt;TextView"
15731 errorLine2=" ~~~~~~~~">
15732 <location
15733 file="res/layout/app_widget_large.xml"
15734 line="94"
15735 column="10"/>
15736 </issue>
15737
15738 <issue
15739 id="SelectableText"
15740 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15741 errorLine1=" &lt;TextView"
15742 errorLine2=" ~~~~~~~~">
15743 <location
15744 file="res/layout/app_widget_large.xml"
15745 line="100"
15746 column="10"/>
15747 </issue>
15748
15749 <issue
15750 id="SelectableText"
15751 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15752 errorLine1=" &lt;TextView"
15753 errorLine2=" ~~~~~~~~">
15754 <location
15755 file="res/layout/app_widget_large_alternate.xml"
15756 line="47"
15757 column="10"/>
15758 </issue>
15759
15760 <issue
15761 id="SelectableText"
15762 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15763 errorLine1=" &lt;TextView"
15764 errorLine2=" ~~~~~~~~">
15765 <location
15766 file="res/layout/app_widget_large_alternate.xml"
15767 line="54"
15768 column="10"/>
15769 </issue>
15770
15771 <issue
15772 id="SelectableText"
15773 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15774 errorLine1=" &lt;TextView"
15775 errorLine2=" ~~~~~~~~">
15776 <location
15777 file="res/layout/app_widget_large_alternate.xml"
15778 line="60"
15779 column="10"/>
15780 </issue>
15781
15782 <issue
15783 id="SelectableText"
15784 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15785 errorLine1=" &lt;TextView"
15786 errorLine2=" ~~~~~~~~">
15787 <location
15788 file="res/layout/app_widget_small.xml"
15789 line="59"
15790 column="10"/>
15791 </issue>
15792
15793 <issue
15794 id="SelectableText"
15795 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15796 errorLine1=" &lt;TextView"
15797 errorLine2=" ~~~~~~~~">
15798 <location
15799 file="res/layout/app_widget_small.xml"
15800 line="66"
15801 column="10"/>
15802 </issue>
15803
15804 <issue
15805 id="SelectableText"
15806 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15807 errorLine1=" &lt;TextView"
15808 errorLine2=" ~~~~~~~~">
15809 <location
15810 file="res/layout/app_widget_small.xml"
15811 line="72"
15812 column="10"/>
15813 </issue>
15814
15815 <issue
15816 id="SelectableText"
15817 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15818 errorLine1=" &lt;TextView"
15819 errorLine2=" ~~~~~~~~">
15820 <location
15821 file="res/layout/artist_detail_album.xml"
15822 line="42"
15823 column="14"/>
15824 </issue>
15825
15826 <issue
15827 id="SelectableText"
15828 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15829 errorLine1=" &lt;TextView"
15830 errorLine2=" ~~~~~~~~">
15831 <location
15832 file="res/layout/artist_detail_song.xml"
15833 line="39"
15834 column="6"/>
15835 </issue>
15836
15837 <issue
15838 id="SelectableText"
15839 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15840 errorLine1=" &lt;TextView"
15841 errorLine2=" ~~~~~~~~">
15842 <location
15843 file="res/layout/artist_detail_song.xml"
15844 line="49"
15845 column="6"/>
15846 </issue>
15847
15848 <issue
15849 id="SelectableText"
15850 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15851 errorLine1=" &lt;TextView"
15852 errorLine2=" ~~~~~~~~">
15853 <location
15854 file="res/layout/audio_player_header_bar.xml"
15855 line="37"
15856 column="10"/>
15857 </issue>
15858
15859 <issue
15860 id="SelectableText"
15861 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15862 errorLine1=" &lt;TextView"
15863 errorLine2=" ~~~~~~~~">
15864 <location
15865 file="res/layout/audio_player_header_bar.xml"
15866 line="49"
15867 column="10"/>
15868 </issue>
15869
15870 <issue
15871 id="SelectableText"
15872 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15873 errorLine1=" &lt;TextView"
15874 errorLine2=" ~~~~~~~~">
15875 <location
15876 file="res/layout/bottom_action_bar.xml"
15877 line="45"
15878 column="10"/>
15879 </issue>
15880
15881 <issue
15882 id="SelectableText"
15883 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15884 errorLine1=" &lt;TextView"
15885 errorLine2=" ~~~~~~~~">
15886 <location
15887 file="res/layout/bottom_action_bar.xml"
15888 line="49"
15889 column="10"/>
15890 </issue>
15891
15892 <issue
15893 id="SelectableText"
15894 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15895 errorLine1=" &lt;TextView"
15896 errorLine2=" ~~~~~~~~">
15897 <location
15898 file="res/layout/grid_items_normal.xml"
15899 line="51"
15900 column="18"/>
15901 </issue>
15902
15903 <issue
15904 id="SelectableText"
15905 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15906 errorLine1=" &lt;TextView"
15907 errorLine2=" ~~~~~~~~">
15908 <location
15909 file="res/layout/grid_items_normal.xml"
15910 line="59"
15911 column="18"/>
15912 </issue>
15913
15914 <issue
15915 id="SelectableText"
15916 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15917 errorLine1=" &lt;TextView"
15918 errorLine2=" ~~~~~~~~">
15919 <location
15920 file="res/layout/header_bar.xml"
15921 line="39"
15922 column="6"/>
15923 </issue>
15924
15925 <issue
15926 id="SelectableText"
15927 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15928 errorLine1="&lt;TextView xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
15929 errorLine2=" ~~~~~~~~">
15930 <location
15931 file="res/layout/list_header.xml"
15932 line="18"
15933 column="2"/>
15934 </issue>
15935
15936 <issue
15937 id="SelectableText"
15938 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15939 errorLine1=" &lt;TextView"
15940 errorLine2=" ~~~~~~~~">
15941 <location
15942 file="res/layout/list_item_common.xml"
15943 line="36"
15944 column="10"/>
15945 </issue>
15946
15947 <issue
15948 id="SelectableText"
15949 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15950 errorLine1=" &lt;TextView"
15951 errorLine2=" ~~~~~~~~">
15952 <location
15953 file="res/layout/list_item_common.xml"
15954 line="42"
15955 column="10"/>
15956 </issue>
15957
15958 <issue
15959 id="SelectableText"
15960 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15961 errorLine1=" &lt;TextView"
15962 errorLine2=" ~~~~~~~~">
15963 <location
15964 file="res/layout/list_item_common.xml"
15965 line="49"
15966 column="6"/>
15967 </issue>
15968
15969 <issue
15970 id="SelectableText"
15971 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15972 errorLine1=" &lt;TextView"
15973 errorLine2=" ~~~~~~~~">
15974 <location
15975 file="res/layout/list_item_queue.xml"
15976 line="44"
15977 column="10"/>
15978 </issue>
15979
15980 <issue
15981 id="SelectableText"
15982 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15983 errorLine1=" &lt;TextView"
15984 errorLine2=" ~~~~~~~~">
15985 <location
15986 file="res/layout/list_item_queue.xml"
15987 line="51"
15988 column="10"/>
15989 </issue>
15990
15991 <issue
15992 id="SelectableText"
15993 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
15994 errorLine1=" &lt;TextView"
15995 errorLine2=" ~~~~~~~~">
15996 <location
15997 file="res/layout/list_item_top_tracks.xml"
15998 line="45"
15999 column="14"/>
16000 </issue>
16001
16002 <issue
16003 id="SelectableText"
16004 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
16005 errorLine1=" &lt;TextView"
16006 errorLine2=" ~~~~~~~~">
16007 <location
16008 file="res/layout/list_item_top_tracks.xml"
16009 line="65"
16010 column="14"/>
16011 </issue>
16012
16013 <issue
16014 id="SelectableText"
16015 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
16016 errorLine1=" &lt;TextView"
16017 errorLine2=" ~~~~~~~~">
16018 <location
16019 file="res/layout/list_item_top_tracks.xml"
16020 line="71"
16021 column="14"/>
16022 </issue>
16023
16024 <issue
16025 id="SelectableText"
16026 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
16027 errorLine1=" &lt;TextView"
16028 errorLine2=" ~~~~~~~~">
16029 <location
16030 file="res/layout/main_album_flow.xml"
16031 line="43"
16032 column="6"/>
16033 </issue>
16034
16035 <issue
16036 id="SelectableText"
16037 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
16038 errorLine1=" &lt;TextView"
16039 errorLine2=" ~~~~~~~~">
16040 <location
16041 file="res/layout/main_playback_controls.xml"
16042 line="27"
16043 column="6"/>
16044 </issue>
16045
16046 <issue
16047 id="SelectableText"
16048 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
16049 errorLine1=" &lt;TextView"
16050 errorLine2=" ~~~~~~~~">
16051 <location
16052 file="res/layout/main_playback_controls.xml"
16053 line="57"
16054 column="6"/>
16055 </issue>
16056
16057 <issue
16058 id="SelectableText"
16059 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
16060 errorLine1=" &lt;TextView"
16061 errorLine2=" ~~~~~~~~">
16062 <location
16063 file="res/layout/playlist_detail_header.xml"
16064 line="39"
16065 column="10"/>
16066 </issue>
16067
16068 <issue
16069 id="SelectableText"
16070 message="Consider making the text value selectable by specifying `android:textIsSelectable=&quot;true&quot;`"
16071 errorLine1=" &lt;TextView"
16072 errorLine2=" ~~~~~~~~">
16073 <location
16074 file="res/layout/playlist_detail_header.xml"
16075 line="49"
16076 column="10"/>
16077 </issue>
16078
16079 <issue
16080 id="NegativeMargin"
16081 message="Margin values should not be negative"
16082 errorLine1=" android:layout_marginTop=&quot;-2dp&quot; />"
16083 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
16084 <location
16085 file="res/layout/artist_detail_song.xml"
16086 line="57"
16087 column="9"/>
16088 </issue>
16089
16090 <issue
16091 id="ClickableViewAccessibility"
16092 message="`AudioPreviewActivity#onTouch` should call `View#performClick` when a click is detected"
16093 errorLine1=" public boolean onTouch(View v, MotionEvent event) {"
16094 errorLine2=" ~~~~~~~">
16095 <location
16096 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
16097 line="527"
16098 column="20"/>
16099 </issue>
16100
16101 <issue
16102 id="ClickableViewAccessibility"
16103 message="`onTouch` lambda should call `View#performClick` when a click is detected"
16104 errorLine1=" mRootView.setOnTouchListener((v, me) -> true);"
16105 errorLine2=" ~~~~~~~~~~~~~~~">
16106 <location
16107 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
16108 line="77"
16109 column="38"/>
16110 </issue>
16111
16112 <issue
16113 id="ClickableViewAccessibility"
16114 message="Custom view `RepeatingImageButton` overrides `onTouchEvent` but not `performClick`"
16115 errorLine1=" public boolean onTouchEvent(final MotionEvent event) {"
16116 errorLine2=" ~~~~~~~~~~~~">
16117 <location
16118 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
16119 line="95"
16120 column="20"/>
16121 </issue>
16122
16123 <issue
16124 id="ClickableViewAccessibility"
16125 message="Custom view `SlidingUpPanelLayout` overrides `onTouchEvent` but not `performClick`"
16126 errorLine1=" public boolean onTouchEvent(MotionEvent ev) {"
16127 errorLine2=" ~~~~~~~~~~~~">
16128 <location
16129 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
16130 line="776"
16131 column="20"/>
16132 </issue>
16133
16134 <issue
16135 id="ContentDescription"
16136 message="Missing `contentDescription` attribute on image"
16137 errorLine1=" &lt;ImageView"
16138 errorLine2=" ~~~~~~~~~">
16139 <location
16140 file="res/layout/activity_album_detail.xml"
16141 line="15"
16142 column="10"/>
16143 </issue>
16144
16145 <issue
16146 id="ContentDescription"
16147 message="Missing `contentDescription` attribute on image"
16148 errorLine1=" &lt;ImageView"
16149 errorLine2=" ~~~~~~~~~">
16150 <location
16151 file="res/layout/activity_album_detail.xml"
16152 line="61"
16153 column="14"/>
16154 </issue>
16155
16156 <issue
16157 id="ContentDescription"
16158 message="Missing `contentDescription` attribute on image"
16159 errorLine1=" &lt;ImageView"
16160 errorLine2=" ~~~~~~~~~">
16161 <location
16162 file="res/layout/album_detail_song.xml"
16163 line="14"
16164 column="10"/>
16165 </issue>
16166
16167 <issue
16168 id="ContentDescription"
16169 message="Missing `contentDescription` attribute on image"
16170 errorLine1=" &lt;ImageView"
16171 errorLine2=" ~~~~~~~~~">
16172 <location
16173 file="res/layout/album_detail_song.xml"
16174 line="51"
16175 column="6"/>
16176 </issue>
16177
16178 <issue
16179 id="ContentDescription"
16180 message="Missing `contentDescription` attribute on image"
16181 errorLine1=" &lt;ImageView"
16182 errorLine2=" ~~~~~~~~~">
16183 <location
16184 file="res/layout/artist_detail_song.xml"
16185 line="5"
16186 column="6"/>
16187 </issue>
16188
16189 <issue
16190 id="ContentDescription"
16191 message="Missing `contentDescription` attribute on image"
16192 errorLine1=" &lt;ImageView"
16193 errorLine2=" ~~~~~~~~~">
16194 <location
16195 file="res/layout/artist_detail_song.xml"
16196 line="25"
16197 column="10"/>
16198 </issue>
16199
16200 <issue
16201 id="ContentDescription"
16202 message="Missing `contentDescription` attribute on image"
16203 errorLine1=" &lt;ImageView"
16204 errorLine2=" ~~~~~~~~~">
16205 <location
16206 file="res/layout/artist_detail_song.xml"
16207 line="59"
16208 column="6"/>
16209 </issue>
16210
16211 <issue
16212 id="ContentDescription"
16213 message="Missing `contentDescription` attribute on image"
16214 errorLine1=" &lt;ImageView"
16215 errorLine2=" ~~~~~~~~~">
16216 <location
16217 file="res/layout/edit_queue_list_item.xml"
16218 line="22"
16219 column="6"/>
16220 </issue>
16221
16222 <issue
16223 id="ContentDescription"
16224 message="Missing `contentDescription` attribute on image"
16225 errorLine1=" &lt;ImageView"
16226 errorLine2=" ~~~~~~~~~">
16227 <location
16228 file="res/layout/edit_queue_list_item.xml"
16229 line="38"
16230 column="6"/>
16231 </issue>
16232
16233 <issue
16234 id="ContentDescription"
16235 message="Missing `contentDescription` attribute on image"
16236 errorLine1=" &lt;ImageView"
16237 errorLine2=" ~~~~~~~~~">
16238 <location
16239 file="res/layout/edit_track_list_item.xml"
16240 line="22"
16241 column="6"/>
16242 </issue>
16243
16244 <issue
16245 id="ContentDescription"
16246 message="Missing `contentDescription` attribute on image"
16247 errorLine1=" &lt;ImageView"
16248 errorLine2=" ~~~~~~~~~">
16249 <location
16250 file="res/layout/edit_track_list_item.xml"
16251 line="42"
16252 column="6"/>
16253 </issue>
16254
16255 <issue
16256 id="ContentDescription"
16257 message="Missing `contentDescription` attribute on image"
16258 errorLine1=" &lt;ImageView"
16259 errorLine2=" ~~~~~~~~~">
16260 <location
16261 file="res/layout/header_bar.xml"
16262 line="29"
16263 column="6"/>
16264 </issue>
16265
16266 <issue
16267 id="ContentDescription"
16268 message="Missing `contentDescription` attribute on image"
16269 errorLine1=" &lt;ImageView"
16270 errorLine2=" ~~~~~~~~~">
16271 <location
16272 file="res/layout/header_bar.xml"
16273 line="51"
16274 column="6"/>
16275 </issue>
16276
16277 <issue
16278 id="ContentDescription"
16279 message="Missing `contentDescription` attribute on image"
16280 errorLine1=" &lt;ImageView"
16281 errorLine2=" ~~~~~~~~~">
16282 <location
16283 file="res/layout/list_item_queue.xml"
16284 line="27"
16285 column="6"/>
16286 </issue>
16287
16288 <issue
16289 id="RtlSymmetry"
16290 message="When you define `paddingStart` you should probably also define `paddingEnd` for right-to-left symmetry"
16291 errorLine1=" android:paddingStart=&quot;@dimen/bottom_action_bar_info_padding_left&quot; >"
16292 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
16293 <location
16294 file="res/layout/bottom_action_bar.xml"
16295 line="43"
16296 column="9"/>
16297 </issue>
16298
16299 <issue
16300 id="RtlSymmetry"
16301 message="When you define `paddingEnd` you should probably also define `paddingStart` for right-to-left symmetry"
16302 errorLine1=" android:paddingEnd=&quot;@dimen/list_item_general_margin&quot; >"
16303 errorLine2=" ~~~~~~~~~~~~~~~~~~">
16304 <location
16305 file="res/layout/edit_track_list_item.xml"
16306 line="37"
16307 column="9"/>
16308 </issue>
16309
16310 <issue
16311 id="RtlSymmetry"
16312 message="When you define `paddingStart` you should probably also define `paddingEnd` for right-to-left symmetry"
16313 errorLine1=" android:paddingStart=&quot;@dimen/drag_and_drop_width&quot;"
16314 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
16315 <location
16316 file="res/layout/header_bar.xml"
16317 line="24"
16318 column="5"/>
16319 </issue>
16320
16321 <issue
16322 id="RtlSymmetry"
16323 message="When you define `paddingStart` you should probably also define `paddingEnd` for right-to-left symmetry"
16324 errorLine1=" android:paddingStart=&quot;@dimen/list_item_queue_text_padding_left&quot;"
16325 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
16326 <location
16327 file="res/layout/list_item_queue.xml"
16328 line="41"
16329 column="9"/>
16330 </issue>
16331
16332 <issue
16333 id="RtlSymmetry"
16334 message="When you define `paddingStart` you should probably also define `paddingEnd` for right-to-left symmetry"
16335 errorLine1=" android:paddingStart=&quot;@dimen/list_preferred_item_padding&quot; >"
16336 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
16337 <location
16338 file="res/layout/list_item_top_tracks.xml"
16339 line="63"
16340 column="13"/>
16341 </issue>
16342
16343 <issue
16344 id="RtlEnabled"
16345 message="The project references RTL attributes, but does not explicitly enable or disable RTL support with `android:supportsRtl` in the manifest">
16346 <location
16347 file="AndroidManifest.xml"/>
16348 </issue>
16349
16350 <issue
16351 id="KotlinPropertyAccess"
16352 message="This getter should be public such that `sourceId` can be accessed as a property from Kotlin; see https://android.github.io/kotlin-guides/interop.html#property-prefixes"
16353 errorLine1=" protected long getSourceId() {"
16354 errorLine2=" ~~~~~~~~~~~">
16355 <location
16356 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
16357 line="99"
16358 column="20"/>
16359 </issue>
16360
16361 <issue
16362 id="UnknownNullness"
16363 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16364 errorLine1=" public String mAlbumName;"
16365 errorLine2=" ~~~~~~">
16366 <location
16367 file="src/org/lineageos/eleven/model/Album.java"
16368 line="39"
16369 column="12"/>
16370 </issue>
16371
16372 <issue
16373 id="UnknownNullness"
16374 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16375 errorLine1=" public String mArtistName;"
16376 errorLine2=" ~~~~~~">
16377 <location
16378 file="src/org/lineageos/eleven/model/Album.java"
16379 line="44"
16380 column="12"/>
16381 </issue>
16382
16383 <issue
16384 id="UnknownNullness"
16385 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16386 errorLine1=" public String mYear;"
16387 errorLine2=" ~~~~~~">
16388 <location
16389 file="src/org/lineageos/eleven/model/Album.java"
16390 line="54"
16391 column="12"/>
16392 </issue>
16393
16394 <issue
16395 id="UnknownNullness"
16396 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16397 errorLine1=" public Album(final long albumId, final String albumName, final String artistName,"
16398 errorLine2=" ~~~~~~">
16399 <location
16400 file="src/org/lineageos/eleven/model/Album.java"
16401 line="65"
16402 column="44"/>
16403 </issue>
16404
16405 <issue
16406 id="UnknownNullness"
16407 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16408 errorLine1=" public Album(final long albumId, final String albumName, final String artistName,"
16409 errorLine2=" ~~~~~~">
16410 <location
16411 file="src/org/lineageos/eleven/model/Album.java"
16412 line="65"
16413 column="68"/>
16414 </issue>
16415
16416 <issue
16417 id="UnknownNullness"
16418 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16419 errorLine1=" final int songNumber, final String albumYear) {"
16420 errorLine2=" ~~~~~~">
16421 <location
16422 file="src/org/lineageos/eleven/model/Album.java"
16423 line="66"
16424 column="46"/>
16425 </issue>
16426
16427 <issue
16428 id="UnknownNullness"
16429 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16430 errorLine1=" public AlbumAdapter(final FragmentActivity context, final int layoutId,"
16431 errorLine2=" ~~~~~~~~~~~~~~~~">
16432 <location
16433 file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
16434 line="77"
16435 column="31"/>
16436 </issue>
16437
16438 <issue
16439 id="UnknownNullness"
16440 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16441 errorLine1=" final Consumer&lt;Album> onItemClickedListener) {"
16442 errorLine2=" ~~~~~~~~~~~~~~~">
16443 <location
16444 file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
16445 line="78"
16446 column="31"/>
16447 </issue>
16448
16449 <issue
16450 id="UnknownNullness"
16451 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16452 errorLine1=" public Album getItem(int pos) {"
16453 errorLine2=" ~~~~~">
16454 <location
16455 file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
16456 line="98"
16457 column="12"/>
16458 </issue>
16459
16460 <issue
16461 id="UnknownNullness"
16462 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16463 errorLine1=" public void setData(List&lt;Album> albums) {"
16464 errorLine2=" ~~~~~~~~~~~">
16465 <location
16466 file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
16467 line="145"
16468 column="25"/>
16469 </issue>
16470
16471 <issue
16472 id="UnknownNullness"
16473 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16474 errorLine1=" public void setPopupMenuClickedListener(IPopupMenuCallback.IListener listener) {"
16475 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
16476 <location
16477 file="src/org/lineageos/eleven/adapters/AlbumAdapter.java"
16478 line="184"
16479 column="45"/>
16480 </issue>
16481
16482 <issue
16483 id="UnknownNullness"
16484 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16485 errorLine1=" public static void addAlbumArtistDetails(AlbumArtistDetails details) {"
16486 errorLine2=" ~~~~~~~~~~~~~~~~~~">
16487 <location
16488 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16489 line="65"
16490 column="46"/>
16491 </issue>
16492
16493 <issue
16494 id="UnknownNullness"
16495 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16496 errorLine1=" public static AlbumArtistDetails getAlbumArtistDetails(long audioId) {"
16497 errorLine2=" ~~~~~~~~~~~~~~~~~~">
16498 <location
16499 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16500 line="81"
16501 column="19"/>
16502 </issue>
16503
16504 <issue
16505 id="UnknownNullness"
16506 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16507 errorLine1=" public AlbumArtPagerAdapter(FragmentManager fm) {"
16508 errorLine2=" ~~~~~~~~~~~~~~~">
16509 <location
16510 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16511 line="99"
16512 column="33"/>
16513 </issue>
16514
16515 <issue
16516 id="UnknownNullness"
16517 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16518 errorLine1=" public static AlbumArtFragment newInstance(final long trackId) {"
16519 errorLine2=" ~~~~~~~~~~~~~~~~">
16520 <location
16521 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16522 line="172"
16523 column="23"/>
16524 </issue>
16525
16526 <issue
16527 id="UnknownNullness"
16528 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16529 errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
16530 errorLine2=" ~~~~~~">
16531 <location
16532 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16533 line="181"
16534 column="36"/>
16535 </issue>
16536
16537 <issue
16538 id="UnknownNullness"
16539 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16540 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
16541 errorLine2=" ~~~~">
16542 <location
16543 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16544 line="190"
16545 column="16"/>
16546 </issue>
16547
16548 <issue
16549 id="UnknownNullness"
16550 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16551 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
16552 errorLine2=" ~~~~~~~~~~~~~~">
16553 <location
16554 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16555 line="190"
16556 column="40"/>
16557 </issue>
16558
16559 <issue
16560 id="UnknownNullness"
16561 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16562 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
16563 errorLine2=" ~~~~~~~~~">
16564 <location
16565 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16566 line="190"
16567 column="71"/>
16568 </issue>
16569
16570 <issue
16571 id="UnknownNullness"
16572 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16573 errorLine1=" final Bundle savedInstanceState) {"
16574 errorLine2=" ~~~~~~">
16575 <location
16576 file="src/org/lineageos/eleven/adapters/AlbumArtPagerAdapter.java"
16577 line="191"
16578 column="40"/>
16579 </issue>
16580
16581 <issue
16582 id="UnknownNullness"
16583 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16584 errorLine1=" public String mAlbumName;"
16585 errorLine2=" ~~~~~~">
16586 <location
16587 file="src/org/lineageos/eleven/model/AlbumArtistDetails.java"
16588 line="25"
16589 column="12"/>
16590 </issue>
16591
16592 <issue
16593 id="UnknownNullness"
16594 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16595 errorLine1=" public String mArtistName;"
16596 errorLine2=" ~~~~~~">
16597 <location
16598 file="src/org/lineageos/eleven/model/AlbumArtistDetails.java"
16599 line="26"
16600 column="12"/>
16601 </issue>
16602
16603 <issue
16604 id="UnknownNullness"
16605 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16606 errorLine1=" protected String getTitle() {"
16607 errorLine2=" ~~~~~~">
16608 <location
16609 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
16610 line="72"
16611 column="15"/>
16612 </issue>
16613
16614 <issue
16615 id="UnknownNullness"
16616 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16617 errorLine1=" protected PopupMenuHelper createActionMenuHelper() {"
16618 errorLine2=" ~~~~~~~~~~~~~~~">
16619 <location
16620 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
16621 line="94"
16622 column="15"/>
16623 </issue>
16624
16625 <issue
16626 id="UnknownNullness"
16627 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16628 errorLine1=" public void update(List&lt;Song> songs) {"
16629 errorLine2=" ~~~~~~~~~~">
16630 <location
16631 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
16632 line="183"
16633 column="24"/>
16634 </issue>
16635
16636 <issue
16637 id="UnknownNullness"
16638 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16639 errorLine1=" public PagerAdapter.MusicFragments getMusicFragmentParent() {"
16640 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
16641 <location
16642 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
16643 line="215"
16644 column="12"/>
16645 </issue>
16646
16647 <issue
16648 id="UnknownNullness"
16649 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16650 errorLine1=" public void onLoadFinished(@NonNull Loader&lt;List&lt;Song>> loader, List&lt;Song> data) {"
16651 errorLine2=" ~~~~~~~~~~">
16652 <location
16653 file="src/org/lineageos/eleven/ui/fragments/AlbumDetailFragment.java"
16654 line="229"
16655 column="68"/>
16656 </issue>
16657
16658 <issue
16659 id="UnknownNullness"
16660 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16661 errorLine1=" public AlbumDetailSongAdapter(FragmentActivity activity) {"
16662 errorLine2=" ~~~~~~~~~~~~~~~~">
16663 <location
16664 file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
16665 line="33"
16666 column="35"/>
16667 </issue>
16668
16669 <issue
16670 id="UnknownNullness"
16671 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16672 errorLine1=" protected Config.IdType getSourceType() {"
16673 errorLine2=" ~~~~~~~~~~~~~">
16674 <location
16675 file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
16676 line="43"
16677 column="15"/>
16678 </issue>
16679
16680 <issue
16681 id="UnknownNullness"
16682 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16683 errorLine1=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
16684 errorLine2=" ~~~~~~">
16685 <location
16686 file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
16687 line="47"
16688 column="15"/>
16689 </issue>
16690
16691 <issue
16692 id="UnknownNullness"
16693 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16694 errorLine1=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
16695 errorLine2=" ~~~~">
16696 <location
16697 file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
16698 line="47"
16699 column="32"/>
16700 </issue>
16701
16702 <issue
16703 id="UnknownNullness"
16704 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16705 errorLine1=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
16706 errorLine2=" ~~~~~~~~~~~~">
16707 <location
16708 file="src/org/lineageos/eleven/adapters/AlbumDetailSongAdapter.java"
16709 line="47"
16710 column="43"/>
16711 </issue>
16712
16713 <issue
16714 id="UnknownNullness"
16715 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16716 errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
16717 errorLine2=" ~~~~~~">
16718 <location
16719 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16720 line="91"
16721 column="32"/>
16722 </issue>
16723
16724 <issue
16725 id="UnknownNullness"
16726 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16727 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
16728 errorLine2=" ~~~~">
16729 <location
16730 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16731 line="108"
16732 column="12"/>
16733 </issue>
16734
16735 <issue
16736 id="UnknownNullness"
16737 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16738 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
16739 errorLine2=" ~~~~~~~~~~~~~~">
16740 <location
16741 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16742 line="108"
16743 column="36"/>
16744 </issue>
16745
16746 <issue
16747 id="UnknownNullness"
16748 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16749 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
16750 errorLine2=" ~~~~~~~~~">
16751 <location
16752 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16753 line="108"
16754 column="67"/>
16755 </issue>
16756
16757 <issue
16758 id="UnknownNullness"
16759 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16760 errorLine1=" final Bundle savedInstanceState) {"
16761 errorLine2=" ~~~~~~">
16762 <location
16763 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16764 line="109"
16765 column="36"/>
16766 </issue>
16767
16768 <issue
16769 id="UnknownNullness"
16770 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16771 errorLine1=" public Loader&lt;SectionListContainer&lt;Album>> onCreateLoader(final int id, final Bundle args) {"
16772 errorLine2=" ~~~~~~">
16773 <location
16774 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16775 line="149"
16776 column="83"/>
16777 </issue>
16778
16779 <issue
16780 id="UnknownNullness"
16781 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16782 errorLine1=" final SectionListContainer&lt;Album> data) {"
16783 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
16784 <location
16785 file="src/org/lineageos/eleven/ui/fragments/AlbumFragment.java"
16786 line="158"
16787 column="38"/>
16788 </issue>
16789
16790 <issue
16791 id="UnknownNullness"
16792 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16793 errorLine1=" public AlbumLoader(final Context context) {"
16794 errorLine2=" ~~~~~~~">
16795 <location
16796 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16797 line="60"
16798 column="30"/>
16799 </issue>
16800
16801 <issue
16802 id="UnknownNullness"
16803 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16804 errorLine1=" public AlbumLoader(final Context context, final Long artistId) {"
16805 errorLine2=" ~~~~~~~">
16806 <location
16807 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16808 line="68"
16809 column="30"/>
16810 </issue>
16811
16812 <issue
16813 id="UnknownNullness"
16814 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16815 errorLine1=" public AlbumLoader(final Context context, final Long artistId) {"
16816 errorLine2=" ~~~~">
16817 <location
16818 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16819 line="68"
16820 column="53"/>
16821 </issue>
16822
16823 <issue
16824 id="UnknownNullness"
16825 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16826 errorLine1=" public List&lt;Album> loadInBackground() {"
16827 errorLine2=" ~~~~~~~~~~~">
16828 <location
16829 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16830 line="75"
16831 column="12"/>
16832 </issue>
16833
16834 <issue
16835 id="UnknownNullness"
16836 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16837 errorLine1=" public static Cursor makeAlbumCursor(final Context context, final Long artistId) {"
16838 errorLine2=" ~~~~~~">
16839 <location
16840 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16841 line="137"
16842 column="19"/>
16843 </issue>
16844
16845 <issue
16846 id="UnknownNullness"
16847 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16848 errorLine1=" public static Cursor makeAlbumCursor(final Context context, final Long artistId) {"
16849 errorLine2=" ~~~~~~~">
16850 <location
16851 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16852 line="137"
16853 column="48"/>
16854 </issue>
16855
16856 <issue
16857 id="UnknownNullness"
16858 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16859 errorLine1=" public static Cursor makeAlbumCursor(final Context context, final Long artistId) {"
16860 errorLine2=" ~~~~">
16861 <location
16862 file="src/org/lineageos/eleven/loaders/AlbumLoader.java"
16863 line="137"
16864 column="71"/>
16865 </issue>
16866
16867 <issue
16868 id="UnknownNullness"
16869 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16870 errorLine1=" protected Album mAlbum;"
16871 errorLine2=" ~~~~~">
16872 <location
16873 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16874 line="35"
16875 column="15"/>
16876 </issue>
16877
16878 <issue
16879 id="UnknownNullness"
16880 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16881 errorLine1=" public AlbumPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
16882 errorLine2=" ~~~~~~~~">
16883 <location
16884 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16885 line="37"
16886 column="33"/>
16887 </issue>
16888
16889 <issue
16890 id="UnknownNullness"
16891 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16892 errorLine1=" public AlbumPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
16893 errorLine2=" ~~~~~~~~~~~~~~~">
16894 <location
16895 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16896 line="37"
16897 column="52"/>
16898 </issue>
16899
16900 <issue
16901 id="UnknownNullness"
16902 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16903 errorLine1=" public abstract Album getAlbum(int position);"
16904 errorLine2=" ~~~~~">
16905 <location
16906 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16907 line="42"
16908 column="21"/>
16909 </issue>
16910
16911 <issue
16912 id="UnknownNullness"
16913 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16914 errorLine1=" public PopupMenuType onPreparePopupMenu(int position) {"
16915 errorLine2=" ~~~~~~~~~~~~~">
16916 <location
16917 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16918 line="45"
16919 column="12"/>
16920 </issue>
16921
16922 <issue
16923 id="UnknownNullness"
16924 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16925 errorLine1=" protected long[] getIdList() {"
16926 errorLine2=" ~~~~~~">
16927 <location
16928 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16929 line="56"
16930 column="15"/>
16931 </issue>
16932
16933 <issue
16934 id="UnknownNullness"
16935 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16936 errorLine1=" protected Config.IdType getSourceType() {"
16937 errorLine2=" ~~~~~~~~~~~~~">
16938 <location
16939 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16940 line="66"
16941 column="15"/>
16942 </issue>
16943
16944 <issue
16945 id="UnknownNullness"
16946 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16947 errorLine1=" protected String getArtistName() {"
16948 errorLine2=" ~~~~~~">
16949 <location
16950 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16951 line="79"
16952 column="15"/>
16953 </issue>
16954
16955 <issue
16956 id="UnknownNullness"
16957 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16958 errorLine1=" public boolean onMenuItemClick(MenuItem item) {"
16959 errorLine2=" ~~~~~~~~">
16960 <location
16961 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16962 line="84"
16963 column="36"/>
16964 </issue>
16965
16966 <issue
16967 id="UnknownNullness"
16968 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16969 errorLine1=" protected void updateMenuIds(PopupMenuType type, TreeSet&lt;Integer> set) {"
16970 errorLine2=" ~~~~~~~~~~~~~">
16971 <location
16972 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16973 line="100"
16974 column="34"/>
16975 </issue>
16976
16977 <issue
16978 id="UnknownNullness"
16979 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16980 errorLine1=" protected void updateMenuIds(PopupMenuType type, TreeSet&lt;Integer> set) {"
16981 errorLine2=" ~~~~~~~~~~~~~~~~">
16982 <location
16983 file="src/org/lineageos/eleven/utils/AlbumPopupMenuHelper.java"
16984 line="100"
16985 column="54"/>
16986 </issue>
16987
16988 <issue
16989 id="UnknownNullness"
16990 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
16991 errorLine1=" public AlbumScrimImage(Context context, AttributeSet attrs) {"
16992 errorLine2=" ~~~~~~~">
16993 <location
16994 file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
16995 line="53"
16996 column="28"/>
16997 </issue>
16998
16999 <issue
17000 id="UnknownNullness"
17001 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17002 errorLine1=" public AlbumScrimImage(Context context, AttributeSet attrs) {"
17003 errorLine2=" ~~~~~~~~~~~~">
17004 <location
17005 file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
17006 line="53"
17007 column="45"/>
17008 </issue>
17009
17010 <issue
17011 id="UnknownNullness"
17012 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17013 errorLine1=" public ImageView getImageView() {"
17014 errorLine2=" ~~~~~~~~~">
17015 <location
17016 file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
17017 line="73"
17018 column="12"/>
17019 </issue>
17020
17021 <issue
17022 id="UnknownNullness"
17023 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17024 errorLine1=" public void setTransitionDrawable(TransitionDrawable imageTransition,"
17025 errorLine2=" ~~~~~~~~~~~~~~~~~~">
17026 <location
17027 file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
17028 line="109"
17029 column="39"/>
17030 </issue>
17031
17032 <issue
17033 id="UnknownNullness"
17034 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17035 errorLine1=" TransitionDrawable paletteTransition) {"
17036 errorLine2=" ~~~~~~~~~~~~~~~~~~">
17037 <location
17038 file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
17039 line="110"
17040 column="39"/>
17041 </issue>
17042
17043 <issue
17044 id="UnknownNullness"
17045 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17046 errorLine1=" public void setGradientDrawable(GradientDrawable gradientDrawable) {"
17047 errorLine2=" ~~~~~~~~~~~~~~~~">
17048 <location
17049 file="src/org/lineageos/eleven/widgets/AlbumScrimImage.java"
17050 line="116"
17051 column="37"/>
17052 </issue>
17053
17054 <issue
17055 id="UnknownNullness"
17056 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17057 errorLine1=" public AlbumSongLoader(final Context context, final Long albumId) {"
17058 errorLine2=" ~~~~~~~">
17059 <location
17060 file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
17061 line="57"
17062 column="34"/>
17063 </issue>
17064
17065 <issue
17066 id="UnknownNullness"
17067 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17068 errorLine1=" public AlbumSongLoader(final Context context, final Long albumId) {"
17069 errorLine2=" ~~~~">
17070 <location
17071 file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
17072 line="57"
17073 column="57"/>
17074 </issue>
17075
17076 <issue
17077 id="UnknownNullness"
17078 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17079 errorLine1=" public List&lt;Song> loadInBackground() {"
17080 errorLine2=" ~~~~~~~~~~">
17081 <location
17082 file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
17083 line="63"
17084 column="12"/>
17085 </issue>
17086
17087 <issue
17088 id="UnknownNullness"
17089 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17090 errorLine1=" public static Cursor makeAlbumSongCursor(final Context context, final Long albumId) {"
17091 errorLine2=" ~~~~~~">
17092 <location
17093 file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
17094 line="109"
17095 column="19"/>
17096 </issue>
17097
17098 <issue
17099 id="UnknownNullness"
17100 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17101 errorLine1=" public static Cursor makeAlbumSongCursor(final Context context, final Long albumId) {"
17102 errorLine2=" ~~~~~~~">
17103 <location
17104 file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
17105 line="109"
17106 column="52"/>
17107 </issue>
17108
17109 <issue
17110 id="UnknownNullness"
17111 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17112 errorLine1=" public static Cursor makeAlbumSongCursor(final Context context, final Long albumId) {"
17113 errorLine2=" ~~~~">
17114 <location
17115 file="src/org/lineageos/eleven/loaders/AlbumSongLoader.java"
17116 line="109"
17117 column="75"/>
17118 </issue>
17119
17120 <issue
17121 id="UnknownNullness"
17122 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17123 errorLine1=" public void draw(final Canvas canvas) {"
17124 errorLine2=" ~~~~~~">
17125 <location
17126 file="src/org/lineageos/eleven/widgets/AlphaPatternDrawable.java"
17127 line="60"
17128 column="28"/>
17129 </issue>
17130
17131 <issue
17132 id="UnknownNullness"
17133 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17134 errorLine1=" public void setColorFilter(final ColorFilter cf) {"
17135 errorLine2=" ~~~~~~~~~~~">
17136 <location
17137 file="src/org/lineageos/eleven/widgets/AlphaPatternDrawable.java"
17138 line="75"
17139 column="38"/>
17140 </issue>
17141
17142 <issue
17143 id="UnknownNullness"
17144 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17145 errorLine1=" protected void onBoundsChange(final Rect bounds) {"
17146 errorLine2=" ~~~~">
17147 <location
17148 file="src/org/lineageos/eleven/widgets/AlphaPatternDrawable.java"
17149 line="80"
17150 column="41"/>
17151 </issue>
17152
17153 <issue
17154 id="UnknownNullness"
17155 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17156 errorLine1=" default void onAnimationStart(Animator animation) {"
17157 errorLine2=" ~~~~~~~~">
17158 <location
17159 file="src/org/lineageos/eleven/utils/AnimatorEndListener.java"
17160 line="23"
17161 column="35"/>
17162 </issue>
17163
17164 <issue
17165 id="UnknownNullness"
17166 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17167 errorLine1=" default void onAnimationCancel(Animator animation) {"
17168 errorLine2=" ~~~~~~~~">
17169 <location
17170 file="src/org/lineageos/eleven/utils/AnimatorEndListener.java"
17171 line="28"
17172 column="36"/>
17173 </issue>
17174
17175 <issue
17176 id="UnknownNullness"
17177 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17178 errorLine1=" default void onAnimationRepeat(Animator animation) {"
17179 errorLine2=" ~~~~~~~~">
17180 <location
17181 file="src/org/lineageos/eleven/utils/AnimatorEndListener.java"
17182 line="33"
17183 column="36"/>
17184 </issue>
17185
17186 <issue
17187 id="UnknownNullness"
17188 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17189 errorLine1=" protected PendingIntent buildPendingIntent(Context context, final String action,"
17190 errorLine2=" ~~~~~~~~~~~~~">
17191 <location
17192 file="src/org/lineageos/eleven/appwidgets/AppWidgetBase.java"
17193 line="28"
17194 column="15"/>
17195 </issue>
17196
17197 <issue
17198 id="UnknownNullness"
17199 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17200 errorLine1=" protected PendingIntent buildPendingIntent(Context context, final String action,"
17201 errorLine2=" ~~~~~~~">
17202 <location
17203 file="src/org/lineageos/eleven/appwidgets/AppWidgetBase.java"
17204 line="28"
17205 column="48"/>
17206 </issue>
17207
17208 <issue
17209 id="UnknownNullness"
17210 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17211 errorLine1=" protected PendingIntent buildPendingIntent(Context context, final String action,"
17212 errorLine2=" ~~~~~~">
17213 <location
17214 file="src/org/lineageos/eleven/appwidgets/AppWidgetBase.java"
17215 line="28"
17216 column="71"/>
17217 </issue>
17218
17219 <issue
17220 id="UnknownNullness"
17221 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17222 errorLine1=" final ComponentName serviceName) {"
17223 errorLine2=" ~~~~~~~~~~~~~">
17224 <location
17225 file="src/org/lineageos/eleven/appwidgets/AppWidgetBase.java"
17226 line="29"
17227 column="54"/>
17228 </issue>
17229
17230 <issue
17231 id="UnknownNullness"
17232 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17233 errorLine1=" public static synchronized AppWidgetLarge getInstance() {"
17234 errorLine2=" ~~~~~~~~~~~~~~">
17235 <location
17236 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17237 line="45"
17238 column="32"/>
17239 </issue>
17240
17241 <issue
17242 id="UnknownNullness"
17243 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17244 errorLine1=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
17245 errorLine2=" ~~~~~~~">
17246 <location
17247 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17248 line="53"
17249 column="32"/>
17250 </issue>
17251
17252 <issue
17253 id="UnknownNullness"
17254 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17255 errorLine1=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
17256 errorLine2=" ~~~~~~~~~~~~~~~~">
17257 <location
17258 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17259 line="53"
17260 column="55"/>
17261 </issue>
17262
17263 <issue
17264 id="UnknownNullness"
17265 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17266 errorLine1=" final int[] appWidgetIds) {"
17267 errorLine2=" ~~~~~">
17268 <location
17269 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17270 line="54"
17271 column="32"/>
17272 </issue>
17273
17274 <issue
17275 id="UnknownNullness"
17276 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17277 errorLine1=" public void notifyChange(final MusicPlaybackService service, final String what) {"
17278 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
17279 <location
17280 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17281 line="99"
17282 column="36"/>
17283 </issue>
17284
17285 <issue
17286 id="UnknownNullness"
17287 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17288 errorLine1=" public void notifyChange(final MusicPlaybackService service, final String what) {"
17289 errorLine2=" ~~~~~~">
17290 <location
17291 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17292 line="99"
17293 column="72"/>
17294 </issue>
17295
17296 <issue
17297 id="UnknownNullness"
17298 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17299 errorLine1=" public void performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
17300 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
17301 <location
17302 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17303 line="111"
17304 column="37"/>
17305 </issue>
17306
17307 <issue
17308 id="UnknownNullness"
17309 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17310 errorLine1=" public void performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
17311 errorLine2=" ~~~~~">
17312 <location
17313 file="src/org/lineageos/eleven/appwidgets/AppWidgetLarge.java"
17314 line="111"
17315 column="73"/>
17316 </issue>
17317
17318 <issue
17319 id="UnknownNullness"
17320 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17321 errorLine1=" public static synchronized AppWidgetLargeAlternate getInstance() {"
17322 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
17323 <location
17324 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17325 line="47"
17326 column="32"/>
17327 </issue>
17328
17329 <issue
17330 id="UnknownNullness"
17331 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17332 errorLine1=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
17333 errorLine2=" ~~~~~~~">
17334 <location
17335 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17336 line="55"
17337 column="32"/>
17338 </issue>
17339
17340 <issue
17341 id="UnknownNullness"
17342 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17343 errorLine1=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
17344 errorLine2=" ~~~~~~~~~~~~~~~~">
17345 <location
17346 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17347 line="55"
17348 column="55"/>
17349 </issue>
17350
17351 <issue
17352 id="UnknownNullness"
17353 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17354 errorLine1=" final int[] appWidgetIds) {"
17355 errorLine2=" ~~~~~">
17356 <location
17357 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17358 line="56"
17359 column="19"/>
17360 </issue>
17361
17362 <issue
17363 id="UnknownNullness"
17364 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17365 errorLine1=" public void notifyChange(final MusicPlaybackService service, final String what) {"
17366 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
17367 <location
17368 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17369 line="102"
17370 column="36"/>
17371 </issue>
17372
17373 <issue
17374 id="UnknownNullness"
17375 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17376 errorLine1=" public void notifyChange(final MusicPlaybackService service, final String what) {"
17377 errorLine2=" ~~~~~~">
17378 <location
17379 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17380 line="102"
17381 column="72"/>
17382 </issue>
17383
17384 <issue
17385 id="UnknownNullness"
17386 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17387 errorLine1=" public void performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
17388 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
17389 <location
17390 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17391 line="116"
17392 column="37"/>
17393 </issue>
17394
17395 <issue
17396 id="UnknownNullness"
17397 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17398 errorLine1=" public void performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
17399 errorLine2=" ~~~~~">
17400 <location
17401 file="src/org/lineageos/eleven/appwidgets/AppWidgetLargeAlternate.java"
17402 line="116"
17403 column="73"/>
17404 </issue>
17405
17406 <issue
17407 id="UnknownNullness"
17408 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17409 errorLine1=" public static synchronized AppWidgetSmall getInstance() {"
17410 errorLine2=" ~~~~~~~~~~~~~~">
17411 <location
17412 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17413 line="46"
17414 column="32"/>
17415 </issue>
17416
17417 <issue
17418 id="UnknownNullness"
17419 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17420 errorLine1=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
17421 errorLine2=" ~~~~~~~">
17422 <location
17423 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17424 line="54"
17425 column="32"/>
17426 </issue>
17427
17428 <issue
17429 id="UnknownNullness"
17430 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17431 errorLine1=" public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,"
17432 errorLine2=" ~~~~~~~~~~~~~~~~">
17433 <location
17434 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17435 line="54"
17436 column="55"/>
17437 </issue>
17438
17439 <issue
17440 id="UnknownNullness"
17441 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17442 errorLine1=" final int[] appWidgetIds) {"
17443 errorLine2=" ~~~~~">
17444 <location
17445 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17446 line="55"
17447 column="19"/>
17448 </issue>
17449
17450 <issue
17451 id="UnknownNullness"
17452 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17453 errorLine1=" public void notifyChange(final MusicPlaybackService service, final String what) {"
17454 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
17455 <location
17456 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17457 line="100"
17458 column="36"/>
17459 </issue>
17460
17461 <issue
17462 id="UnknownNullness"
17463 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17464 errorLine1=" public void notifyChange(final MusicPlaybackService service, final String what) {"
17465 errorLine2=" ~~~~~~">
17466 <location
17467 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17468 line="100"
17469 column="72"/>
17470 </issue>
17471
17472 <issue
17473 id="UnknownNullness"
17474 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17475 errorLine1=" public void performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
17476 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
17477 <location
17478 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17479 line="112"
17480 column="37"/>
17481 </issue>
17482
17483 <issue
17484 id="UnknownNullness"
17485 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17486 errorLine1=" public void performUpdate(final MusicPlaybackService service, final int[] appWidgetIds) {"
17487 errorLine2=" ~~~~~">
17488 <location
17489 file="src/org/lineageos/eleven/appwidgets/AppWidgetSmall.java"
17490 line="112"
17491 column="73"/>
17492 </issue>
17493
17494 <issue
17495 id="UnknownNullness"
17496 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17497 errorLine1=" public String mBucketLabel;"
17498 errorLine2=" ~~~~~~">
17499 <location
17500 file="src/org/lineageos/eleven/model/Artist.java"
17501 line="54"
17502 column="12"/>
17503 </issue>
17504
17505 <issue
17506 id="UnknownNullness"
17507 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17508 errorLine1=" public Artist(final long artistId, final String artistName,"
17509 errorLine2=" ~~~~~~">
17510 <location
17511 file="src/org/lineageos/eleven/model/Artist.java"
17512 line="64"
17513 column="46"/>
17514 </issue>
17515
17516 <issue
17517 id="UnknownNullness"
17518 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17519 errorLine1=" public ArtistAdapter(final FragmentActivity context, final int layoutId,"
17520 errorLine2=" ~~~~~~~~~~~~~~~~">
17521 <location
17522 file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
17523 line="78"
17524 column="32"/>
17525 </issue>
17526
17527 <issue
17528 id="UnknownNullness"
17529 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17530 errorLine1=" final Consumer&lt;Integer> onItemClickListener) {"
17531 errorLine2=" ~~~~~~~~~~~~~~~~~">
17532 <location
17533 file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
17534 line="79"
17535 column="32"/>
17536 </issue>
17537
17538 <issue
17539 id="UnknownNullness"
17540 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17541 errorLine1=" public void setPopupMenuClickedListener(IListener listener) {"
17542 errorLine2=" ~~~~~~~~~">
17543 <location
17544 file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
17545 line="140"
17546 column="45"/>
17547 </issue>
17548
17549 <issue
17550 id="UnknownNullness"
17551 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17552 errorLine1=" public Artist getItem(int position) {"
17553 errorLine2=" ~~~~~~">
17554 <location
17555 file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
17556 line="144"
17557 column="12"/>
17558 </issue>
17559
17560 <issue
17561 id="UnknownNullness"
17562 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17563 errorLine1=" public void setData(List&lt;Artist> artists) {"
17564 errorLine2=" ~~~~~~~~~~~~">
17565 <location
17566 file="src/org/lineageos/eleven/adapters/ArtistAdapter.java"
17567 line="148"
17568 column="25"/>
17569 </issue>
17570
17571 <issue
17572 id="UnknownNullness"
17573 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17574 errorLine1=" public ArtistDetailAlbumAdapter(final FragmentActivity activity) {"
17575 errorLine2=" ~~~~~~~~~~~~~~~~">
17576 <location
17577 file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
17578 line="72"
17579 column="43"/>
17580 </issue>
17581
17582 <issue
17583 id="UnknownNullness"
17584 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17585 errorLine1=" public Album getItem(int position) {"
17586 errorLine2=" ~~~~~">
17587 <location
17588 file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
17589 line="131"
17590 column="12"/>
17591 </issue>
17592
17593 <issue
17594 id="UnknownNullness"
17595 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17596 errorLine1=" public void setPopupMenuClickedListener(IListener listener) {"
17597 errorLine2=" ~~~~~~~~~">
17598 <location
17599 file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
17600 line="136"
17601 column="45"/>
17602 </issue>
17603
17604 <issue
17605 id="UnknownNullness"
17606 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17607 errorLine1=" public ViewHolder(View root) {"
17608 errorLine2=" ~~~~">
17609 <location
17610 file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
17611 line="145"
17612 column="27"/>
17613 </issue>
17614
17615 <issue
17616 id="UnknownNullness"
17617 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17618 errorLine1=" public void setData(List&lt;Album> albums) {"
17619 errorLine2=" ~~~~~~~~~~~">
17620 <location
17621 file="src/org/lineageos/eleven/adapters/ArtistDetailAlbumAdapter.java"
17622 line="153"
17623 column="25"/>
17624 </issue>
17625
17626 <issue
17627 id="UnknownNullness"
17628 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17629 errorLine1=" protected String getTitle() {"
17630 errorLine2=" ~~~~~~">
17631 <location
17632 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
17633 line="140"
17634 column="15"/>
17635 </issue>
17636
17637 <issue
17638 id="UnknownNullness"
17639 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17640 errorLine1=" protected PopupMenuHelper createActionMenuHelper() {"
17641 errorLine2=" ~~~~~~~~~~~~~~~">
17642 <location
17643 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
17644 line="171"
17645 column="15"/>
17646 </issue>
17647
17648 <issue
17649 id="UnknownNullness"
17650 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17651 errorLine1=" public PagerAdapter.MusicFragments getMusicFragmentParent() {"
17652 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
17653 <location
17654 file="src/org/lineageos/eleven/ui/fragments/ArtistDetailFragment.java"
17655 line="290"
17656 column="12"/>
17657 </issue>
17658
17659 <issue
17660 id="UnknownNullness"
17661 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17662 errorLine1=" public ArtistDetailSongAdapter(FragmentActivity activity) {"
17663 errorLine2=" ~~~~~~~~~~~~~~~~">
17664 <location
17665 file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
17666 line="31"
17667 column="36"/>
17668 </issue>
17669
17670 <issue
17671 id="UnknownNullness"
17672 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17673 errorLine1=" protected Config.IdType getSourceType() {"
17674 errorLine2=" ~~~~~~~~~~~~~">
17675 <location
17676 file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
17677 line="41"
17678 column="15"/>
17679 </issue>
17680
17681 <issue
17682 id="UnknownNullness"
17683 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17684 errorLine1=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
17685 errorLine2=" ~~~~~~">
17686 <location
17687 file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
17688 line="46"
17689 column="15"/>
17690 </issue>
17691
17692 <issue
17693 id="UnknownNullness"
17694 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17695 errorLine1=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
17696 errorLine2=" ~~~~">
17697 <location
17698 file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
17699 line="46"
17700 column="32"/>
17701 </issue>
17702
17703 <issue
17704 id="UnknownNullness"
17705 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17706 errorLine1=" protected Holder newHolder(View root, ImageFetcher fetcher) {"
17707 errorLine2=" ~~~~~~~~~~~~">
17708 <location
17709 file="src/org/lineageos/eleven/adapters/ArtistDetailSongAdapter.java"
17710 line="46"
17711 column="43"/>
17712 </issue>
17713
17714 <issue
17715 id="UnknownNullness"
17716 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17717 errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
17718 errorLine2=" ~~~~~~">
17719 <location
17720 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17721 line="102"
17722 column="32"/>
17723 </issue>
17724
17725 <issue
17726 id="UnknownNullness"
17727 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17728 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
17729 errorLine2=" ~~~~">
17730 <location
17731 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17732 line="120"
17733 column="12"/>
17734 </issue>
17735
17736 <issue
17737 id="UnknownNullness"
17738 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17739 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
17740 errorLine2=" ~~~~~~~~~~~~~~">
17741 <location
17742 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17743 line="120"
17744 column="36"/>
17745 </issue>
17746
17747 <issue
17748 id="UnknownNullness"
17749 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17750 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
17751 errorLine2=" ~~~~~~~~~">
17752 <location
17753 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17754 line="120"
17755 column="67"/>
17756 </issue>
17757
17758 <issue
17759 id="UnknownNullness"
17760 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17761 errorLine1=" final Bundle savedInstanceState) {"
17762 errorLine2=" ~~~~~~">
17763 <location
17764 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17765 line="121"
17766 column="36"/>
17767 </issue>
17768
17769 <issue
17770 id="UnknownNullness"
17771 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17772 errorLine1=" public Loader&lt;SectionListContainer&lt;Artist>> onCreateLoader(final int id, final Bundle args) {"
17773 errorLine2=" ~~~~~~">
17774 <location
17775 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17776 line="167"
17777 column="84"/>
17778 </issue>
17779
17780 <issue
17781 id="UnknownNullness"
17782 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17783 errorLine1=" final SectionListContainer&lt;Artist> data) {"
17784 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
17785 <location
17786 file="src/org/lineageos/eleven/ui/fragments/ArtistFragment.java"
17787 line="176"
17788 column="38"/>
17789 </issue>
17790
17791 <issue
17792 id="UnknownNullness"
17793 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17794 errorLine1=" public ArtistLoader(final Context context) {"
17795 errorLine2=" ~~~~~~~">
17796 <location
17797 file="src/org/lineageos/eleven/loaders/ArtistLoader.java"
17798 line="55"
17799 column="31"/>
17800 </issue>
17801
17802 <issue
17803 id="UnknownNullness"
17804 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17805 errorLine1=" public List&lt;Artist> loadInBackground() {"
17806 errorLine2=" ~~~~~~~~~~~~">
17807 <location
17808 file="src/org/lineageos/eleven/loaders/ArtistLoader.java"
17809 line="60"
17810 column="12"/>
17811 </issue>
17812
17813 <issue
17814 id="UnknownNullness"
17815 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17816 errorLine1=" public static Cursor makeArtistCursor(final Context context) {"
17817 errorLine2=" ~~~~~~">
17818 <location
17819 file="src/org/lineageos/eleven/loaders/ArtistLoader.java"
17820 line="119"
17821 column="19"/>
17822 </issue>
17823
17824 <issue
17825 id="UnknownNullness"
17826 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17827 errorLine1=" public static Cursor makeArtistCursor(final Context context) {"
17828 errorLine2=" ~~~~~~~">
17829 <location
17830 file="src/org/lineageos/eleven/loaders/ArtistLoader.java"
17831 line="119"
17832 column="49"/>
17833 </issue>
17834
17835 <issue
17836 id="UnknownNullness"
17837 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17838 errorLine1=" public ArtistPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
17839 errorLine2=" ~~~~~~~~">
17840 <location
17841 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17842 line="33"
17843 column="34"/>
17844 </issue>
17845
17846 <issue
17847 id="UnknownNullness"
17848 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17849 errorLine1=" public ArtistPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
17850 errorLine2=" ~~~~~~~~~~~~~~~">
17851 <location
17852 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17853 line="33"
17854 column="53"/>
17855 </issue>
17856
17857 <issue
17858 id="UnknownNullness"
17859 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17860 errorLine1=" public abstract Artist getArtist(int position);"
17861 errorLine2=" ~~~~~~">
17862 <location
17863 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17864 line="38"
17865 column="21"/>
17866 </issue>
17867
17868 <issue
17869 id="UnknownNullness"
17870 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17871 errorLine1=" public PopupMenuType onPreparePopupMenu(int position) {"
17872 errorLine2=" ~~~~~~~~~~~~~">
17873 <location
17874 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17875 line="41"
17876 column="12"/>
17877 </issue>
17878
17879 <issue
17880 id="UnknownNullness"
17881 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17882 errorLine1=" protected Config.IdType getSourceType() {"
17883 errorLine2=" ~~~~~~~~~~~~~">
17884 <location
17885 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17886 line="52"
17887 column="15"/>
17888 </issue>
17889
17890 <issue
17891 id="UnknownNullness"
17892 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17893 errorLine1=" protected long[] getIdList() {"
17894 errorLine2=" ~~~~~~">
17895 <location
17896 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17897 line="57"
17898 column="15"/>
17899 </issue>
17900
17901 <issue
17902 id="UnknownNullness"
17903 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17904 errorLine1=" protected String getArtistName() {"
17905 errorLine2=" ~~~~~~">
17906 <location
17907 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17908 line="69"
17909 column="15"/>
17910 </issue>
17911
17912 <issue
17913 id="UnknownNullness"
17914 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17915 errorLine1=" public boolean onMenuItemClick(MenuItem item) {"
17916 errorLine2=" ~~~~~~~~">
17917 <location
17918 file="src/org/lineageos/eleven/utils/ArtistPopupMenuHelper.java"
17919 line="74"
17920 column="36"/>
17921 </issue>
17922
17923 <issue
17924 id="UnknownNullness"
17925 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17926 errorLine1=" public AudioButton(final Context context, final AttributeSet attrs) {"
17927 errorLine2=" ~~~~~~~">
17928 <location
17929 file="src/org/lineageos/eleven/widgets/AudioButton.java"
17930 line="36"
17931 column="30"/>
17932 </issue>
17933
17934 <issue
17935 id="UnknownNullness"
17936 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17937 errorLine1=" public AudioButton(final Context context, final AttributeSet attrs) {"
17938 errorLine2=" ~~~~~~~~~~~~">
17939 <location
17940 file="src/org/lineageos/eleven/widgets/AudioButton.java"
17941 line="36"
17942 column="53"/>
17943 </issue>
17944
17945 <issue
17946 id="UnknownNullness"
17947 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17948 errorLine1=" public boolean onLongClick(final View view) {"
17949 errorLine2=" ~~~~">
17950 <location
17951 file="src/org/lineageos/eleven/widgets/AudioButton.java"
17952 line="47"
17953 column="38"/>
17954 </issue>
17955
17956 <issue
17957 id="UnknownNullness"
17958 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17959 errorLine1=" public View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,"
17960 errorLine2=" ~~~~">
17961 <location
17962 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
17963 line="121"
17964 column="12"/>
17965 </issue>
17966
17967 <issue
17968 id="UnknownNullness"
17969 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17970 errorLine1=" public View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,"
17971 errorLine2=" ~~~~~~~~~">
17972 <location
17973 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
17974 line="121"
17975 column="76"/>
17976 </issue>
17977
17978 <issue
17979 id="UnknownNullness"
17980 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17981 errorLine1=" final Bundle savedInstanceState) {"
17982 errorLine2=" ~~~~~~">
17983 <location
17984 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
17985 line="122"
17986 column="36"/>
17987 </issue>
17988
17989 <issue
17990 id="UnknownNullness"
17991 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
17992 errorLine1=" public boolean onOptionsItemSelected(MenuItem item) {"
17993 errorLine2=" ~~~~~~~~">
17994 <location
17995 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
17996 line="192"
17997 column="42"/>
17998 </issue>
17999
18000 <issue
18001 id="UnknownNullness"
18002 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18003 errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
18004 errorLine2=" ~~~~~~~~~~~~~">
18005 <location
18006 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
18007 line="262"
18008 column="42"/>
18009 </issue>
18010
18011 <issue
18012 id="UnknownNullness"
18013 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18014 errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
18015 errorLine2=" ~~~~~~~">
18016 <location
18017 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
18018 line="262"
18019 column="68"/>
18020 </issue>
18021
18022 <issue
18023 id="UnknownNullness"
18024 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18025 errorLine1=" public void onServiceDisconnected(ComponentName name) {"
18026 errorLine2=" ~~~~~~~~~~~~~">
18027 <location
18028 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
18029 line="272"
18030 column="39"/>
18031 </issue>
18032
18033 <issue
18034 id="UnknownNullness"
18035 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18036 errorLine1=" public void onLyrics(String lyrics) {"
18037 errorLine2=" ~~~~~~">
18038 <location
18039 file="src/org/lineageos/eleven/ui/fragments/AudioPlayerFragment.java"
18040 line="489"
18041 column="26"/>
18042 </issue>
18043
18044 <issue
18045 id="UnknownNullness"
18046 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18047 errorLine1=" public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {"
18048 errorLine2=" ~~~~~~~">
18049 <location
18050 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18051 line="93"
18052 column="35"/>
18053 </issue>
18054
18055 <issue
18056 id="UnknownNullness"
18057 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18058 errorLine1=" public void onStartTrackingTouch(SeekBar seekBar) {"
18059 errorLine2=" ~~~~~~~">
18060 <location
18061 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18062 line="100"
18063 column="38"/>
18064 </issue>
18065
18066 <issue
18067 id="UnknownNullness"
18068 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18069 errorLine1=" public void onStopTrackingTouch(SeekBar seekBar) {"
18070 errorLine2=" ~~~~~~~">
18071 <location
18072 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18073 line="109"
18074 column="37"/>
18075 </issue>
18076
18077 <issue
18078 id="UnknownNullness"
18079 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18080 errorLine1=" public void onCreate(Bundle savedInstanceState) {"
18081 errorLine2=" ~~~~~~">
18082 <location
18083 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18084 line="187"
18085 column="26"/>
18086 </issue>
18087
18088 <issue
18089 id="UnknownNullness"
18090 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18091 errorLine1=" public Object onRetainCustomNonConfigurationInstance() {"
18092 errorLine2=" ~~~~~~">
18093 <location
18094 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18095 line="258"
18096 column="12"/>
18097 </issue>
18098
18099 <issue
18100 id="UnknownNullness"
18101 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18102 errorLine1=" public void onCompletion(MediaPlayer mp) {"
18103 errorLine2=" ~~~~~~~~~~~">
18104 <location
18105 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18106 line="479"
18107 column="30"/>
18108 </issue>
18109
18110 <issue
18111 id="UnknownNullness"
18112 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18113 errorLine1=" public boolean onError(MediaPlayer mp, int what, int extra) {"
18114 errorLine2=" ~~~~~~~~~~~">
18115 <location
18116 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18117 line="488"
18118 column="28"/>
18119 </issue>
18120
18121 <issue
18122 id="UnknownNullness"
18123 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18124 errorLine1=" public void onPrepared(MediaPlayer mp) {"
18125 errorLine2=" ~~~~~~~~~~~">
18126 <location
18127 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18128 line="521"
18129 column="28"/>
18130 </issue>
18131
18132 <issue
18133 id="UnknownNullness"
18134 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18135 errorLine1=" public boolean onTouch(View v, MotionEvent event) {"
18136 errorLine2=" ~~~~">
18137 <location
18138 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18139 line="527"
18140 column="28"/>
18141 </issue>
18142
18143 <issue
18144 id="UnknownNullness"
18145 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18146 errorLine1=" public boolean onTouch(View v, MotionEvent event) {"
18147 errorLine2=" ~~~~~~~~~~~">
18148 <location
18149 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18150 line="527"
18151 column="36"/>
18152 </issue>
18153
18154 <issue
18155 id="UnknownNullness"
18156 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18157 errorLine1=" public void onClick(View v) {"
18158 errorLine2=" ~~~~">
18159 <location
18160 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18161 line="546"
18162 column="25"/>
18163 </issue>
18164
18165 <issue
18166 id="UnknownNullness"
18167 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18168 errorLine1=" public boolean onKeyDown(int keyCode, KeyEvent keyEvent) {"
18169 errorLine2=" ~~~~~~~~">
18170 <location
18171 file="src/org/lineageos/eleven/ui/activities/preview/AudioPreviewActivity.java"
18172 line="664"
18173 column="43"/>
18174 </issue>
18175
18176 <issue
18177 id="UnknownNullness"
18178 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18179 errorLine1=" protected void init(final Bundle savedInstanceState) {"
18180 errorLine2=" ~~~~~~">
18181 <location
18182 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18183 line="117"
18184 column="31"/>
18185 </issue>
18186
18187 <issue
18188 id="UnknownNullness"
18189 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18190 errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
18191 errorLine2=" ~~~~~~~~~~~~~">
18192 <location
18193 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18194 line="151"
18195 column="42"/>
18196 </issue>
18197
18198 <issue
18199 id="UnknownNullness"
18200 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18201 errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
18202 errorLine2=" ~~~~~~~">
18203 <location
18204 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18205 line="151"
18206 column="68"/>
18207 </issue>
18208
18209 <issue
18210 id="UnknownNullness"
18211 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18212 errorLine1=" public void onServiceDisconnected(final ComponentName name) {"
18213 errorLine2=" ~~~~~~~~~~~~~">
18214 <location
18215 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18216 line="161"
18217 column="45"/>
18218 </issue>
18219
18220 <issue
18221 id="UnknownNullness"
18222 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18223 errorLine1=" public boolean onCreateOptionsMenu(final Menu menu) {"
18224 errorLine2=" ~~~~">
18225 <location
18226 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18227 line="165"
18228 column="46"/>
18229 </issue>
18230
18231 <issue
18232 id="UnknownNullness"
18233 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18234 errorLine1=" public boolean onOptionsItemSelected(final MenuItem item) {"
18235 errorLine2=" ~~~~~~~~">
18236 <location
18237 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18238 line="173"
18239 column="48"/>
18240 </issue>
18241
18242 <issue
18243 id="UnknownNullness"
18244 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18245 errorLine1=" public void setupActionBar(String title) {"
18246 errorLine2=" ~~~~~~">
18247 <location
18248 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18249 line="243"
18250 column="32"/>
18251 </issue>
18252
18253 <issue
18254 id="UnknownNullness"
18255 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18256 errorLine1=" public void setActionBarTitle(String title) {"
18257 errorLine2=" ~~~~~~">
18258 <location
18259 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18260 line="254"
18261 column="35"/>
18262 </issue>
18263
18264 <issue
18265 id="UnknownNullness"
18266 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18267 errorLine1=" public void setMusicStateListenerListener(final MusicStateListener status) {"
18268 errorLine2=" ~~~~~~~~~~~~~~~~~~">
18269 <location
18270 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18271 line="411"
18272 column="53"/>
18273 </issue>
18274
18275 <issue
18276 id="UnknownNullness"
18277 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18278 errorLine1=" public void removeMusicStateListenerListener(final MusicStateListener status) {"
18279 errorLine2=" ~~~~~~~~~~~~~~~~~~">
18280 <location
18281 file="src/org/lineageos/eleven/ui/activities/BaseActivity.java"
18282 line="424"
18283 column="56"/>
18284 </issue>
18285
18286 <issue
18287 id="UnknownNullness"
18288 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18289 errorLine1=" protected ViewGroup mRootView;"
18290 errorLine2=" ~~~~~~~~~">
18291 <location
18292 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18293 line="35"
18294 column="15"/>
18295 </issue>
18296
18297 <issue
18298 id="UnknownNullness"
18299 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18300 errorLine1=" protected abstract String getTitle();"
18301 errorLine2=" ~~~~~~">
18302 <location
18303 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18304 line="37"
18305 column="24"/>
18306 </issue>
18307
18308 <issue
18309 id="UnknownNullness"
18310 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18311 errorLine1=" public void onCreate(Bundle savedInstanceState) {"
18312 errorLine2=" ~~~~~~">
18313 <location
18314 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18315 line="46"
18316 column="26"/>
18317 </issue>
18318
18319 <issue
18320 id="UnknownNullness"
18321 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18322 errorLine1=" protected HomeActivity getContainingActivity() {"
18323 errorLine2=" ~~~~~~~~~~~~">
18324 <location
18325 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18326 line="60"
18327 column="15"/>
18328 </issue>
18329
18330 <issue
18331 id="UnknownNullness"
18332 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18333 errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
18334 errorLine2=" ~~~~">
18335 <location
18336 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18337 line="65"
18338 column="18"/>
18339 </issue>
18340
18341 <issue
18342 id="UnknownNullness"
18343 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18344 errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
18345 errorLine2=" ~~~~~~~~~~~~~~">
18346 <location
18347 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18348 line="65"
18349 column="36"/>
18350 </issue>
18351
18352 <issue
18353 id="UnknownNullness"
18354 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18355 errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
18356 errorLine2=" ~~~~~~~~~">
18357 <location
18358 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18359 line="65"
18360 column="61"/>
18361 </issue>
18362
18363 <issue
18364 id="UnknownNullness"
18365 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18366 errorLine1=" Bundle savedInstanceState) {"
18367 errorLine2=" ~~~~~~">
18368 <location
18369 file="src/org/lineageos/eleven/ui/fragments/BaseFragment.java"
18370 line="66"
18371 column="36"/>
18372 </issue>
18373
18374 <issue
18375 id="UnknownNullness"
18376 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18377 errorLine1=" protected AlertDialog mPlaylistDialog;"
18378 errorLine2=" ~~~~~~~~~~~">
18379 <location
18380 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18381 line="47"
18382 column="15"/>
18383 </issue>
18384
18385 <issue
18386 id="UnknownNullness"
18387 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18388 errorLine1=" protected EditText mPlaylist;"
18389 errorLine2=" ~~~~~~~~">
18390 <location
18391 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18392 line="50"
18393 column="15"/>
18394 </issue>
18395
18396 <issue
18397 id="UnknownNullness"
18398 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18399 errorLine1=" protected Button mSaveButton;"
18400 errorLine2=" ~~~~~~">
18401 <location
18402 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18403 line="53"
18404 column="15"/>
18405 </issue>
18406
18407 <issue
18408 id="UnknownNullness"
18409 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18410 errorLine1=" protected String mPrompt;"
18411 errorLine2=" ~~~~~~">
18412 <location
18413 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18414 line="56"
18415 column="15"/>
18416 </issue>
18417
18418 <issue
18419 id="UnknownNullness"
18420 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18421 errorLine1=" protected String mDefaultName;"
18422 errorLine2=" ~~~~~~">
18423 <location
18424 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18425 line="59"
18426 column="15"/>
18427 </issue>
18428
18429 <issue
18430 id="UnknownNullness"
18431 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18432 errorLine1=" public void onTextChanged(CharSequence s, int start, int before, int count) {"
18433 errorLine2=" ~~~~~~~~~~~~">
18434 <location
18435 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18436 line="103"
18437 column="31"/>
18438 </issue>
18439
18440 <issue
18441 id="UnknownNullness"
18442 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18443 errorLine1=" public void beforeTextChanged(final CharSequence s, final int start, final int count,"
18444 errorLine2=" ~~~~~~~~~~~~">
18445 <location
18446 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18447 line="108"
18448 column="41"/>
18449 </issue>
18450
18451 <issue
18452 id="UnknownNullness"
18453 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18454 errorLine1=" public abstract void initialize(Bundle savedInstanceState);"
18455 errorLine2=" ~~~~~~">
18456 <location
18457 file="src/org/lineageos/eleven/menu/BasePlaylistDialog.java"
18458 line="116"
18459 column="37"/>
18460 </issue>
18461
18462 <issue
18463 id="UnknownNullness"
18464 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18465 errorLine1=" protected ViewGroup mRootView;"
18466 errorLine2=" ~~~~~~~~~">
18467 <location
18468 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18469 line="69"
18470 column="15"/>
18471 </issue>
18472
18473 <issue
18474 id="UnknownNullness"
18475 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18476 errorLine1=" protected SongListAdapter mAdapter;"
18477 errorLine2=" ~~~~~~~~~~~~~~~">
18478 <location
18479 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18480 line="74"
18481 column="15"/>
18482 </issue>
18483
18484 <issue
18485 id="UnknownNullness"
18486 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18487 errorLine1=" protected RecyclerView mListView;"
18488 errorLine2=" ~~~~~~~~~~~~">
18489 <location
18490 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18491 line="79"
18492 column="15"/>
18493 </issue>
18494
18495 <issue
18496 id="UnknownNullness"
18497 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18498 errorLine1=" protected PopupMenuHelper mPopupMenuHelper;"
18499 errorLine2=" ~~~~~~~~~~~~~~~">
18500 <location
18501 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18502 line="84"
18503 column="15"/>
18504 </issue>
18505
18506 <issue
18507 id="UnknownNullness"
18508 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18509 errorLine1=" protected LoadingEmptyContainer mLoadingEmptyContainer;"
18510 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
18511 <location
18512 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18513 line="89"
18514 column="15"/>
18515 </issue>
18516
18517 <issue
18518 id="UnknownNullness"
18519 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18520 errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
18521 errorLine2=" ~~~~~~">
18522 <location
18523 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18524 line="98"
18525 column="32"/>
18526 </issue>
18527
18528 <issue
18529 id="UnknownNullness"
18530 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18531 errorLine1=" protected Config.IdType getFragmentSourceType() {"
18532 errorLine2=" ~~~~~~~~~~~~~">
18533 <location
18534 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18535 line="133"
18536 column="15"/>
18537 </issue>
18538
18539 <issue
18540 id="UnknownNullness"
18541 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18542 errorLine1=" protected void updateMenuIds(TreeSet&lt;Integer> set) {"
18543 errorLine2=" ~~~~~~~~~~~~~~~~">
18544 <location
18545 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18546 line="137"
18547 column="34"/>
18548 </issue>
18549
18550 <issue
18551 id="UnknownNullness"
18552 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18553 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
18554 errorLine2=" ~~~~">
18555 <location
18556 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18557 line="142"
18558 column="12"/>
18559 </issue>
18560
18561 <issue
18562 id="UnknownNullness"
18563 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18564 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
18565 errorLine2=" ~~~~~~~~~~~~~~">
18566 <location
18567 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18568 line="142"
18569 column="36"/>
18570 </issue>
18571
18572 <issue
18573 id="UnknownNullness"
18574 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18575 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
18576 errorLine2=" ~~~~~~~~~">
18577 <location
18578 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18579 line="142"
18580 column="67"/>
18581 </issue>
18582
18583 <issue
18584 id="UnknownNullness"
18585 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18586 errorLine1=" final Bundle savedInstanceState) {"
18587 errorLine2=" ~~~~~~">
18588 <location
18589 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18590 line="143"
18591 column="36"/>
18592 </issue>
18593
18594 <issue
18595 id="UnknownNullness"
18596 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18597 errorLine1=" public void setupNoResultsContainer(final NoResultsContainer empty) {"
18598 errorLine2=" ~~~~~~~~~~~~~~~~~~">
18599 <location
18600 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18601 line="187"
18602 column="47"/>
18603 </issue>
18604
18605 <issue
18606 id="UnknownNullness"
18607 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18608 errorLine1=" final SectionListContainer&lt;Song> data) {"
18609 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~">
18610 <location
18611 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18612 line="204"
18613 column="38"/>
18614 </issue>
18615
18616 <issue
18617 id="UnknownNullness"
18618 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18619 errorLine1=" protected long[] getSongIdsFromAdapter() {"
18620 errorLine2=" ~~~~~~">
18621 <location
18622 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18623 line="223"
18624 column="15"/>
18625 </issue>
18626
18627 <issue
18628 id="UnknownNullness"
18629 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18630 errorLine1=" protected SongListAdapter createAdapter() {"
18631 errorLine2=" ~~~~~~~~~~~~~~~">
18632 <location
18633 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18634 line="257"
18635 column="15"/>
18636 </issue>
18637
18638 <issue
18639 id="UnknownNullness"
18640 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18641 errorLine1=" public LoaderManager getFragmentLoaderManager() {"
18642 errorLine2=" ~~~~~~~~~~~~~">
18643 <location
18644 file="src/org/lineageos/eleven/ui/fragments/profile/BasicSongFragment.java"
18645 line="272"
18646 column="12"/>
18647 </issue>
18648
18649 <issue
18650 id="UnknownNullness"
18651 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18652 errorLine1=" public BitmapWithColors(Bitmap bitmap, int bitmapKey) {"
18653 errorLine2=" ~~~~~~">
18654 <location
18655 file="src/org/lineageos/eleven/utils/colors/BitmapWithColors.java"
18656 line="80"
18657 column="29"/>
18658 </issue>
18659
18660 <issue
18661 id="UnknownNullness"
18662 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18663 errorLine1=" public BitmapWithColors(Bitmap bitmap, int bitmapKey, int vibrantColor, int vibrantDarkColor) {"
18664 errorLine2=" ~~~~~~">
18665 <location
18666 file="src/org/lineageos/eleven/utils/colors/BitmapWithColors.java"
18667 line="91"
18668 column="29"/>
18669 </issue>
18670
18671 <issue
18672 id="UnknownNullness"
18673 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18674 errorLine1=" public Bitmap getBitmap() {"
18675 errorLine2=" ~~~~~~">
18676 <location
18677 file="src/org/lineageos/eleven/utils/colors/BitmapWithColors.java"
18678 line="97"
18679 column="12"/>
18680 </issue>
18681
18682 <issue
18683 id="UnknownNullness"
18684 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18685 errorLine1=" protected Drawable mFromDrawable;"
18686 errorLine2=" ~~~~~~~~">
18687 <location
18688 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18689 line="49"
18690 column="15"/>
18691 </issue>
18692
18693 <issue
18694 id="UnknownNullness"
18695 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18696 errorLine1=" public BitmapWorkerTask(final String key, final ImageView imageView, final ImageType imageType,"
18697 errorLine2=" ~~~~~~">
18698 <location
18699 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18700 line="72"
18701 column="35"/>
18702 </issue>
18703
18704 <issue
18705 id="UnknownNullness"
18706 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18707 errorLine1=" public BitmapWorkerTask(final String key, final ImageView imageView, final ImageType imageType,"
18708 errorLine2=" ~~~~~~~~~">
18709 <location
18710 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18711 line="72"
18712 column="53"/>
18713 </issue>
18714
18715 <issue
18716 id="UnknownNullness"
18717 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18718 errorLine1=" public BitmapWorkerTask(final String key, final ImageView imageView, final ImageType imageType,"
18719 errorLine2=" ~~~~~~~~~">
18720 <location
18721 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18722 line="72"
18723 column="80"/>
18724 </issue>
18725
18726 <issue
18727 id="UnknownNullness"
18728 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18729 errorLine1=" final Drawable fromDrawable, final Context context) {"
18730 errorLine2=" ~~~~~~~~">
18731 <location
18732 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18733 line="73"
18734 column="35"/>
18735 </issue>
18736
18737 <issue
18738 id="UnknownNullness"
18739 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18740 errorLine1=" final Drawable fromDrawable, final Context context) {"
18741 errorLine2=" ~~~~~~~">
18742 <location
18743 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18744 line="73"
18745 column="64"/>
18746 </issue>
18747
18748 <issue
18749 id="UnknownNullness"
18750 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18751 errorLine1=" public BitmapWorkerTask(final String key, final ImageView imageView,"
18752 errorLine2=" ~~~~~~">
18753 <location
18754 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18755 line="86"
18756 column="35"/>
18757 </issue>
18758
18759 <issue
18760 id="UnknownNullness"
18761 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18762 errorLine1=" public BitmapWorkerTask(final String key, final ImageView imageView,"
18763 errorLine2=" ~~~~~~~~~">
18764 <location
18765 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18766 line="86"
18767 column="53"/>
18768 </issue>
18769
18770 <issue
18771 id="UnknownNullness"
18772 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18773 errorLine1=" final ImageType imageType, final Drawable fromDrawable,"
18774 errorLine2=" ~~~~~~~~~">
18775 <location
18776 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18777 line="87"
18778 column="35"/>
18779 </issue>
18780
18781 <issue
18782 id="UnknownNullness"
18783 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18784 errorLine1=" final ImageType imageType, final Drawable fromDrawable,"
18785 errorLine2=" ~~~~~~~~">
18786 <location
18787 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18788 line="87"
18789 column="62"/>
18790 </issue>
18791
18792 <issue
18793 id="UnknownNullness"
18794 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18795 errorLine1=" final Context context, final boolean scaleImgToView) {"
18796 errorLine2=" ~~~~~~~">
18797 <location
18798 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18799 line="88"
18800 column="35"/>
18801 </issue>
18802
18803 <issue
18804 id="UnknownNullness"
18805 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18806 errorLine1=" protected ImageView getAttachedImageView() {"
18807 errorLine2=" ~~~~~~~~~">
18808 <location
18809 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18810 line="109"
18811 column="15"/>
18812 </issue>
18813
18814 <issue
18815 id="UnknownNullness"
18816 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18817 errorLine1=" protected Bitmap getBitmapInBackground(final String... params) {"
18818 errorLine2=" ~~~~~~">
18819 <location
18820 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18821 line="128"
18822 column="15"/>
18823 </issue>
18824
18825 <issue
18826 id="UnknownNullness"
18827 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18828 errorLine1=" protected Bitmap getBitmapInBackground(final String... params) {"
18829 errorLine2=" ~~~~~~~~~">
18830 <location
18831 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18832 line="128"
18833 column="50"/>
18834 </issue>
18835
18836 <issue
18837 id="UnknownNullness"
18838 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18839 errorLine1=" protected TransitionDrawable createImageTransitionDrawable(final Bitmap bitmap) {"
18840 errorLine2=" ~~~~~~~~~~~~~~~~~~">
18841 <location
18842 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18843 line="139"
18844 column="15"/>
18845 </issue>
18846
18847 <issue
18848 id="UnknownNullness"
18849 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18850 errorLine1=" protected TransitionDrawable createImageTransitionDrawable(final Bitmap bitmap) {"
18851 errorLine2=" ~~~~~~">
18852 <location
18853 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18854 line="139"
18855 column="70"/>
18856 </issue>
18857
18858 <issue
18859 id="UnknownNullness"
18860 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18861 errorLine1=" protected TransitionDrawable createImageTransitionDrawable(final Bitmap bitmap,"
18862 errorLine2=" ~~~~~~~~~~~~~~~~~~">
18863 <location
18864 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18865 line="151"
18866 column="15"/>
18867 </issue>
18868
18869 <issue
18870 id="UnknownNullness"
18871 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18872 errorLine1=" protected TransitionDrawable createImageTransitionDrawable(final Bitmap bitmap,"
18873 errorLine2=" ~~~~~~">
18874 <location
18875 file="src/org/lineageos/eleven/cache/BitmapWorkerTask.java"
18876 line="151"
18877 column="70"/>
18878 </issue>
18879
18880 <issue
18881 id="UnknownNullness"
18882 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18883 errorLine1=" public TransitionDrawable mImageViewBitmapDrawable;"
18884 errorLine2=" ~~~~~~~~~~~~~~~~~~">
18885 <location
18886 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18887 line="41"
18888 column="16"/>
18889 </issue>
18890
18891 <issue
18892 id="UnknownNullness"
18893 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18894 errorLine1=" public BlurBitmapWorkerTask(final String key, final AlbumScrimImage albumScrimImage,"
18895 errorLine2=" ~~~~~~">
18896 <location
18897 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18898 line="58"
18899 column="39"/>
18900 </issue>
18901
18902 <issue
18903 id="UnknownNullness"
18904 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18905 errorLine1=" public BlurBitmapWorkerTask(final String key, final AlbumScrimImage albumScrimImage,"
18906 errorLine2=" ~~~~~~~~~~~~~~~">
18907 <location
18908 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18909 line="58"
18910 column="57"/>
18911 </issue>
18912
18913 <issue
18914 id="UnknownNullness"
18915 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18916 errorLine1=" final ImageType imageType, final Drawable fromDrawable,"
18917 errorLine2=" ~~~~~~~~~">
18918 <location
18919 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18920 line="59"
18921 column="39"/>
18922 </issue>
18923
18924 <issue
18925 id="UnknownNullness"
18926 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18927 errorLine1=" final ImageType imageType, final Drawable fromDrawable,"
18928 errorLine2=" ~~~~~~~~">
18929 <location
18930 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18931 line="59"
18932 column="66"/>
18933 </issue>
18934
18935 <issue
18936 id="UnknownNullness"
18937 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18938 errorLine1=" final Context context) {"
18939 errorLine2=" ~~~~~~~">
18940 <location
18941 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18942 line="60"
18943 column="39"/>
18944 </issue>
18945
18946 <issue
18947 id="UnknownNullness"
18948 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18949 errorLine1=" protected ResultContainer doInBackground(final String... params) {"
18950 errorLine2=" ~~~~~~~~~~~~~~~">
18951 <location
18952 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18953 line="72"
18954 column="15"/>
18955 </issue>
18956
18957 <issue
18958 id="UnknownNullness"
18959 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18960 errorLine1=" protected ResultContainer doInBackground(final String... params) {"
18961 errorLine2=" ~~~~~~~~~">
18962 <location
18963 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18964 line="72"
18965 column="52"/>
18966 </issue>
18967
18968 <issue
18969 id="UnknownNullness"
18970 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18971 errorLine1=" protected void onPostExecute(ResultContainer resultContainer) {"
18972 errorLine2=" ~~~~~~~~~~~~~~~">
18973 <location
18974 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18975 line="94"
18976 column="34"/>
18977 </issue>
18978
18979 <issue
18980 id="UnknownNullness"
18981 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18982 errorLine1=" protected final ImageView getAttachedImageView() {"
18983 errorLine2=" ~~~~~~~~~">
18984 <location
18985 file="src/org/lineageos/eleven/cache/BlurBitmapWorkerTask.java"
18986 line="115"
18987 column="21"/>
18988 </issue>
18989
18990 <issue
18991 id="UnknownNullness"
18992 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
18993 errorLine1=" void onColorExtracted(final BitmapWithColors bitmapWithColors);"
18994 errorLine2=" ~~~~~~~~~~~~~~~~">
18995 <location
18996 file="src/org/lineageos/eleven/utils/colors/ColorExtractor.java"
18997 line="26"
18998 column="37"/>
18999 </issue>
19000
19001 <issue
19002 id="UnknownNullness"
19003 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19004 errorLine1=" public static void extractColors(final ImageFetcher imageFetcher,"
19005 errorLine2=" ~~~~~~~~~~~~">
19006 <location
19007 file="src/org/lineageos/eleven/utils/colors/ColorExtractor.java"
19008 line="29"
19009 column="44"/>
19010 </issue>
19011
19012 <issue
19013 id="UnknownNullness"
19014 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19015 errorLine1=" final ColorExtractor.Callback callback) {"
19016 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
19017 <location
19018 file="src/org/lineageos/eleven/utils/colors/ColorExtractor.java"
19019 line="30"
19020 column="44"/>
19021 </issue>
19022
19023 <issue
19024 id="UnknownNullness"
19025 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19026 errorLine1=" public ColorPanelView(final Context context) {"
19027 errorLine2=" ~~~~~~~">
19028 <location
19029 file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
19030 line="56"
19031 column="33"/>
19032 </issue>
19033
19034 <issue
19035 id="UnknownNullness"
19036 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19037 errorLine1=" public ColorPanelView(final Context context, final AttributeSet attrs) {"
19038 errorLine2=" ~~~~~~~">
19039 <location
19040 file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
19041 line="60"
19042 column="33"/>
19043 </issue>
19044
19045 <issue
19046 id="UnknownNullness"
19047 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19048 errorLine1=" public ColorPanelView(final Context context, final AttributeSet attrs) {"
19049 errorLine2=" ~~~~~~~~~~~~">
19050 <location
19051 file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
19052 line="60"
19053 column="56"/>
19054 </issue>
19055
19056 <issue
19057 id="UnknownNullness"
19058 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19059 errorLine1=" public ColorPanelView(final Context context, final AttributeSet attrs, final int defStyle) {"
19060 errorLine2=" ~~~~~~~">
19061 <location
19062 file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
19063 line="64"
19064 column="33"/>
19065 </issue>
19066
19067 <issue
19068 id="UnknownNullness"
19069 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19070 errorLine1=" public ColorPanelView(final Context context, final AttributeSet attrs, final int defStyle) {"
19071 errorLine2=" ~~~~~~~~~~~~">
19072 <location
19073 file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
19074 line="64"
19075 column="56"/>
19076 </issue>
19077
19078 <issue
19079 id="UnknownNullness"
19080 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19081 errorLine1=" protected void onDraw(final Canvas canvas) {"
19082 errorLine2=" ~~~~~~">
19083 <location
19084 file="src/org/lineageos/eleven/widgets/ColorPanelView.java"
19085 line="76"
19086 column="33"/>
19087 </issue>
19088
19089 <issue
19090 id="UnknownNullness"
19091 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19092 errorLine1=" public static SmartPlaylistType getTypeById(long id) {"
19093 errorLine2=" ~~~~~~~~~~~~~~~~~">
19094 <location
19095 file="src/org/lineageos/eleven/Config.java"
19096 line="84"
19097 column="23"/>
19098 </issue>
19099
19100 <issue
19101 id="UnknownNullness"
19102 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19103 errorLine1=" public static IdType getTypeById(int id) {"
19104 errorLine2=" ~~~~~~">
19105 <location
19106 file="src/org/lineageos/eleven/Config.java"
19107 line="111"
19108 column="23"/>
19109 </issue>
19110
19111 <issue
19112 id="UnknownNullness"
19113 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19114 errorLine1=" public static void show(Fragment target, int requestCode, int titleId, int okId) {"
19115 errorLine2=" ~~~~~~~~">
19116 <location
19117 file="src/org/lineageos/eleven/menu/ConfirmDialog.java"
19118 line="47"
19119 column="29"/>
19120 </issue>
19121
19122 <issue
19123 id="UnknownNullness"
19124 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19125 errorLine1=" public Dialog onCreateDialog(final Bundle savedInstanceState) {"
19126 errorLine2=" ~~~~~~">
19127 <location
19128 file="src/org/lineageos/eleven/menu/ConfirmDialog.java"
19129 line="59"
19130 column="40"/>
19131 </issue>
19132
19133 <issue
19134 id="UnknownNullness"
19135 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19136 errorLine1=" public static CreateNewPlaylist getInstance(final long[] list) {"
19137 errorLine2=" ~~~~~~~~~~~~~~~~~">
19138 <location
19139 file="src/org/lineageos/eleven/menu/CreateNewPlaylist.java"
19140 line="41"
19141 column="19"/>
19142 </issue>
19143
19144 <issue
19145 id="UnknownNullness"
19146 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19147 errorLine1=" public static CreateNewPlaylist getInstance(final long[] list) {"
19148 errorLine2=" ~~~~~~">
19149 <location
19150 file="src/org/lineageos/eleven/menu/CreateNewPlaylist.java"
19151 line="41"
19152 column="55"/>
19153 </issue>
19154
19155 <issue
19156 id="UnknownNullness"
19157 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19158 errorLine1=" public void initialize(final Bundle savedInstanceState) {"
19159 errorLine2=" ~~~~~~">
19160 <location
19161 file="src/org/lineageos/eleven/menu/CreateNewPlaylist.java"
19162 line="55"
19163 column="34"/>
19164 </issue>
19165
19166 <issue
19167 id="UnknownNullness"
19168 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19169 errorLine1=" public void afterTextChanged(Editable editable) {"
19170 errorLine2=" ~~~~~~~~">
19171 <location
19172 file="src/org/lineageos/eleven/menu/CreateNewPlaylist.java"
19173 line="94"
19174 column="34"/>
19175 </issue>
19176
19177 <issue
19178 id="UnknownNullness"
19179 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19180 errorLine1=" void onDelete(long[] id);"
19181 errorLine2=" ~~~~~~">
19182 <location
19183 file="src/org/lineageos/eleven/menu/DeleteDialog.java"
19184 line="43"
19185 column="23"/>
19186 </issue>
19187
19188 <issue
19189 id="UnknownNullness"
19190 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19191 errorLine1=" public static DeleteDialog newInstance(final String title, final long[] items,"
19192 errorLine2=" ~~~~~~~~~~~~">
19193 <location
19194 file="src/org/lineageos/eleven/menu/DeleteDialog.java"
19195 line="68"
19196 column="19"/>
19197 </issue>
19198
19199 <issue
19200 id="UnknownNullness"
19201 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19202 errorLine1=" public static DeleteDialog newInstance(final String title, final long[] items,"
19203 errorLine2=" ~~~~~~">
19204 <location
19205 file="src/org/lineageos/eleven/menu/DeleteDialog.java"
19206 line="68"
19207 column="50"/>
19208 </issue>
19209
19210 <issue
19211 id="UnknownNullness"
19212 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19213 errorLine1=" public static DeleteDialog newInstance(final String title, final long[] items,"
19214 errorLine2=" ~~~~~~">
19215 <location
19216 file="src/org/lineageos/eleven/menu/DeleteDialog.java"
19217 line="68"
19218 column="70"/>
19219 </issue>
19220
19221 <issue
19222 id="UnknownNullness"
19223 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19224 errorLine1=" final String key) {"
19225 errorLine2=" ~~~~~~">
19226 <location
19227 file="src/org/lineageos/eleven/menu/DeleteDialog.java"
19228 line="69"
19229 column="50"/>
19230 </issue>
19231
19232 <issue
19233 id="UnknownNullness"
19234 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19235 errorLine1=" public Dialog onCreateDialog(final Bundle savedInstanceState) {"
19236 errorLine2=" ~~~~~~">
19237 <location
19238 file="src/org/lineageos/eleven/menu/DeleteDialog.java"
19239 line="81"
19240 column="40"/>
19241 </issue>
19242
19243 <issue
19244 id="UnknownNullness"
19245 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19246 errorLine1=" protected PopupMenuHelper mActionMenuHelper;"
19247 errorLine2=" ~~~~~~~~~~~~~~~">
19248 <location
19249 file="src/org/lineageos/eleven/ui/fragments/DetailFragment.java"
19250 line="29"
19251 column="15"/>
19252 </issue>
19253
19254 <issue
19255 id="UnknownNullness"
19256 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19257 errorLine1=" protected abstract PopupMenuHelper createActionMenuHelper();"
19258 errorLine2=" ~~~~~~~~~~~~~~~">
19259 <location
19260 file="src/org/lineageos/eleven/ui/fragments/DetailFragment.java"
19261 line="35"
19262 column="24"/>
19263 </issue>
19264
19265 <issue
19266 id="UnknownNullness"
19267 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19268 errorLine1=" public void onCreateOptionsMenu(@NonNull final Menu menu, final MenuInflater inflater) {"
19269 errorLine2=" ~~~~~~~~~~~~">
19270 <location
19271 file="src/org/lineageos/eleven/ui/fragments/DetailFragment.java"
19272 line="54"
19273 column="69"/>
19274 </issue>
19275
19276 <issue
19277 id="UnknownNullness"
19278 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19279 errorLine1=" public boolean onOptionsItemSelected(final MenuItem item) {"
19280 errorLine2=" ~~~~~~~~">
19281 <location
19282 file="src/org/lineageos/eleven/ui/fragments/DetailFragment.java"
19283 line="68"
19284 column="48"/>
19285 </issue>
19286
19287 <issue
19288 id="UnknownNullness"
19289 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19290 errorLine1=" public DetailSongAdapter(final FragmentActivity context) {"
19291 errorLine2=" ~~~~~~~~~~~~~~~~">
19292 <location
19293 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19294 line="80"
19295 column="36"/>
19296 </issue>
19297
19298 <issue
19299 id="UnknownNullness"
19300 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19301 errorLine1=" public Song getItem(int pos) {"
19302 errorLine2=" ~~~~">
19303 <location
19304 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19305 line="90"
19306 column="12"/>
19307 </issue>
19308
19309 <issue
19310 id="UnknownNullness"
19311 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19312 errorLine1=" public void setCurrentlyPlayingTrack(MusicPlaybackTrack currentTrack) {"
19313 errorLine2=" ~~~~~~~~~~~~~~~~~~">
19314 <location
19315 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19316 line="107"
19317 column="42"/>
19318 </issue>
19319
19320 <issue
19321 id="UnknownNullness"
19322 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19323 errorLine1=" protected abstract Config.IdType getSourceType();"
19324 errorLine2=" ~~~~~~~~~~~~~">
19325 <location
19326 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19327 line="157"
19328 column="24"/>
19329 </issue>
19330
19331 <issue
19332 id="UnknownNullness"
19333 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19334 errorLine1=" public void setData(List&lt;Song> songs) {"
19335 errorLine2=" ~~~~~~~~~~">
19336 <location
19337 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19338 line="177"
19339 column="25"/>
19340 </issue>
19341
19342 <issue
19343 id="UnknownNullness"
19344 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19345 errorLine1=" public void setPopupMenuClickedListener(IListener listener) {"
19346 errorLine2=" ~~~~~~~~~">
19347 <location
19348 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19349 line="209"
19350 column="45"/>
19351 </issue>
19352
19353 <issue
19354 id="UnknownNullness"
19355 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19356 errorLine1=" protected abstract Holder newHolder(View root, ImageFetcher fetcher);"
19357 errorLine2=" ~~~~~~">
19358 <location
19359 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19360 line="213"
19361 column="24"/>
19362 </issue>
19363
19364 <issue
19365 id="UnknownNullness"
19366 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19367 errorLine1=" protected abstract Holder newHolder(View root, ImageFetcher fetcher);"
19368 errorLine2=" ~~~~">
19369 <location
19370 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19371 line="213"
19372 column="41"/>
19373 </issue>
19374
19375 <issue
19376 id="UnknownNullness"
19377 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19378 errorLine1=" protected abstract Holder newHolder(View root, ImageFetcher fetcher);"
19379 errorLine2=" ~~~~~~~~~~~~">
19380 <location
19381 file="src/org/lineageos/eleven/adapters/DetailSongAdapter.java"
19382 line="213"
19383 column="52"/>
19384 </issue>
19385
19386 <issue
19387 id="UnknownNullness"
19388 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19389 errorLine1=" public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)"
19390 errorLine2=" ~~~~~~~~~~~~">
19391 <location
19392 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19393 line="202"
19394 column="19"/>
19395 </issue>
19396
19397 <issue
19398 id="UnknownNullness"
19399 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19400 errorLine1=" public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)"
19401 errorLine2=" ~~~~">
19402 <location
19403 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19404 line="202"
19405 column="37"/>
19406 </issue>
19407
19408 <issue
19409 id="UnknownNullness"
19410 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19411 errorLine1=" public synchronized Snapshot get(String key) throws IOException {"
19412 errorLine2=" ~~~~~~~~">
19413 <location
19414 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19415 line="414"
19416 column="25"/>
19417 </issue>
19418
19419 <issue
19420 id="UnknownNullness"
19421 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19422 errorLine1=" public synchronized Snapshot get(String key) throws IOException {"
19423 errorLine2=" ~~~~~~">
19424 <location
19425 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19426 line="414"
19427 column="38"/>
19428 </issue>
19429
19430 <issue
19431 id="UnknownNullness"
19432 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19433 errorLine1=" public Editor edit(String key) throws IOException {"
19434 errorLine2=" ~~~~~~">
19435 <location
19436 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19437 line="459"
19438 column="12"/>
19439 </issue>
19440
19441 <issue
19442 id="UnknownNullness"
19443 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19444 errorLine1=" public Editor edit(String key) throws IOException {"
19445 errorLine2=" ~~~~~~">
19446 <location
19447 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19448 line="459"
19449 column="24"/>
19450 </issue>
19451
19452 <issue
19453 id="UnknownNullness"
19454 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19455 errorLine1=" public synchronized boolean remove(String key) throws IOException {"
19456 errorLine2=" ~~~~~~">
19457 <location
19458 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19459 line="560"
19460 column="40"/>
19461 </issue>
19462
19463 <issue
19464 id="UnknownNullness"
19465 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19466 errorLine1=" public InputStream getInputStream(int index) {"
19467 errorLine2=" ~~~~~~~~~~~">
19468 <location
19469 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19470 line="665"
19471 column="16"/>
19472 </issue>
19473
19474 <issue
19475 id="UnknownNullness"
19476 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19477 errorLine1=" public OutputStream newOutputStream(int index) {"
19478 errorLine2=" ~~~~~~~~~~~~">
19479 <location
19480 file="src/org/lineageos/eleven/cache/disklrucache/DiskLruCache.java"
19481 line="703"
19482 column="16"/>
19483 </issue>
19484
19485 <issue
19486 id="UnknownNullness"
19487 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19488 errorLine1=" public DragSortItemTouchHelperCallback(DragSortListener listener) {"
19489 errorLine2=" ~~~~~~~~~~~~~~~~">
19490 <location
19491 file="src/org/lineageos/eleven/widgets/DragSortItemTouchHelperCallback.java"
19492 line="26"
19493 column="44"/>
19494 </issue>
19495
19496 <issue
19497 id="UnknownNullness"
19498 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19499 errorLine1=" public static boolean isLandscape(final Context context) {"
19500 errorLine2=" ~~~~~~~">
19501 <location
19502 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19503 line="48"
19504 column="45"/>
19505 </issue>
19506
19507 <issue
19508 id="UnknownNullness"
19509 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19510 errorLine1=" public static &lt;T> void execute(final AsyncTask&lt;T, ?, ?> task, final T... args) {"
19511 errorLine2=" ~~~~~~~~~~~~~~~~~~">
19512 <location
19513 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19514 line="62"
19515 column="42"/>
19516 </issue>
19517
19518 <issue
19519 id="UnknownNullness"
19520 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19521 errorLine1=" public static &lt;T> void execute(final AsyncTask&lt;T, ?, ?> task, final T... args) {"
19522 errorLine2=" ~~~~">
19523 <location
19524 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19525 line="62"
19526 column="73"/>
19527 </issue>
19528
19529 <issue
19530 id="UnknownNullness"
19531 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19532 errorLine1=" public static void showCheatSheet(final View view) {"
19533 errorLine2=" ~~~~">
19534 <location
19535 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19536 line="72"
19537 column="45"/>
19538 </issue>
19539
19540 <issue
19541 id="UnknownNullness"
19542 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19543 errorLine1=" public static ImageFetcher getImageFetcher(final FragmentActivity activity) {"
19544 errorLine2=" ~~~~~~~~~~~~">
19545 <location
19546 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19547 line="111"
19548 column="19"/>
19549 </issue>
19550
19551 <issue
19552 id="UnknownNullness"
19553 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19554 errorLine1=" public static ImageFetcher getImageFetcher(final FragmentActivity activity) {"
19555 errorLine2=" ~~~~~~~~~~~~~~~~">
19556 <location
19557 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19558 line="111"
19559 column="54"/>
19560 </issue>
19561
19562 <issue
19563 id="UnknownNullness"
19564 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19565 errorLine1=" public static int getActionBarHeight(Context context) {"
19566 errorLine2=" ~~~~~~~">
19567 <location
19568 file="src/org/lineageos/eleven/utils/ElevenUtils.java"
19569 line="122"
19570 column="42"/>
19571 </issue>
19572
19573 <issue
19574 id="UnknownNullness"
19575 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19576 errorLine1=" public int getColumnIndex(String columnName) {"
19577 errorLine2=" ~~~~~~">
19578 <location
19579 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19580 line="89"
19581 column="31"/>
19582 </issue>
19583
19584 <issue
19585 id="UnknownNullness"
19586 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19587 errorLine1=" public int getColumnIndexOrThrow(String columnName) throws IllegalArgumentException {"
19588 errorLine2=" ~~~~~~">
19589 <location
19590 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19591 line="94"
19592 column="38"/>
19593 </issue>
19594
19595 <issue
19596 id="UnknownNullness"
19597 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19598 errorLine1=" public String getColumnName(int columnIndex) {"
19599 errorLine2=" ~~~~~~">
19600 <location
19601 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19602 line="99"
19603 column="12"/>
19604 </issue>
19605
19606 <issue
19607 id="UnknownNullness"
19608 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19609 errorLine1=" public String[] getColumnNames() {"
19610 errorLine2=" ~~~~~~~~">
19611 <location
19612 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19613 line="104"
19614 column="12"/>
19615 </issue>
19616
19617 <issue
19618 id="UnknownNullness"
19619 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19620 errorLine1=" public byte[] getBlob(int columnIndex) {"
19621 errorLine2=" ~~~~~~">
19622 <location
19623 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19624 line="114"
19625 column="12"/>
19626 </issue>
19627
19628 <issue
19629 id="UnknownNullness"
19630 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19631 errorLine1=" public String getString(int columnIndex) {"
19632 errorLine2=" ~~~~~~">
19633 <location
19634 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19635 line="119"
19636 column="12"/>
19637 </issue>
19638
19639 <issue
19640 id="UnknownNullness"
19641 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19642 errorLine1=" public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) {"
19643 errorLine2=" ~~~~~~~~~~~~~~~">
19644 <location
19645 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19646 line="124"
19647 column="53"/>
19648 </issue>
19649
19650 <issue
19651 id="UnknownNullness"
19652 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19653 errorLine1=" public void registerContentObserver(ContentObserver observer) {"
19654 errorLine2=" ~~~~~~~~~~~~~~~">
19655 <location
19656 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19657 line="182"
19658 column="41"/>
19659 </issue>
19660
19661 <issue
19662 id="UnknownNullness"
19663 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19664 errorLine1=" public void unregisterContentObserver(ContentObserver observer) {"
19665 errorLine2=" ~~~~~~~~~~~~~~~">
19666 <location
19667 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19668 line="186"
19669 column="43"/>
19670 </issue>
19671
19672 <issue
19673 id="UnknownNullness"
19674 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19675 errorLine1=" public void registerDataSetObserver(DataSetObserver observer) {"
19676 errorLine2=" ~~~~~~~~~~~~~~~">
19677 <location
19678 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19679 line="190"
19680 column="41"/>
19681 </issue>
19682
19683 <issue
19684 id="UnknownNullness"
19685 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19686 errorLine1=" public void unregisterDataSetObserver(DataSetObserver observer) {"
19687 errorLine2=" ~~~~~~~~~~~~~~~">
19688 <location
19689 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19690 line="194"
19691 column="43"/>
19692 </issue>
19693
19694 <issue
19695 id="UnknownNullness"
19696 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19697 errorLine1=" public void setNotificationUri(ContentResolver cr, Uri uri) {"
19698 errorLine2=" ~~~~~~~~~~~~~~~">
19699 <location
19700 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19701 line="198"
19702 column="36"/>
19703 </issue>
19704
19705 <issue
19706 id="UnknownNullness"
19707 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19708 errorLine1=" public void setNotificationUri(ContentResolver cr, Uri uri) {"
19709 errorLine2=" ~~~">
19710 <location
19711 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19712 line="198"
19713 column="56"/>
19714 </issue>
19715
19716 <issue
19717 id="UnknownNullness"
19718 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19719 errorLine1=" public Uri getNotificationUri() {"
19720 errorLine2=" ~~~">
19721 <location
19722 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19723 line="202"
19724 column="12"/>
19725 </issue>
19726
19727 <issue
19728 id="UnknownNullness"
19729 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19730 errorLine1=" public void setExtras(Bundle extras) {"
19731 errorLine2=" ~~~~~~">
19732 <location
19733 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19734 line="212"
19735 column="27"/>
19736 </issue>
19737
19738 <issue
19739 id="UnknownNullness"
19740 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19741 errorLine1=" public Bundle getExtras() {"
19742 errorLine2=" ~~~~~~">
19743 <location
19744 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19745 line="216"
19746 column="12"/>
19747 </issue>
19748
19749 <issue
19750 id="UnknownNullness"
19751 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19752 errorLine1=" public Bundle respond(Bundle extras) {"
19753 errorLine2=" ~~~~~~">
19754 <location
19755 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19756 line="221"
19757 column="12"/>
19758 </issue>
19759
19760 <issue
19761 id="UnknownNullness"
19762 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19763 errorLine1=" public Bundle respond(Bundle extras) {"
19764 errorLine2=" ~~~~~~">
19765 <location
19766 file="src/org/lineageos/eleven/utils/EmptyCursor.java"
19767 line="221"
19768 column="27"/>
19769 </issue>
19770
19771 <issue
19772 id="UnknownNullness"
19773 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19774 errorLine1=" public static void fetch(FragmentActivity activity, int songId, TextView textView) {"
19775 errorLine2=" ~~~~~~~~~~~~~~~~">
19776 <location
19777 file="src/org/lineageos/eleven/utils/GenreFetcher.java"
19778 line="39"
19779 column="30"/>
19780 </issue>
19781
19782 <issue
19783 id="UnknownNullness"
19784 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19785 errorLine1=" public static void fetch(FragmentActivity activity, int songId, TextView textView) {"
19786 errorLine2=" ~~~~~~~~">
19787 <location
19788 file="src/org/lineageos/eleven/utils/GenreFetcher.java"
19789 line="39"
19790 column="69"/>
19791 </issue>
19792
19793 <issue
19794 id="UnknownNullness"
19795 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19796 errorLine1=" public Loader&lt;Cursor> onCreateLoader(int id, Bundle args) {"
19797 errorLine2=" ~~~~~~">
19798 <location
19799 file="src/org/lineageos/eleven/utils/GenreFetcher.java"
19800 line="52"
19801 column="50"/>
19802 </issue>
19803
19804 <issue
19805 id="UnknownNullness"
19806 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19807 errorLine1=" public void onLoadFinished(@NonNull Loader&lt;Cursor> loader, Cursor cursor) {"
19808 errorLine2=" ~~~~~~">
19809 <location
19810 file="src/org/lineageos/eleven/utils/GenreFetcher.java"
19811 line="59"
19812 column="64"/>
19813 </issue>
19814
19815 <issue
19816 id="UnknownNullness"
19817 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19818 errorLine1=" public HeaderBar(Context context, AttributeSet attrs) {"
19819 errorLine2=" ~~~~~~~">
19820 <location
19821 file="src/org/lineageos/eleven/ui/HeaderBar.java"
19822 line="52"
19823 column="22"/>
19824 </issue>
19825
19826 <issue
19827 id="UnknownNullness"
19828 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19829 errorLine1=" public HeaderBar(Context context, AttributeSet attrs) {"
19830 errorLine2=" ~~~~~~~~~~~~">
19831 <location
19832 file="src/org/lineageos/eleven/ui/HeaderBar.java"
19833 line="52"
19834 column="39"/>
19835 </issue>
19836
19837 <issue
19838 id="UnknownNullness"
19839 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19840 errorLine1=" public void setFragment(Fragment activity) {"
19841 errorLine2=" ~~~~~~~~">
19842 <location
19843 file="src/org/lineageos/eleven/ui/HeaderBar.java"
19844 line="56"
19845 column="29"/>
19846 </issue>
19847
19848 <issue
19849 id="UnknownNullness"
19850 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19851 errorLine1=" public void setHeaderClickListener(final OnClickListener listener) {"
19852 errorLine2=" ~~~~~~~~~~~~~~~">
19853 <location
19854 file="src/org/lineageos/eleven/ui/HeaderBar.java"
19855 line="88"
19856 column="46"/>
19857 </issue>
19858
19859 <issue
19860 id="UnknownNullness"
19861 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19862 errorLine1=" public boolean onPopupMenuItemClick(final MenuItem item) {"
19863 errorLine2=" ~~~~~~~~">
19864 <location
19865 file="src/org/lineageos/eleven/ui/HeaderBar.java"
19866 line="117"
19867 column="47"/>
19868 </issue>
19869
19870 <issue
19871 id="UnknownNullness"
19872 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19873 errorLine1=" protected void onCreate(Bundle savedInstanceState) {"
19874 errorLine2=" ~~~~~~">
19875 <location
19876 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19877 line="100"
19878 column="29"/>
19879 </issue>
19880
19881 <issue
19882 id="UnknownNullness"
19883 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19884 errorLine1=" protected void init(Bundle savedInstanceState) {"
19885 errorLine2=" ~~~~~~">
19886 <location
19887 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19888 line="112"
19889 column="25"/>
19890 </issue>
19891
19892 <issue
19893 id="UnknownNullness"
19894 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19895 errorLine1=" public Fragment getTopFragment() {"
19896 errorLine2=" ~~~~~~~~">
19897 <location
19898 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19899 line="167"
19900 column="12"/>
19901 </issue>
19902
19903 <issue
19904 id="UnknownNullness"
19905 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19906 errorLine1=" public void postRemoveFragment(final Fragment frag) {"
19907 errorLine2=" ~~~~~~~~">
19908 <location
19909 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19910 line="171"
19911 column="42"/>
19912 </issue>
19913
19914 <issue
19915 id="UnknownNullness"
19916 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19917 errorLine1=" protected void onNewIntent(Intent intent) {"
19918 errorLine2=" ~~~~~~">
19919 <location
19920 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19921 line="185"
19922 column="32"/>
19923 </issue>
19924
19925 <issue
19926 id="UnknownNullness"
19927 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19928 errorLine1=" protected void onActivityResult(int requestCode, int resultCode, Intent data) {"
19929 errorLine2=" ~~~~~~">
19930 <location
19931 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19932 line="346"
19933 column="70"/>
19934 </issue>
19935
19936 <issue
19937 id="UnknownNullness"
19938 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19939 errorLine1=" public void selectNewPhoto(String key) {"
19940 errorLine2=" ~~~~~~">
19941 <location
19942 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19943 line="367"
19944 column="32"/>
19945 </issue>
19946
19947 <issue
19948 id="UnknownNullness"
19949 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19950 errorLine1=" public boolean onOptionsItemSelected(final MenuItem item) {"
19951 errorLine2=" ~~~~~~~~">
19952 <location
19953 file="src/org/lineageos/eleven/ui/activities/HomeActivity.java"
19954 line="376"
19955 column="48"/>
19956 </issue>
19957
19958 <issue
19959 id="UnknownNullness"
19960 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19961 errorLine1=" PagerAdapter.MusicFragments getMusicFragmentParent();"
19962 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
19963 <location
19964 file="src/org/lineageos/eleven/ui/fragments/IChildFragment.java"
19965 line="22"
19966 column="5"/>
19967 </issue>
19968
19969 <issue
19970 id="UnknownNullness"
19971 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19972 errorLine1=" void onPopupMenuClicked(final View v, final int position);"
19973 errorLine2=" ~~~~">
19974 <location
19975 file="src/org/lineageos/eleven/widgets/IPopupMenuCallback.java"
19976 line="23"
19977 column="39"/>
19978 </issue>
19979
19980 <issue
19981 id="UnknownNullness"
19982 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19983 errorLine1=" void setPopupMenuClickedListener(final IListener listener);"
19984 errorLine2=" ~~~~~~~~~">
19985 <location
19986 file="src/org/lineageos/eleven/widgets/IPopupMenuCallback.java"
19987 line="26"
19988 column="44"/>
19989 </issue>
19990
19991 <issue
19992 id="UnknownNullness"
19993 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
19994 errorLine1=" public ImageCache(final Context context) {"
19995 errorLine2=" ~~~~~~~">
19996 <location
19997 file="src/org/lineageos/eleven/cache/ImageCache.java"
19998 line="111"
19999 column="29"/>
20000 </issue>
20001
20002 <issue
20003 id="UnknownNullness"
20004 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20005 errorLine1=" public static ImageCache getInstance(final Context context) {"
20006 errorLine2=" ~~~~~~~~~~">
20007 <location
20008 file="src/org/lineageos/eleven/cache/ImageCache.java"
20009 line="121"
20010 column="19"/>
20011 </issue>
20012
20013 <issue
20014 id="UnknownNullness"
20015 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20016 errorLine1=" public static ImageCache getInstance(final Context context) {"
20017 errorLine2=" ~~~~~~~">
20018 <location
20019 file="src/org/lineageos/eleven/cache/ImageCache.java"
20020 line="121"
20021 column="48"/>
20022 </issue>
20023
20024 <issue
20025 id="UnknownNullness"
20026 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20027 errorLine1=" public void initLruCache(final Context context) {"
20028 errorLine2=" ~~~~~~~">
20029 <location
20030 file="src/org/lineageos/eleven/cache/ImageCache.java"
20031 line="177"
20032 column="36"/>
20033 </issue>
20034
20035 <issue
20036 id="UnknownNullness"
20037 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20038 errorLine1=" public static ImageCache findOrCreateCache(final FragmentActivity activity) {"
20039 errorLine2=" ~~~~~~~~~~">
20040 <location
20041 file="src/org/lineageos/eleven/cache/ImageCache.java"
20042 line="216"
20043 column="19"/>
20044 </issue>
20045
20046 <issue
20047 id="UnknownNullness"
20048 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20049 errorLine1=" public static ImageCache findOrCreateCache(final FragmentActivity activity) {"
20050 errorLine2=" ~~~~~~~~~~~~~~~~">
20051 <location
20052 file="src/org/lineageos/eleven/cache/ImageCache.java"
20053 line="216"
20054 column="54"/>
20055 </issue>
20056
20057 <issue
20058 id="UnknownNullness"
20059 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20060 errorLine1=" public static RetainFragment findOrCreateRetainFragment(final FragmentManager fm) {"
20061 errorLine2=" ~~~~~~~~~~~~~~">
20062 <location
20063 file="src/org/lineageos/eleven/cache/ImageCache.java"
20064 line="241"
20065 column="19"/>
20066 </issue>
20067
20068 <issue
20069 id="UnknownNullness"
20070 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20071 errorLine1=" public static RetainFragment findOrCreateRetainFragment(final FragmentManager fm) {"
20072 errorLine2=" ~~~~~~~~~~~~~~~">
20073 <location
20074 file="src/org/lineageos/eleven/cache/ImageCache.java"
20075 line="241"
20076 column="67"/>
20077 </issue>
20078
20079 <issue
20080 id="UnknownNullness"
20081 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20082 errorLine1=" public void addBitmapToCache(final String data, final Bitmap bitmap) {"
20083 errorLine2=" ~~~~~~">
20084 <location
20085 file="src/org/lineageos/eleven/cache/ImageCache.java"
20086 line="259"
20087 column="40"/>
20088 </issue>
20089
20090 <issue
20091 id="UnknownNullness"
20092 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20093 errorLine1=" public void addBitmapToCache(final String data, final Bitmap bitmap) {"
20094 errorLine2=" ~~~~~~">
20095 <location
20096 file="src/org/lineageos/eleven/cache/ImageCache.java"
20097 line="259"
20098 column="59"/>
20099 </issue>
20100
20101 <issue
20102 id="UnknownNullness"
20103 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20104 errorLine1=" public void addBitmapToCache(final String data, final Bitmap bitmap, final boolean replace) {"
20105 errorLine2=" ~~~~~~">
20106 <location
20107 file="src/org/lineageos/eleven/cache/ImageCache.java"
20108 line="270"
20109 column="40"/>
20110 </issue>
20111
20112 <issue
20113 id="UnknownNullness"
20114 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20115 errorLine1=" public void addBitmapToCache(final String data, final Bitmap bitmap, final boolean replace) {"
20116 errorLine2=" ~~~~~~">
20117 <location
20118 file="src/org/lineageos/eleven/cache/ImageCache.java"
20119 line="270"
20120 column="59"/>
20121 </issue>
20122
20123 <issue
20124 id="UnknownNullness"
20125 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20126 errorLine1=" public void addBitmapToMemCache(final String data, final Bitmap bitmap) {"
20127 errorLine2=" ~~~~~~">
20128 <location
20129 file="src/org/lineageos/eleven/cache/ImageCache.java"
20130 line="315"
20131 column="43"/>
20132 </issue>
20133
20134 <issue
20135 id="UnknownNullness"
20136 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20137 errorLine1=" public void addBitmapToMemCache(final String data, final Bitmap bitmap) {"
20138 errorLine2=" ~~~~~~">
20139 <location
20140 file="src/org/lineageos/eleven/cache/ImageCache.java"
20141 line="315"
20142 column="62"/>
20143 </issue>
20144
20145 <issue
20146 id="UnknownNullness"
20147 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20148 errorLine1=" public void addBitmapToMemCache(final String data, final Bitmap bitmap, final boolean replace) {"
20149 errorLine2=" ~~~~~~">
20150 <location
20151 file="src/org/lineageos/eleven/cache/ImageCache.java"
20152 line="326"
20153 column="43"/>
20154 </issue>
20155
20156 <issue
20157 id="UnknownNullness"
20158 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20159 errorLine1=" public void addBitmapToMemCache(final String data, final Bitmap bitmap, final boolean replace) {"
20160 errorLine2=" ~~~~~~">
20161 <location
20162 file="src/org/lineageos/eleven/cache/ImageCache.java"
20163 line="326"
20164 column="62"/>
20165 </issue>
20166
20167 <issue
20168 id="UnknownNullness"
20169 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20170 errorLine1=" public final Bitmap getBitmapFromMemCache(final String data) {"
20171 errorLine2=" ~~~~~~">
20172 <location
20173 file="src/org/lineageos/eleven/cache/ImageCache.java"
20174 line="342"
20175 column="18"/>
20176 </issue>
20177
20178 <issue
20179 id="UnknownNullness"
20180 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20181 errorLine1=" public final Bitmap getBitmapFromMemCache(final String data) {"
20182 errorLine2=" ~~~~~~">
20183 <location
20184 file="src/org/lineageos/eleven/cache/ImageCache.java"
20185 line="342"
20186 column="53"/>
20187 </issue>
20188
20189 <issue
20190 id="UnknownNullness"
20191 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20192 errorLine1=" public final Bitmap getBitmapFromDiskCache(final String data) {"
20193 errorLine2=" ~~~~~~">
20194 <location
20195 file="src/org/lineageos/eleven/cache/ImageCache.java"
20196 line="352"
20197 column="18"/>
20198 </issue>
20199
20200 <issue
20201 id="UnknownNullness"
20202 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20203 errorLine1=" public final Bitmap getBitmapFromDiskCache(final String data) {"
20204 errorLine2=" ~~~~~~">
20205 <location
20206 file="src/org/lineageos/eleven/cache/ImageCache.java"
20207 line="352"
20208 column="54"/>
20209 </issue>
20210
20211 <issue
20212 id="UnknownNullness"
20213 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20214 errorLine1=" public final Bitmap getCachedBitmap(final String data) {"
20215 errorLine2=" ~~~~~~">
20216 <location
20217 file="src/org/lineageos/eleven/cache/ImageCache.java"
20218 line="393"
20219 column="18"/>
20220 </issue>
20221
20222 <issue
20223 id="UnknownNullness"
20224 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20225 errorLine1=" public final Bitmap getCachedBitmap(final String data) {"
20226 errorLine2=" ~~~~~~">
20227 <location
20228 file="src/org/lineageos/eleven/cache/ImageCache.java"
20229 line="393"
20230 column="47"/>
20231 </issue>
20232
20233 <issue
20234 id="UnknownNullness"
20235 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20236 errorLine1=" public final Bitmap getCachedArtwork(final Context context, final String data, final long id) {"
20237 errorLine2=" ~~~~~~">
20238 <location
20239 file="src/org/lineageos/eleven/cache/ImageCache.java"
20240 line="417"
20241 column="18"/>
20242 </issue>
20243
20244 <issue
20245 id="UnknownNullness"
20246 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20247 errorLine1=" public final Bitmap getCachedArtwork(final Context context, final String data, final long id) {"
20248 errorLine2=" ~~~~~~~">
20249 <location
20250 file="src/org/lineageos/eleven/cache/ImageCache.java"
20251 line="417"
20252 column="48"/>
20253 </issue>
20254
20255 <issue
20256 id="UnknownNullness"
20257 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20258 errorLine1=" public final Bitmap getCachedArtwork(final Context context, final String data, final long id) {"
20259 errorLine2=" ~~~~~~">
20260 <location
20261 file="src/org/lineageos/eleven/cache/ImageCache.java"
20262 line="417"
20263 column="71"/>
20264 </issue>
20265
20266 <issue
20267 id="UnknownNullness"
20268 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20269 errorLine1=" public final Bitmap getArtworkFromFile(final Context context, final long albumId) {"
20270 errorLine2=" ~~~~~~">
20271 <location
20272 file="src/org/lineageos/eleven/cache/ImageCache.java"
20273 line="439"
20274 column="18"/>
20275 </issue>
20276
20277 <issue
20278 id="UnknownNullness"
20279 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20280 errorLine1=" public final Bitmap getArtworkFromFile(final Context context, final long albumId) {"
20281 errorLine2=" ~~~~~~~">
20282 <location
20283 file="src/org/lineageos/eleven/cache/ImageCache.java"
20284 line="439"
20285 column="50"/>
20286 </issue>
20287
20288 <issue
20289 id="UnknownNullness"
20290 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20291 errorLine1=" public void removeFromCache(final String key) {"
20292 errorLine2=" ~~~~~~">
20293 <location
20294 file="src/org/lineageos/eleven/cache/ImageCache.java"
20295 line="552"
20296 column="39"/>
20297 </issue>
20298
20299 <issue
20300 id="UnknownNullness"
20301 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20302 errorLine1=" public static File getDiskCacheDir(final Context context, final String uniqueName) {"
20303 errorLine2=" ~~~~">
20304 <location
20305 file="src/org/lineageos/eleven/cache/ImageCache.java"
20306 line="580"
20307 column="19"/>
20308 </issue>
20309
20310 <issue
20311 id="UnknownNullness"
20312 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20313 errorLine1=" public static File getDiskCacheDir(final Context context, final String uniqueName) {"
20314 errorLine2=" ~~~~~~~">
20315 <location
20316 file="src/org/lineageos/eleven/cache/ImageCache.java"
20317 line="580"
20318 column="46"/>
20319 </issue>
20320
20321 <issue
20322 id="UnknownNullness"
20323 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20324 errorLine1=" public static File getDiskCacheDir(final Context context, final String uniqueName) {"
20325 errorLine2=" ~~~~~~">
20326 <location
20327 file="src/org/lineageos/eleven/cache/ImageCache.java"
20328 line="580"
20329 column="69"/>
20330 </issue>
20331
20332 <issue
20333 id="UnknownNullness"
20334 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20335 errorLine1=" public static File getExternalCacheDir(final Context context) {"
20336 errorLine2=" ~~~~">
20337 <location
20338 file="src/org/lineageos/eleven/cache/ImageCache.java"
20339 line="594"
20340 column="19"/>
20341 </issue>
20342
20343 <issue
20344 id="UnknownNullness"
20345 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20346 errorLine1=" public static File getExternalCacheDir(final Context context) {"
20347 errorLine2=" ~~~~~~~">
20348 <location
20349 file="src/org/lineageos/eleven/cache/ImageCache.java"
20350 line="594"
20351 column="50"/>
20352 </issue>
20353
20354 <issue
20355 id="UnknownNullness"
20356 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20357 errorLine1=" public static long getUsableSpace(final File path) {"
20358 errorLine2=" ~~~~">
20359 <location
20360 file="src/org/lineageos/eleven/cache/ImageCache.java"
20361 line="604"
20362 column="45"/>
20363 </issue>
20364
20365 <issue
20366 id="UnknownNullness"
20367 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20368 errorLine1=" public static String hashKeyForDisk(final String key) {"
20369 errorLine2=" ~~~~~~">
20370 <location
20371 file="src/org/lineageos/eleven/cache/ImageCache.java"
20372 line="614"
20373 column="19"/>
20374 </issue>
20375
20376 <issue
20377 id="UnknownNullness"
20378 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20379 errorLine1=" public static String hashKeyForDisk(final String key) {"
20380 errorLine2=" ~~~~~~">
20381 <location
20382 file="src/org/lineageos/eleven/cache/ImageCache.java"
20383 line="614"
20384 column="47"/>
20385 </issue>
20386
20387 <issue
20388 id="UnknownNullness"
20389 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20390 errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
20391 errorLine2=" ~~~~~~">
20392 <location
20393 file="src/org/lineageos/eleven/cache/ImageCache.java"
20394 line="664"
20395 column="36"/>
20396 </issue>
20397
20398 <issue
20399 id="UnknownNullness"
20400 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20401 errorLine1=" public void setObject(final Object object) {"
20402 errorLine2=" ~~~~~~">
20403 <location
20404 file="src/org/lineageos/eleven/cache/ImageCache.java"
20405 line="675"
20406 column="37"/>
20407 </issue>
20408
20409 <issue
20410 id="UnknownNullness"
20411 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20412 errorLine1=" public Object getObject() {"
20413 errorLine2=" ~~~~~~">
20414 <location
20415 file="src/org/lineageos/eleven/cache/ImageCache.java"
20416 line="684"
20417 column="16"/>
20418 </issue>
20419
20420 <issue
20421 id="UnknownNullness"
20422 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20423 errorLine1=" public static int getBitmapSize(final Bitmap bitmap) {"
20424 errorLine2=" ~~~~~~">
20425 <location
20426 file="src/org/lineageos/eleven/cache/ImageCache.java"
20427 line="706"
20428 column="47"/>
20429 </issue>
20430
20431 <issue
20432 id="UnknownNullness"
20433 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20434 errorLine1=" protected int sizeOf(final String paramString, final Bitmap paramBitmap) {"
20435 errorLine2=" ~~~~~~">
20436 <location
20437 file="src/org/lineageos/eleven/cache/ImageCache.java"
20438 line="711"
20439 column="36"/>
20440 </issue>
20441
20442 <issue
20443 id="UnknownNullness"
20444 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20445 errorLine1=" protected int sizeOf(final String paramString, final Bitmap paramBitmap) {"
20446 errorLine2=" ~~~~~~">
20447 <location
20448 file="src/org/lineageos/eleven/cache/ImageCache.java"
20449 line="711"
20450 column="62"/>
20451 </issue>
20452
20453 <issue
20454 id="UnknownNullness"
20455 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20456 errorLine1=" public ImageFetcher(final Context context) {"
20457 errorLine2=" ~~~~~~~">
20458 <location
20459 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20460 line="57"
20461 column="31"/>
20462 </issue>
20463
20464 <issue
20465 id="UnknownNullness"
20466 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20467 errorLine1=" public static ImageFetcher getInstance(final Context context) {"
20468 errorLine2=" ~~~~~~~~~~~~">
20469 <location
20470 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20471 line="68"
20472 column="19"/>
20473 </issue>
20474
20475 <issue
20476 id="UnknownNullness"
20477 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20478 errorLine1=" public static ImageFetcher getInstance(final Context context) {"
20479 errorLine2=" ~~~~~~~">
20480 <location
20481 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20482 line="68"
20483 column="50"/>
20484 </issue>
20485
20486 <issue
20487 id="UnknownNullness"
20488 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20489 errorLine1=" public void loadPlaylistArtistImage(final long playlistId, final ImageView imageView) {"
20490 errorLine2=" ~~~~~~~~~">
20491 <location
20492 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20493 line="85"
20494 column="70"/>
20495 </issue>
20496
20497 <issue
20498 id="UnknownNullness"
20499 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20500 errorLine1=" public void loadPlaylistCoverArtImage(final long playlistId, final ImageView imageView) {"
20501 errorLine2=" ~~~~~~~~~">
20502 <location
20503 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20504 line="95"
20505 column="72"/>
20506 </issue>
20507
20508 <issue
20509 id="UnknownNullness"
20510 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20511 errorLine1=" public void loadAlbumImage(final String artistName, final String albumName, final long albumId,"
20512 errorLine2=" ~~~~~~">
20513 <location
20514 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20515 line="102"
20516 column="38"/>
20517 </issue>
20518
20519 <issue
20520 id="UnknownNullness"
20521 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20522 errorLine1=" public void loadAlbumImage(final String artistName, final String albumName, final long albumId,"
20523 errorLine2=" ~~~~~~">
20524 <location
20525 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20526 line="102"
20527 column="63"/>
20528 </issue>
20529
20530 <issue
20531 id="UnknownNullness"
20532 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20533 errorLine1=" final ImageView imageView) {"
20534 errorLine2=" ~~~~~~~~~">
20535 <location
20536 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20537 line="103"
20538 column="38"/>
20539 </issue>
20540
20541 <issue
20542 id="UnknownNullness"
20543 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20544 errorLine1=" public void loadCurrentArtwork(final ImageView imageView) {"
20545 errorLine2=" ~~~~~~~~~">
20546 <location
20547 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20548 line="111"
20549 column="42"/>
20550 </issue>
20551
20552 <issue
20553 id="UnknownNullness"
20554 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20555 errorLine1=" public void updateScrimImage(final AlbumScrimImage image,"
20556 errorLine2=" ~~~~~~~~~~~~~~~">
20557 <location
20558 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20559 line="116"
20560 column="40"/>
20561 </issue>
20562
20563 <issue
20564 id="UnknownNullness"
20565 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20566 errorLine1=" final ColorExtractor.Callback callback) {"
20567 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
20568 <location
20569 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20570 line="117"
20571 column="40"/>
20572 </issue>
20573
20574 <issue
20575 id="UnknownNullness"
20576 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20577 errorLine1=" public static String getCurrentCacheKey() {"
20578 errorLine2=" ~~~~~~">
20579 <location
20580 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20581 line="142"
20582 column="19"/>
20583 </issue>
20584
20585 <issue
20586 id="UnknownNullness"
20587 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20588 errorLine1=" public void loadArtistImage(final String key, final ImageView imageView) {"
20589 errorLine2=" ~~~~~~">
20590 <location
20591 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20592 line="149"
20593 column="39"/>
20594 </issue>
20595
20596 <issue
20597 id="UnknownNullness"
20598 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20599 errorLine1=" public void loadArtistImage(final String key, final ImageView imageView) {"
20600 errorLine2=" ~~~~~~~~~">
20601 <location
20602 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20603 line="149"
20604 column="57"/>
20605 </issue>
20606
20607 <issue
20608 id="UnknownNullness"
20609 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20610 errorLine1=" public void loadArtistImage(final String key, final ImageView imageView,"
20611 errorLine2=" ~~~~~~">
20612 <location
20613 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20614 line="156"
20615 column="39"/>
20616 </issue>
20617
20618 <issue
20619 id="UnknownNullness"
20620 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20621 errorLine1=" public void loadArtistImage(final String key, final ImageView imageView,"
20622 errorLine2=" ~~~~~~~~~">
20623 <location
20624 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20625 line="156"
20626 column="57"/>
20627 </issue>
20628
20629 <issue
20630 id="UnknownNullness"
20631 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20632 errorLine1=" public void removeFromCache(final String key) {"
20633 errorLine2=" ~~~~~~">
20634 <location
20635 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20636 line="176"
20637 column="39"/>
20638 </issue>
20639
20640 <issue
20641 id="UnknownNullness"
20642 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20643 errorLine1=" public BitmapWithColors getArtwork(final String albumName, final long albumId,"
20644 errorLine2=" ~~~~~~~~~~~~~~~~">
20645 <location
20646 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20647 line="191"
20648 column="12"/>
20649 </issue>
20650
20651 <issue
20652 id="UnknownNullness"
20653 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20654 errorLine1=" public BitmapWithColors getArtwork(final String albumName, final long albumId,"
20655 errorLine2=" ~~~~~~">
20656 <location
20657 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20658 line="191"
20659 column="46"/>
20660 </issue>
20661
20662 <issue
20663 id="UnknownNullness"
20664 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20665 errorLine1=" public Bitmap getArtworkBitmap(final String albumName, final long albumId) {"
20666 errorLine2=" ~~~~~~">
20667 <location
20668 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20669 line="203"
20670 column="12"/>
20671 </issue>
20672
20673 <issue
20674 id="UnknownNullness"
20675 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20676 errorLine1=" public Bitmap getArtworkBitmap(final String albumName, final long albumId) {"
20677 errorLine2=" ~~~~~~">
20678 <location
20679 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20680 line="203"
20681 column="42"/>
20682 </issue>
20683
20684 <issue
20685 id="UnknownNullness"
20686 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20687 errorLine1=" public static String generateAlbumCacheKey(final String albumName, final String artistName) {"
20688 errorLine2=" ~~~~~~">
20689 <location
20690 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20691 line="225"
20692 column="19"/>
20693 </issue>
20694
20695 <issue
20696 id="UnknownNullness"
20697 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20698 errorLine1=" public static String generateAlbumCacheKey(final String albumName, final String artistName) {"
20699 errorLine2=" ~~~~~~">
20700 <location
20701 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20702 line="225"
20703 column="54"/>
20704 </issue>
20705
20706 <issue
20707 id="UnknownNullness"
20708 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20709 errorLine1=" public static String generateAlbumCacheKey(final String albumName, final String artistName) {"
20710 errorLine2=" ~~~~~~">
20711 <location
20712 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20713 line="225"
20714 column="78"/>
20715 </issue>
20716
20717 <issue
20718 id="UnknownNullness"
20719 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20720 errorLine1=" public static Bitmap decodeSampledBitmapFromUri(ContentResolver cr, final Uri selectedImage) {"
20721 errorLine2=" ~~~~~~">
20722 <location
20723 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20724 line="240"
20725 column="19"/>
20726 </issue>
20727
20728 <issue
20729 id="UnknownNullness"
20730 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20731 errorLine1=" public static Bitmap decodeSampledBitmapFromUri(ContentResolver cr, final Uri selectedImage) {"
20732 errorLine2=" ~~~~~~~~~~~~~~~">
20733 <location
20734 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20735 line="240"
20736 column="53"/>
20737 </issue>
20738
20739 <issue
20740 id="UnknownNullness"
20741 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20742 errorLine1=" public static Bitmap decodeSampledBitmapFromUri(ContentResolver cr, final Uri selectedImage) {"
20743 errorLine2=" ~~~">
20744 <location
20745 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20746 line="240"
20747 column="79"/>
20748 </issue>
20749
20750 <issue
20751 id="UnknownNullness"
20752 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20753 errorLine1=" public static int calculateInSampleSize(final BitmapFactory.Options options,"
20754 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~">
20755 <location
20756 file="src/org/lineageos/eleven/cache/ImageFetcher.java"
20757 line="289"
20758 column="51"/>
20759 </issue>
20760
20761 <issue
20762 id="UnknownNullness"
20763 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20764 errorLine1=" public static Bitmap scaleBitmapForImageView(Bitmap src, ImageView imageView) {"
20765 errorLine2=" ~~~~~~">
20766 <location
20767 file="src/org/lineageos/eleven/utils/ImageUtils.java"
20768 line="33"
20769 column="19"/>
20770 </issue>
20771
20772 <issue
20773 id="UnknownNullness"
20774 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20775 errorLine1=" public static Bitmap scaleBitmapForImageView(Bitmap src, ImageView imageView) {"
20776 errorLine2=" ~~~~~~">
20777 <location
20778 file="src/org/lineageos/eleven/utils/ImageUtils.java"
20779 line="33"
20780 column="50"/>
20781 </issue>
20782
20783 <issue
20784 id="UnknownNullness"
20785 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20786 errorLine1=" public static Bitmap scaleBitmapForImageView(Bitmap src, ImageView imageView) {"
20787 errorLine2=" ~~~~~~~~~">
20788 <location
20789 file="src/org/lineageos/eleven/utils/ImageUtils.java"
20790 line="33"
20791 column="62"/>
20792 </issue>
20793
20794 <issue
20795 id="UnknownNullness"
20796 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20797 errorLine1=" public static Bitmap drawableToBitmap(Drawable drawable) {"
20798 errorLine2=" ~~~~~~">
20799 <location
20800 file="src/org/lineageos/eleven/utils/ImageUtils.java"
20801 line="64"
20802 column="19"/>
20803 </issue>
20804
20805 <issue
20806 id="UnknownNullness"
20807 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20808 errorLine1=" public static Bitmap drawableToBitmap(Drawable drawable) {"
20809 errorLine2=" ~~~~~~~~">
20810 <location
20811 file="src/org/lineageos/eleven/utils/ImageUtils.java"
20812 line="64"
20813 column="43"/>
20814 </issue>
20815
20816 <issue
20817 id="UnknownNullness"
20818 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20819 errorLine1=" protected ImageCache mImageCache;"
20820 errorLine2=" ~~~~~~~~~~">
20821 <location
20822 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20823 line="81"
20824 column="15"/>
20825 </issue>
20826
20827 <issue
20828 id="UnknownNullness"
20829 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20830 errorLine1=" protected ImageWorker(final Context context) {"
20831 errorLine2=" ~~~~~~~">
20832 <location
20833 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20834 line="88"
20835 column="33"/>
20836 </issue>
20837
20838 <issue
20839 id="UnknownNullness"
20840 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20841 errorLine1=" public void setImageCache(final ImageCache cacheCallback) {"
20842 errorLine2=" ~~~~~~~~~~">
20843 <location
20844 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20845 line="100"
20846 column="37"/>
20847 </issue>
20848
20849 <issue
20850 id="UnknownNullness"
20851 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20852 errorLine1=" public void addBitmapToCache(final String key, final Bitmap bitmap) {"
20853 errorLine2=" ~~~~~~">
20854 <location
20855 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20856 line="131"
20857 column="40"/>
20858 </issue>
20859
20860 <issue
20861 id="UnknownNullness"
20862 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20863 errorLine1=" public void addBitmapToCache(final String key, final Bitmap bitmap) {"
20864 errorLine2=" ~~~~~~">
20865 <location
20866 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20867 line="131"
20868 column="58"/>
20869 </issue>
20870
20871 <issue
20872 id="UnknownNullness"
20873 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20874 errorLine1=" public Drawable getNewDrawable(ImageType imageType, String name,"
20875 errorLine2=" ~~~~~~~~">
20876 <location
20877 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20878 line="140"
20879 column="12"/>
20880 </issue>
20881
20882 <issue
20883 id="UnknownNullness"
20884 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20885 errorLine1=" public Drawable getNewDrawable(ImageType imageType, String name,"
20886 errorLine2=" ~~~~~~~~~">
20887 <location
20888 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20889 line="140"
20890 column="36"/>
20891 </issue>
20892
20893 <issue
20894 id="UnknownNullness"
20895 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20896 errorLine1=" public Drawable getNewDrawable(ImageType imageType, String name,"
20897 errorLine2=" ~~~~~~">
20898 <location
20899 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20900 line="140"
20901 column="57"/>
20902 </issue>
20903
20904 <issue
20905 id="UnknownNullness"
20906 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20907 errorLine1=" String identifier) {"
20908 errorLine2=" ~~~~~~">
20909 <location
20910 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20911 line="141"
20912 column="36"/>
20913 </issue>
20914
20915 <issue
20916 id="UnknownNullness"
20917 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20918 errorLine1=" public static Bitmap getBitmapInBackground(final Context context, final ImageCache imageCache,"
20919 errorLine2=" ~~~~~~">
20920 <location
20921 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20922 line="148"
20923 column="19"/>
20924 </issue>
20925
20926 <issue
20927 id="UnknownNullness"
20928 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20929 errorLine1=" public static Bitmap getBitmapInBackground(final Context context, final ImageCache imageCache,"
20930 errorLine2=" ~~~~~~~">
20931 <location
20932 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20933 line="148"
20934 column="54"/>
20935 </issue>
20936
20937 <issue
20938 id="UnknownNullness"
20939 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20940 errorLine1=" public static Bitmap getBitmapInBackground(final Context context, final ImageCache imageCache,"
20941 errorLine2=" ~~~~~~~~~~">
20942 <location
20943 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20944 line="148"
20945 column="77"/>
20946 </issue>
20947
20948 <issue
20949 id="UnknownNullness"
20950 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20951 errorLine1=" final String key, final long albumId,"
20952 errorLine2=" ~~~~~~">
20953 <location
20954 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20955 line="149"
20956 column="54"/>
20957 </issue>
20958
20959 <issue
20960 id="UnknownNullness"
20961 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20962 errorLine1=" final ImageType imageType) {"
20963 errorLine2=" ~~~~~~~~~">
20964 <location
20965 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20966 line="150"
20967 column="54"/>
20968 </issue>
20969
20970 <issue
20971 id="UnknownNullness"
20972 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20973 errorLine1=" public static Drawable getTopDrawable(final Drawable drawable) {"
20974 errorLine2=" ~~~~~~~~">
20975 <location
20976 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20977 line="182"
20978 column="19"/>
20979 </issue>
20980
20981 <issue
20982 id="UnknownNullness"
20983 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20984 errorLine1=" public static Drawable getTopDrawable(final Drawable drawable) {"
20985 errorLine2=" ~~~~~~~~">
20986 <location
20987 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20988 line="182"
20989 column="49"/>
20990 </issue>
20991
20992 <issue
20993 id="UnknownNullness"
20994 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
20995 errorLine1=" public static TransitionDrawable createImageTransitionDrawable(final Resources resources,"
20996 errorLine2=" ~~~~~~~~~~~~~~~~~~">
20997 <location
20998 file="src/org/lineageos/eleven/cache/ImageWorker.java"
20999 line="206"
21000 column="19"/>
21001 </issue>
21002
21003 <issue
21004 id="UnknownNullness"
21005 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21006 errorLine1=" public static TransitionDrawable createImageTransitionDrawable(final Resources resources,"
21007 errorLine2=" ~~~~~~~~~">
21008 <location
21009 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21010 line="206"
21011 column="74"/>
21012 </issue>
21013
21014 <issue
21015 id="UnknownNullness"
21016 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21017 errorLine1=" final Drawable fromDrawable,"
21018 errorLine2=" ~~~~~~~~">
21019 <location
21020 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21021 line="207"
21022 column="74"/>
21023 </issue>
21024
21025 <issue
21026 id="UnknownNullness"
21027 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21028 errorLine1=" final Bitmap bitmap,"
21029 errorLine2=" ~~~~~~">
21030 <location
21031 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21032 line="208"
21033 column="74"/>
21034 </issue>
21035
21036 <issue
21037 id="UnknownNullness"
21038 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21039 errorLine1=" public static TransitionDrawable createPaletteTransition(AlbumScrimImage scrimImage,"
21040 errorLine2=" ~~~~~~~~~~~~~~~~~~">
21041 <location
21042 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21043 line="244"
21044 column="19"/>
21045 </issue>
21046
21047 <issue
21048 id="UnknownNullness"
21049 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21050 errorLine1=" public static TransitionDrawable createPaletteTransition(AlbumScrimImage scrimImage,"
21051 errorLine2=" ~~~~~~~~~~~~~~~">
21052 <location
21053 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21054 line="244"
21055 column="62"/>
21056 </issue>
21057
21058 <issue
21059 id="UnknownNullness"
21060 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21061 errorLine1=" public static void cancelWork(final View image) {"
21062 errorLine2=" ~~~~">
21063 <location
21064 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21065 line="267"
21066 column="41"/>
21067 </issue>
21068
21069 <issue
21070 id="UnknownNullness"
21071 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21072 errorLine1=" public static boolean executePotentialWork(final String key, final View view) {"
21073 errorLine2=" ~~~~~~">
21074 <location
21075 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21076 line="286"
21077 column="54"/>
21078 </issue>
21079
21080 <issue
21081 id="UnknownNullness"
21082 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21083 errorLine1=" public static boolean executePotentialWork(final String key, final View view) {"
21084 errorLine2=" ~~~~">
21085 <location
21086 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21087 line="286"
21088 column="72"/>
21089 </issue>
21090
21091 <issue
21092 id="UnknownNullness"
21093 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21094 errorLine1=" public static AsyncTaskContainer getAsyncTaskContainer(final View view) {"
21095 errorLine2=" ~~~~~~~~~~~~~~~~~~">
21096 <location
21097 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21098 line="309"
21099 column="19"/>
21100 </issue>
21101
21102 <issue
21103 id="UnknownNullness"
21104 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21105 errorLine1=" public static AsyncTaskContainer getAsyncTaskContainer(final View view) {"
21106 errorLine2=" ~~~~">
21107 <location
21108 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21109 line="309"
21110 column="66"/>
21111 </issue>
21112
21113 <issue
21114 id="UnknownNullness"
21115 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21116 errorLine1=" public static BitmapWorkerTask getBitmapWorkerTask(final View view) {"
21117 errorLine2=" ~~~~~~~~~~~~~~~~">
21118 <location
21119 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21120 line="329"
21121 column="19"/>
21122 </issue>
21123
21124 <issue
21125 id="UnknownNullness"
21126 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21127 errorLine1=" public static BitmapWorkerTask getBitmapWorkerTask(final View view) {"
21128 errorLine2=" ~~~~">
21129 <location
21130 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21131 line="329"
21132 column="62"/>
21133 </issue>
21134
21135 <issue
21136 id="UnknownNullness"
21137 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21138 errorLine1=" public AsyncTaskContainer(final BitmapWorkerTask&lt;?, ?, ?> bitmapWorkerTask) {"
21139 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
21140 <location
21141 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21142 line="355"
21143 column="41"/>
21144 </issue>
21145
21146 <issue
21147 id="UnknownNullness"
21148 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21149 errorLine1=" public BitmapWorkerTask&lt;?, ?, ?> getBitmapWorkerTask() {"
21150 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
21151 <location
21152 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21153 line="363"
21154 column="16"/>
21155 </issue>
21156
21157 <issue
21158 id="UnknownNullness"
21159 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21160 errorLine1=" public String getKey() {"
21161 errorLine2=" ~~~~~~">
21162 <location
21163 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21164 line="367"
21165 column="16"/>
21166 </issue>
21167
21168 <issue
21169 id="UnknownNullness"
21170 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21171 errorLine1=" public void loadDefaultImage(final ImageView imageView, final ImageType imageType,"
21172 errorLine2=" ~~~~~~~~~">
21173 <location
21174 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21175 line="378"
21176 column="40"/>
21177 </issue>
21178
21179 <issue
21180 id="UnknownNullness"
21181 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21182 errorLine1=" public void loadDefaultImage(final ImageView imageView, final ImageType imageType,"
21183 errorLine2=" ~~~~~~~~~">
21184 <location
21185 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21186 line="378"
21187 column="67"/>
21188 </issue>
21189
21190 <issue
21191 id="UnknownNullness"
21192 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21193 errorLine1=" final String name, final String identifier) {"
21194 errorLine2=" ~~~~~~">
21195 <location
21196 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21197 line="379"
21198 column="40"/>
21199 </issue>
21200
21201 <issue
21202 id="UnknownNullness"
21203 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21204 errorLine1=" final String name, final String identifier) {"
21205 errorLine2=" ~~~~~~">
21206 <location
21207 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21208 line="379"
21209 column="59"/>
21210 </issue>
21211
21212 <issue
21213 id="UnknownNullness"
21214 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21215 errorLine1=" protected void loadImage(final String key,"
21216 errorLine2=" ~~~~~~">
21217 <location
21218 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21219 line="403"
21220 column="36"/>
21221 </issue>
21222
21223 <issue
21224 id="UnknownNullness"
21225 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21226 errorLine1=" final String artistName,"
21227 errorLine2=" ~~~~~~">
21228 <location
21229 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21230 line="404"
21231 column="36"/>
21232 </issue>
21233
21234 <issue
21235 id="UnknownNullness"
21236 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21237 errorLine1=" final String albumName,"
21238 errorLine2=" ~~~~~~">
21239 <location
21240 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21241 line="405"
21242 column="36"/>
21243 </issue>
21244
21245 <issue
21246 id="UnknownNullness"
21247 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21248 errorLine1=" final ImageView imageView,"
21249 errorLine2=" ~~~~~~~~~">
21250 <location
21251 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21252 line="407"
21253 column="36"/>
21254 </issue>
21255
21256 <issue
21257 id="UnknownNullness"
21258 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21259 errorLine1=" final ImageType imageType) {"
21260 errorLine2=" ~~~~~~~~~">
21261 <location
21262 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21263 line="408"
21264 column="36"/>
21265 </issue>
21266
21267 <issue
21268 id="UnknownNullness"
21269 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21270 errorLine1=" protected void loadImage(final String key, final String artistName, final String albumName,"
21271 errorLine2=" ~~~~~~">
21272 <location
21273 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21274 line="424"
21275 column="36"/>
21276 </issue>
21277
21278 <issue
21279 id="UnknownNullness"
21280 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21281 errorLine1=" protected void loadImage(final String key, final String artistName, final String albumName,"
21282 errorLine2=" ~~~~~~">
21283 <location
21284 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21285 line="424"
21286 column="54"/>
21287 </issue>
21288
21289 <issue
21290 id="UnknownNullness"
21291 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21292 errorLine1=" protected void loadImage(final String key, final String artistName, final String albumName,"
21293 errorLine2=" ~~~~~~">
21294 <location
21295 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21296 line="424"
21297 column="79"/>
21298 </issue>
21299
21300 <issue
21301 id="UnknownNullness"
21302 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21303 errorLine1=" final long albumId, final ImageView imageView,"
21304 errorLine2=" ~~~~~~~~~">
21305 <location
21306 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21307 line="425"
21308 column="56"/>
21309 </issue>
21310
21311 <issue
21312 id="UnknownNullness"
21313 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21314 errorLine1=" final ImageType imageType, final boolean scaleImgToView) {"
21315 errorLine2=" ~~~~~~~~~">
21316 <location
21317 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21318 line="426"
21319 column="36"/>
21320 </issue>
21321
21322 <issue
21323 id="UnknownNullness"
21324 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21325 errorLine1=" public void loadPlaylistImage(final long playlistId, final PlaylistWorkerType type,"
21326 errorLine2=" ~~~~~~~~~~~~~~~~~~">
21327 <location
21328 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21329 line="484"
21330 column="64"/>
21331 </issue>
21332
21333 <issue
21334 id="UnknownNullness"
21335 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21336 errorLine1=" final ImageView imageView) {"
21337 errorLine2=" ~~~~~~~~~">
21338 <location
21339 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21340 line="485"
21341 column="41"/>
21342 </issue>
21343
21344 <issue
21345 id="UnknownNullness"
21346 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21347 errorLine1=" protected void loadBlurImage(final String key, final String artistName, final String albumName,"
21348 errorLine2=" ~~~~~~">
21349 <location
21350 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21351 line="545"
21352 column="40"/>
21353 </issue>
21354
21355 <issue
21356 id="UnknownNullness"
21357 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21358 errorLine1=" protected void loadBlurImage(final String key, final String artistName, final String albumName,"
21359 errorLine2=" ~~~~~~">
21360 <location
21361 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21362 line="545"
21363 column="58"/>
21364 </issue>
21365
21366 <issue
21367 id="UnknownNullness"
21368 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21369 errorLine1=" protected void loadBlurImage(final String key, final String artistName, final String albumName,"
21370 errorLine2=" ~~~~~~">
21371 <location
21372 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21373 line="545"
21374 column="83"/>
21375 </issue>
21376
21377 <issue
21378 id="UnknownNullness"
21379 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21380 errorLine1=" final long albumId, final AlbumScrimImage albumScrimImage) {"
21381 errorLine2=" ~~~~~~~~~~~~~~~">
21382 <location
21383 file="src/org/lineageos/eleven/cache/ImageWorker.java"
21384 line="546"
21385 column="60"/>
21386 </issue>
21387
21388 <issue
21389 id="UnknownNullness"
21390 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21391 errorLine1=" public Loader&lt;SectionListContainer&lt;Song>> onCreateLoader(final int id, final Bundle args) {"
21392 errorLine2=" ~~~~~~">
21393 <location
21394 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21395 line="51"
21396 column="82"/>
21397 </issue>
21398
21399 <issue
21400 id="UnknownNullness"
21401 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21402 errorLine1=" public void setupNoResultsContainer(NoResultsContainer empty) {"
21403 errorLine2=" ~~~~~~~~~~~~~~~~~~">
21404 <location
21405 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21406 line="60"
21407 column="41"/>
21408 </issue>
21409
21410 <issue
21411 id="UnknownNullness"
21412 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21413 errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
21414 errorLine2=" ~~~~">
21415 <location
21416 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21417 line="68"
21418 column="18"/>
21419 </issue>
21420
21421 <issue
21422 id="UnknownNullness"
21423 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21424 errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
21425 errorLine2=" ~~~~~~~~~~~~~~">
21426 <location
21427 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21428 line="68"
21429 column="36"/>
21430 </issue>
21431
21432 <issue
21433 id="UnknownNullness"
21434 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21435 errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
21436 errorLine2=" ~~~~~~~~~">
21437 <location
21438 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21439 line="68"
21440 column="61"/>
21441 </issue>
21442
21443 <issue
21444 id="UnknownNullness"
21445 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21446 errorLine1=" Bundle savedInstanceState) {"
21447 errorLine2=" ~~~~~~">
21448 <location
21449 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21450 line="69"
21451 column="36"/>
21452 </issue>
21453
21454 <issue
21455 id="UnknownNullness"
21456 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21457 errorLine1=" protected SmartPlaylistType getSmartPlaylistType() {"
21458 errorLine2=" ~~~~~~~~~~~~~~~~~">
21459 <location
21460 file="src/org/lineageos/eleven/ui/fragments/profile/LastAddedFragment.java"
21461 line="89"
21462 column="15"/>
21463 </issue>
21464
21465 <issue
21466 id="UnknownNullness"
21467 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21468 errorLine1=" public LastAddedLoader(final Context context) {"
21469 errorLine2=" ~~~~~~~">
21470 <location
21471 file="src/org/lineageos/eleven/loaders/LastAddedLoader.java"
21472 line="51"
21473 column="34"/>
21474 </issue>
21475
21476 <issue
21477 id="UnknownNullness"
21478 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21479 errorLine1=" public List&lt;Song> loadInBackground() {"
21480 errorLine2=" ~~~~~~~~~~">
21481 <location
21482 file="src/org/lineageos/eleven/loaders/LastAddedLoader.java"
21483 line="56"
21484 column="12"/>
21485 </issue>
21486
21487 <issue
21488 id="UnknownNullness"
21489 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21490 errorLine1=" public static Cursor makeLastAddedCursor(final Context context) {"
21491 errorLine2=" ~~~~~~">
21492 <location
21493 file="src/org/lineageos/eleven/loaders/LastAddedLoader.java"
21494 line="105"
21495 column="19"/>
21496 </issue>
21497
21498 <issue
21499 id="UnknownNullness"
21500 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21501 errorLine1=" public static Cursor makeLastAddedCursor(final Context context) {"
21502 errorLine2=" ~~~~~~~">
21503 <location
21504 file="src/org/lineageos/eleven/loaders/LastAddedLoader.java"
21505 line="105"
21506 column="52"/>
21507 </issue>
21508
21509 <issue
21510 id="UnknownNullness"
21511 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21512 errorLine1=" public LayoutSuppressingImageView(final Context context, final AttributeSet attrs) {"
21513 errorLine2=" ~~~~~~~">
21514 <location
21515 file="src/org/lineageos/eleven/widgets/LayoutSuppressingImageView.java"
21516 line="37"
21517 column="45"/>
21518 </issue>
21519
21520 <issue
21521 id="UnknownNullness"
21522 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21523 errorLine1=" public LayoutSuppressingImageView(final Context context, final AttributeSet attrs) {"
21524 errorLine2=" ~~~~~~~~~~~~">
21525 <location
21526 file="src/org/lineageos/eleven/widgets/LayoutSuppressingImageView.java"
21527 line="37"
21528 column="68"/>
21529 </issue>
21530
21531 <issue
21532 id="UnknownNullness"
21533 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21534 errorLine1=" public LetterTileDrawable(final Context context) {"
21535 errorLine2=" ~~~~~~~">
21536 <location
21537 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21538 line="118"
21539 column="37"/>
21540 </issue>
21541
21542 <issue
21543 id="UnknownNullness"
21544 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21545 errorLine1=" public void draw(final Canvas canvas) {"
21546 errorLine2=" ~~~~~~">
21547 <location
21548 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21549 line="127"
21550 column="28"/>
21551 </issue>
21552
21553 <issue
21554 id="UnknownNullness"
21555 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21556 errorLine1=" public void setBounds(Rect bounds) {"
21557 errorLine2=" ~~~~">
21558 <location
21559 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21560 line="138"
21561 column="27"/>
21562 </issue>
21563
21564 <issue
21565 id="UnknownNullness"
21566 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21567 errorLine1=" public void setColorFilter(final ColorFilter cf) {"
21568 errorLine2=" ~~~~~~~~~~~">
21569 <location
21570 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21571 line="269"
21572 column="38"/>
21573 </issue>
21574
21575 <issue
21576 id="UnknownNullness"
21577 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21578 errorLine1=" public void setTileDetails(final String displayName, final String identifier,"
21579 errorLine2=" ~~~~~~">
21580 <location
21581 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21582 line="304"
21583 column="38"/>
21584 </issue>
21585
21586 <issue
21587 id="UnknownNullness"
21588 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21589 errorLine1=" public void setTileDetails(final String displayName, final String identifier,"
21590 errorLine2=" ~~~~~~">
21591 <location
21592 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21593 line="304"
21594 column="64"/>
21595 </issue>
21596
21597 <issue
21598 id="UnknownNullness"
21599 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21600 errorLine1=" final ImageType type) {"
21601 errorLine2=" ~~~~~~~~~">
21602 <location
21603 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21604 line="305"
21605 column="38"/>
21606 </issue>
21607
21608 <issue
21609 id="UnknownNullness"
21610 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21611 errorLine1=" public static BitmapWithColors createDefaultBitmap(Context context, String identifier,"
21612 errorLine2=" ~~~~~~~~~~~~~~~~">
21613 <location
21614 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21615 line="347"
21616 column="19"/>
21617 </issue>
21618
21619 <issue
21620 id="UnknownNullness"
21621 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21622 errorLine1=" public static BitmapWithColors createDefaultBitmap(Context context, String identifier,"
21623 errorLine2=" ~~~~~~~">
21624 <location
21625 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21626 line="347"
21627 column="56"/>
21628 </issue>
21629
21630 <issue
21631 id="UnknownNullness"
21632 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21633 errorLine1=" public static BitmapWithColors createDefaultBitmap(Context context, String identifier,"
21634 errorLine2=" ~~~~~~">
21635 <location
21636 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21637 line="347"
21638 column="73"/>
21639 </issue>
21640
21641 <issue
21642 id="UnknownNullness"
21643 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21644 errorLine1=" ImageType type, boolean isCircle,"
21645 errorLine2=" ~~~~~~~~~">
21646 <location
21647 file="src/org/lineageos/eleven/widgets/LetterTileDrawable.java"
21648 line="348"
21649 column="56"/>
21650 </issue>
21651
21652 <issue
21653 id="UnknownNullness"
21654 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21655 errorLine1=" public static &lt;E> ArrayList&lt;E> newArrayList() {"
21656 errorLine2=" ~~~~~~~~~~~~">
21657 <location
21658 file="src/org/lineageos/eleven/utils/Lists.java"
21659 line="37"
21660 column="23"/>
21661 </issue>
21662
21663 <issue
21664 id="UnknownNullness"
21665 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21666 errorLine1=" public static &lt;E> LinkedList&lt;E> newLinkedList() {"
21667 errorLine2=" ~~~~~~~~~~~~~">
21668 <location
21669 file="src/org/lineageos/eleven/utils/Lists.java"
21670 line="49"
21671 column="23"/>
21672 </issue>
21673
21674 <issue
21675 id="UnknownNullness"
21676 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21677 errorLine1=" public LoadingEmptyContainer(Context context, AttributeSet attrs) {"
21678 errorLine2=" ~~~~~~~">
21679 <location
21680 file="src/org/lineageos/eleven/widgets/LoadingEmptyContainer.java"
21681 line="39"
21682 column="34"/>
21683 </issue>
21684
21685 <issue
21686 id="UnknownNullness"
21687 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21688 errorLine1=" public LoadingEmptyContainer(Context context, AttributeSet attrs) {"
21689 errorLine2=" ~~~~~~~~~~~~">
21690 <location
21691 file="src/org/lineageos/eleven/widgets/LoadingEmptyContainer.java"
21692 line="39"
21693 column="51"/>
21694 </issue>
21695
21696 <issue
21697 id="UnknownNullness"
21698 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21699 errorLine1=" public NoResultsContainer getNoResultsContainer() {"
21700 errorLine2=" ~~~~~~~~~~~~~~~~~~">
21701 <location
21702 file="src/org/lineageos/eleven/widgets/LoadingEmptyContainer.java"
21703 line="78"
21704 column="12"/>
21705 </issue>
21706
21707 <issue
21708 id="UnknownNullness"
21709 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21710 errorLine1=" public void onReceive(Context context, Intent intent) {"
21711 errorLine2=" ~~~~~~~">
21712 <location
21713 file="src/org/lineageos/eleven/locale/LocaleChangeReceiver.java"
21714 line="32"
21715 column="27"/>
21716 </issue>
21717
21718 <issue
21719 id="UnknownNullness"
21720 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21721 errorLine1=" public void onReceive(Context context, Intent intent) {"
21722 errorLine2=" ~~~~~~">
21723 <location
21724 file="src/org/lineageos/eleven/locale/LocaleChangeReceiver.java"
21725 line="32"
21726 column="44"/>
21727 </issue>
21728
21729 <issue
21730 id="UnknownNullness"
21731 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21732 errorLine1=" public static LocaleSet getDefault() {"
21733 errorLine2=" ~~~~~~~~~">
21734 <location
21735 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21736 line="80"
21737 column="19"/>
21738 </issue>
21739
21740 <issue
21741 id="UnknownNullness"
21742 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21743 errorLine1=" public LocaleSet(Locale locale) {"
21744 errorLine2=" ~~~~~~">
21745 <location
21746 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21747 line="84"
21748 column="22"/>
21749 </issue>
21750
21751 <issue
21752 id="UnknownNullness"
21753 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21754 errorLine1=" public static LocaleSet getLocaleSet(String localeString) {"
21755 errorLine2=" ~~~~~~~~~">
21756 <location
21757 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21758 line="99"
21759 column="19"/>
21760 </issue>
21761
21762 <issue
21763 id="UnknownNullness"
21764 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21765 errorLine1=" public static LocaleSet getLocaleSet(String localeString) {"
21766 errorLine2=" ~~~~~~">
21767 <location
21768 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21769 line="99"
21770 column="42"/>
21771 </issue>
21772
21773 <issue
21774 id="UnknownNullness"
21775 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21776 errorLine1=" public LocaleSet(Locale primaryLocale, Locale secondaryLocale) {"
21777 errorLine2=" ~~~~~~">
21778 <location
21779 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21780 line="123"
21781 column="22"/>
21782 </issue>
21783
21784 <issue
21785 id="UnknownNullness"
21786 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21787 errorLine1=" public LocaleSet(Locale primaryLocale, Locale secondaryLocale) {"
21788 errorLine2=" ~~~~~~">
21789 <location
21790 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21791 line="123"
21792 column="44"/>
21793 </issue>
21794
21795 <issue
21796 id="UnknownNullness"
21797 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21798 errorLine1=" public LocaleSet normalize() {"
21799 errorLine2=" ~~~~~~~~~">
21800 <location
21801 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21802 line="130"
21803 column="12"/>
21804 </issue>
21805
21806 <issue
21807 id="UnknownNullness"
21808 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21809 errorLine1=" public Locale getPrimaryLocale() {"
21810 errorLine2=" ~~~~~~">
21811 <location
21812 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21813 line="154"
21814 column="12"/>
21815 </issue>
21816
21817 <issue
21818 id="UnknownNullness"
21819 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21820 errorLine1=" public Locale getSecondaryLocale() {"
21821 errorLine2=" ~~~~~~">
21822 <location
21823 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21824 line="158"
21825 column="12"/>
21826 </issue>
21827
21828 <issue
21829 id="UnknownNullness"
21830 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21831 errorLine1=" public boolean isPrimaryLocale(Locale locale) {"
21832 errorLine2=" ~~~~~~">
21833 <location
21834 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21835 line="162"
21836 column="36"/>
21837 </issue>
21838
21839 <issue
21840 id="UnknownNullness"
21841 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21842 errorLine1=" public boolean isSecondaryLocale(Locale locale) {"
21843 errorLine2=" ~~~~~~">
21844 <location
21845 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21846 line="166"
21847 column="38"/>
21848 </issue>
21849
21850 <issue
21851 id="UnknownNullness"
21852 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21853 errorLine1=" public boolean isPrimaryLanguage(String language) {"
21854 errorLine2=" ~~~~~~">
21855 <location
21856 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21857 line="178"
21858 column="38"/>
21859 </issue>
21860
21861 <issue
21862 id="UnknownNullness"
21863 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21864 errorLine1=" public boolean isSecondaryLanguage(String language) {"
21865 errorLine2=" ~~~~~~">
21866 <location
21867 file="src/org/lineageos/eleven/locale/LocaleSet.java"
21868 line="182"
21869 column="40"/>
21870 </issue>
21871
21872 <issue
21873 id="UnknownNullness"
21874 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21875 errorLine1=" public LocaleSetManager(final Context context) {"
21876 errorLine2=" ~~~~~~~">
21877 <location
21878 file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
21879 line="37"
21880 column="35"/>
21881 </issue>
21882
21883 <issue
21884 id="UnknownNullness"
21885 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21886 errorLine1=" public void updateLocaleSet(LocaleSet localeSet) {"
21887 errorLine2=" ~~~~~~~~~">
21888 <location
21889 file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
21890 line="76"
21891 column="33"/>
21892 </issue>
21893
21894 <issue
21895 id="UnknownNullness"
21896 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21897 errorLine1=" public LocaleSet getSystemLocaleSet() {"
21898 errorLine2=" ~~~~~~~~~">
21899 <location
21900 file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
21901 line="108"
21902 column="12"/>
21903 </issue>
21904
21905 <issue
21906 id="UnknownNullness"
21907 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21908 errorLine1=" public LocaleSet getStoredLocaleSet() {"
21909 errorLine2=" ~~~~~~~~~">
21910 <location
21911 file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
21912 line="116"
21913 column="12"/>
21914 </issue>
21915
21916 <issue
21917 id="UnknownNullness"
21918 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21919 errorLine1=" protected Locale getLocale() {"
21920 errorLine2=" ~~~~~~">
21921 <location
21922 file="src/org/lineageos/eleven/locale/LocaleSetManager.java"
21923 line="128"
21924 column="15"/>
21925 </issue>
21926
21927 <issue
21928 id="UnknownNullness"
21929 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21930 errorLine1=" public boolean isLocale(LocaleSet locales) {"
21931 errorLine2=" ~~~~~~~~~">
21932 <location
21933 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21934 line="195"
21935 column="29"/>
21936 </issue>
21937
21938 <issue
21939 id="UnknownNullness"
21940 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21941 errorLine1=" public static synchronized LocaleUtils getInstance() {"
21942 errorLine2=" ~~~~~~~~~~~">
21943 <location
21944 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21945 line="199"
21946 column="32"/>
21947 </issue>
21948
21949 <issue
21950 id="UnknownNullness"
21951 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21952 errorLine1=" public static synchronized void setLocales(LocaleSet locales) {"
21953 errorLine2=" ~~~~~~~~~">
21954 <location
21955 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21956 line="206"
21957 column="48"/>
21958 </issue>
21959
21960 <issue
21961 id="UnknownNullness"
21962 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21963 errorLine1=" public int getBucketIndex(String name) {"
21964 errorLine2=" ~~~~~~">
21965 <location
21966 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21967 line="212"
21968 column="31"/>
21969 </issue>
21970
21971 <issue
21972 id="UnknownNullness"
21973 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21974 errorLine1=" public String getBucketLabel(int bucketIndex) {"
21975 errorLine2=" ~~~~~~">
21976 <location
21977 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21978 line="216"
21979 column="12"/>
21980 </issue>
21981
21982 <issue
21983 id="UnknownNullness"
21984 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21985 errorLine1=" public String getLabel(String name) {"
21986 errorLine2=" ~~~~~~">
21987 <location
21988 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
21989 line="220"
21990 column="12"/>
21991 </issue>
21992
21993 <issue
21994 id="UnknownNullness"
21995 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
21996 errorLine1=" public String getLabel(String name) {"
21997 errorLine2=" ~~~~~~">
21998 <location
21999 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
22000 line="220"
22001 column="28"/>
22002 </issue>
22003
22004 <issue
22005 id="UnknownNullness"
22006 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22007 errorLine1=" public ArrayList&lt;String> getLabels() {"
22008 errorLine2=" ~~~~~~~~~~~~~~~~~">
22009 <location
22010 file="src/org/lineageos/eleven/locale/LocaleUtils.java"
22011 line="224"
22012 column="12"/>
22013 </issue>
22014
22015 <issue
22016 id="UnknownNullness"
22017 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22018 errorLine1=" public static synchronized LocalizedStore getInstance(final Context context) {"
22019 errorLine2=" ~~~~~~~~~~~~~~">
22020 <location
22021 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22022 line="80"
22023 column="32"/>
22024 </issue>
22025
22026 <issue
22027 id="UnknownNullness"
22028 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22029 errorLine1=" public static synchronized LocalizedStore getInstance(final Context context) {"
22030 errorLine2=" ~~~~~~~">
22031 <location
22032 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22033 line="80"
22034 column="65"/>
22035 </issue>
22036
22037 <issue
22038 id="UnknownNullness"
22039 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22040 errorLine1=" public void onCreate(final SQLiteDatabase db) {"
22041 errorLine2=" ~~~~~~~~~~~~~~">
22042 <location
22043 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22044 line="108"
22045 column="32"/>
22046 </issue>
22047
22048 <issue
22049 id="UnknownNullness"
22050 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22051 errorLine1=" public void onUpgrade(final SQLiteDatabase db, final int oldVersion) {"
22052 errorLine2=" ~~~~~~~~~~~~~~">
22053 <location
22054 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22055 line="140"
22056 column="33"/>
22057 </issue>
22058
22059 <issue
22060 id="UnknownNullness"
22061 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22062 errorLine1=" public void onDowngrade(SQLiteDatabase db) {"
22063 errorLine2=" ~~~~~~~~~~~~~~">
22064 <location
22065 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22066 line="150"
22067 column="29"/>
22068 </issue>
22069
22070 <issue
22071 id="UnknownNullness"
22072 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22073 errorLine1=" public SortData getSortOrder(SortParameter itemType, SortParameter sortType,"
22074 errorLine2=" ~~~~~~~~">
22075 <location
22076 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22077 line="345"
22078 column="12"/>
22079 </issue>
22080
22081 <issue
22082 id="UnknownNullness"
22083 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22084 errorLine1=" public SortData getSortOrder(SortParameter itemType, SortParameter sortType,"
22085 errorLine2=" ~~~~~~~~~~~~~">
22086 <location
22087 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22088 line="345"
22089 column="34"/>
22090 </issue>
22091
22092 <issue
22093 id="UnknownNullness"
22094 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22095 errorLine1=" public SortData getSortOrder(SortParameter itemType, SortParameter sortType,"
22096 errorLine2=" ~~~~~~~~~~~~~">
22097 <location
22098 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22099 line="345"
22100 column="58"/>
22101 </issue>
22102
22103 <issue
22104 id="UnknownNullness"
22105 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22106 errorLine1=" public Cursor getLocalizedSort(Cursor cursor, String columnName, SortParameter idType,"
22107 errorLine2=" ~~~~~~">
22108 <location
22109 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22110 line="429"
22111 column="12"/>
22112 </issue>
22113
22114 <issue
22115 id="UnknownNullness"
22116 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22117 errorLine1=" public Cursor getLocalizedSort(Cursor cursor, String columnName, SortParameter idType,"
22118 errorLine2=" ~~~~~~">
22119 <location
22120 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22121 line="429"
22122 column="36"/>
22123 </issue>
22124
22125 <issue
22126 id="UnknownNullness"
22127 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22128 errorLine1=" public Cursor getLocalizedSort(Cursor cursor, String columnName, SortParameter idType,"
22129 errorLine2=" ~~~~~~">
22130 <location
22131 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22132 line="429"
22133 column="51"/>
22134 </issue>
22135
22136 <issue
22137 id="UnknownNullness"
22138 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22139 errorLine1=" public Cursor getLocalizedSort(Cursor cursor, String columnName, SortParameter idType,"
22140 errorLine2=" ~~~~~~~~~~~~~">
22141 <location
22142 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22143 line="429"
22144 column="70"/>
22145 </issue>
22146
22147 <issue
22148 id="UnknownNullness"
22149 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22150 errorLine1=" SortParameter sortType, boolean descending, boolean update) {"
22151 errorLine2=" ~~~~~~~~~~~~~">
22152 <location
22153 file="src/org/lineageos/eleven/provider/LocalizedStore.java"
22154 line="430"
22155 column="36"/>
22156 </issue>
22157
22158 <issue
22159 id="UnknownNullness"
22160 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22161 errorLine1=" public static void logd(String tag, String msg) throws IllegalArgumentException {"
22162 errorLine2=" ~~~~~~">
22163 <location
22164 file="src/org/lineageos/eleven/ui/activities/preview/util/Logger.java"
22165 line="41"
22166 column="29"/>
22167 </issue>
22168
22169 <issue
22170 id="UnknownNullness"
22171 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22172 errorLine1=" public static void logd(String tag, String msg) throws IllegalArgumentException {"
22173 errorLine2=" ~~~~~~">
22174 <location
22175 file="src/org/lineageos/eleven/ui/activities/preview/util/Logger.java"
22176 line="41"
22177 column="41"/>
22178 </issue>
22179
22180 <issue
22181 id="UnknownNullness"
22182 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22183 errorLine1=" public static void loge(String tag, String msg) throws IllegalArgumentException {"
22184 errorLine2=" ~~~~~~">
22185 <location
22186 file="src/org/lineageos/eleven/ui/activities/preview/util/Logger.java"
22187 line="59"
22188 column="29"/>
22189 </issue>
22190
22191 <issue
22192 id="UnknownNullness"
22193 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22194 errorLine1=" public static void loge(String tag, String msg) throws IllegalArgumentException {"
22195 errorLine2=" ~~~~~~">
22196 <location
22197 file="src/org/lineageos/eleven/ui/activities/preview/util/Logger.java"
22198 line="59"
22199 column="41"/>
22200 </issue>
22201
22202 <issue
22203 id="UnknownNullness"
22204 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22205 errorLine1=" public void onReceive(final Context context, final Intent intent) {"
22206 errorLine2=" ~~~~~~~">
22207 <location
22208 file="src/org/lineageos/eleven/MediaButtonIntentReceiver.java"
22209 line="46"
22210 column="33"/>
22211 </issue>
22212
22213 <issue
22214 id="UnknownNullness"
22215 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22216 errorLine1=" public void onReceive(final Context context, final Intent intent) {"
22217 errorLine2=" ~~~~~~">
22218 <location
22219 file="src/org/lineageos/eleven/MediaButtonIntentReceiver.java"
22220 line="46"
22221 column="56"/>
22222 </issue>
22223
22224 <issue
22225 id="UnknownNullness"
22226 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22227 errorLine1=" public LoaderManager getContainingLoaderManager() {"
22228 errorLine2=" ~~~~~~~~~~~~~">
22229 <location
22230 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserFragment.java"
22231 line="31"
22232 column="12"/>
22233 </issue>
22234
22235 <issue
22236 id="UnknownNullness"
22237 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22238 errorLine1=" protected void initLoader(LoaderManager.LoaderCallbacks&lt;?> callback) {"
22239 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
22240 <location
22241 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserFragment.java"
22242 line="36"
22243 column="31"/>
22244 </issue>
22245
22246 <issue
22247 id="UnknownNullness"
22248 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22249 errorLine1=" protected void restartLoader(LoaderManager.LoaderCallbacks&lt;?> callback) {"
22250 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
22251 <location
22252 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserFragment.java"
22253 line="40"
22254 column="34"/>
22255 </issue>
22256
22257 <issue
22258 id="UnknownNullness"
22259 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22260 errorLine1=" protected String getTitle() {"
22261 errorLine2=" ~~~~~~">
22262 <location
22263 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
22264 line="85"
22265 column="15"/>
22266 </issue>
22267
22268 <issue
22269 id="UnknownNullness"
22270 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22271 errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
22272 errorLine2=" ~~~~~~">
22273 <location
22274 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
22275 line="90"
22276 column="32"/>
22277 </issue>
22278
22279 <issue
22280 id="UnknownNullness"
22281 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22282 errorLine1=" public boolean onOptionsItemSelected(final MenuItem item) {"
22283 errorLine2=" ~~~~~~~~">
22284 <location
22285 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
22286 line="174"
22287 column="48"/>
22288 </issue>
22289
22290 <issue
22291 id="UnknownNullness"
22292 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22293 errorLine1=" public ArtistFragment getArtistFragment() {"
22294 errorLine2=" ~~~~~~~~~~~~~~">
22295 <location
22296 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
22297 line="268"
22298 column="12"/>
22299 </issue>
22300
22301 <issue
22302 id="UnknownNullness"
22303 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22304 errorLine1=" public AlbumFragment getAlbumFragment() {"
22305 errorLine2=" ~~~~~~~~~~~~~">
22306 <location
22307 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
22308 line="276"
22309 column="12"/>
22310 </issue>
22311
22312 <issue
22313 id="UnknownNullness"
22314 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22315 errorLine1=" public SongFragment getSongFragment() {"
22316 errorLine2=" ~~~~~~~~~~~~">
22317 <location
22318 file="src/org/lineageos/eleven/ui/fragments/phone/MusicBrowserPhoneFragment.java"
22319 line="284"
22320 column="12"/>
22321 </issue>
22322
22323 <issue
22324 id="UnknownNullness"
22325 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22326 errorLine1=" public static synchronized MusicDB getInstance(final Context context) {"
22327 errorLine2=" ~~~~~~~">
22328 <location
22329 file="src/org/lineageos/eleven/provider/MusicDB.java"
22330 line="52"
22331 column="32"/>
22332 </issue>
22333
22334 <issue
22335 id="UnknownNullness"
22336 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22337 errorLine1=" public static synchronized MusicDB getInstance(final Context context) {"
22338 errorLine2=" ~~~~~~~">
22339 <location
22340 file="src/org/lineageos/eleven/provider/MusicDB.java"
22341 line="52"
22342 column="58"/>
22343 </issue>
22344
22345 <issue
22346 id="UnknownNullness"
22347 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22348 errorLine1=" public MusicDB(final Context context) {"
22349 errorLine2=" ~~~~~~~">
22350 <location
22351 file="src/org/lineageos/eleven/provider/MusicDB.java"
22352 line="59"
22353 column="26"/>
22354 </issue>
22355
22356 <issue
22357 id="UnknownNullness"
22358 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22359 errorLine1=" public void onCreate(SQLiteDatabase db) {"
22360 errorLine2=" ~~~~~~~~~~~~~~">
22361 <location
22362 file="src/org/lineageos/eleven/provider/MusicDB.java"
22363 line="65"
22364 column="26"/>
22365 </issue>
22366
22367 <issue
22368 id="UnknownNullness"
22369 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22370 errorLine1=" public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {"
22371 errorLine2=" ~~~~~~~~~~~~~~">
22372 <location
22373 file="src/org/lineageos/eleven/provider/MusicDB.java"
22374 line="75"
22375 column="27"/>
22376 </issue>
22377
22378 <issue
22379 id="UnknownNullness"
22380 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22381 errorLine1=" public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {"
22382 errorLine2=" ~~~~~~~~~~~~~~">
22383 <location
22384 file="src/org/lineageos/eleven/provider/MusicDB.java"
22385 line="82"
22386 column="29"/>
22387 </issue>
22388
22389 <issue
22390 id="UnknownNullness"
22391 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22392 errorLine1=" public MusicHolder(final View view) {"
22393 errorLine2=" ~~~~">
22394 <location
22395 file="src/org/lineageos/eleven/ui/MusicHolder.java"
22396 line="96"
22397 column="30"/>
22398 </issue>
22399
22400 <issue
22401 id="UnknownNullness"
22402 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22403 errorLine1=" public String lineOne;"
22404 errorLine2=" ~~~~~~">
22405 <location
22406 file="src/org/lineageos/eleven/ui/MusicHolder.java"
22407 line="140"
22408 column="16"/>
22409 </issue>
22410
22411 <issue
22412 id="UnknownNullness"
22413 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22414 errorLine1=" public String lineOneRight;"
22415 errorLine2=" ~~~~~~">
22416 <location
22417 file="src/org/lineageos/eleven/ui/MusicHolder.java"
22418 line="147"
22419 column="16"/>
22420 </issue>
22421
22422 <issue
22423 id="UnknownNullness"
22424 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22425 errorLine1=" public String lineTwo;"
22426 errorLine2=" ~~~~~~">
22427 <location
22428 file="src/org/lineageos/eleven/ui/MusicHolder.java"
22429 line="154"
22430 column="16"/>
22431 </issue>
22432
22433 <issue
22434 id="UnknownNullness"
22435 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22436 errorLine1=" public IBinder onBind(final Intent intent) {"
22437 errorLine2=" ~~~~~~~">
22438 <location
22439 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22440 line="554"
22441 column="12"/>
22442 </issue>
22443
22444 <issue
22445 id="UnknownNullness"
22446 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22447 errorLine1=" public IBinder onBind(final Intent intent) {"
22448 errorLine2=" ~~~~~~">
22449 <location
22450 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22451 line="554"
22452 column="33"/>
22453 </issue>
22454
22455 <issue
22456 id="UnknownNullness"
22457 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22458 errorLine1=" public boolean onUnbind(final Intent intent) {"
22459 errorLine2=" ~~~~~~">
22460 <location
22461 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22462 line="561"
22463 column="35"/>
22464 </issue>
22465
22466 <issue
22467 id="UnknownNullness"
22468 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22469 errorLine1=" public void onRebind(final Intent intent) {"
22470 errorLine2=" ~~~~~~">
22471 <location
22472 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22473 line="586"
22474 column="32"/>
22475 </issue>
22476
22477 <issue
22478 id="UnknownNullness"
22479 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22480 errorLine1=" public int onStartCommand(final Intent intent, final int flags, final int startId) {"
22481 errorLine2=" ~~~~~~">
22482 <location
22483 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22484 line="805"
22485 column="37"/>
22486 </issue>
22487
22488 <issue
22489 id="UnknownNullness"
22490 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22491 errorLine1=" public boolean openFile(final String path) {"
22492 errorLine2=" ~~~~~~">
22493 <location
22494 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22495 line="1768"
22496 column="35"/>
22497 </issue>
22498
22499 <issue
22500 id="UnknownNullness"
22501 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22502 errorLine1=" public int[] getQueueHistoryList() {"
22503 errorLine2=" ~~~~~">
22504 <location
22505 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22506 line="2044"
22507 column="12"/>
22508 </issue>
22509
22510 <issue
22511 id="UnknownNullness"
22512 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22513 errorLine1=" public String getPath() {"
22514 errorLine2=" ~~~~~~">
22515 <location
22516 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22517 line="2060"
22518 column="12"/>
22519 </issue>
22520
22521 <issue
22522 id="UnknownNullness"
22523 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22524 errorLine1=" public String getAlbumName() {"
22525 errorLine2=" ~~~~~~">
22526 <location
22527 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22528 line="2074"
22529 column="12"/>
22530 </issue>
22531
22532 <issue
22533 id="UnknownNullness"
22534 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22535 errorLine1=" public String getTrackName() {"
22536 errorLine2=" ~~~~~~">
22537 <location
22538 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22539 line="2088"
22540 column="12"/>
22541 </issue>
22542
22543 <issue
22544 id="UnknownNullness"
22545 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22546 errorLine1=" public String getGenreName() {"
22547 errorLine2=" ~~~~~~">
22548 <location
22549 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22550 line="2102"
22551 column="12"/>
22552 </issue>
22553
22554 <issue
22555 id="UnknownNullness"
22556 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22557 errorLine1=" public String getArtistName() {"
22558 errorLine2=" ~~~~~~">
22559 <location
22560 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22561 line="2131"
22562 column="12"/>
22563 </issue>
22564
22565 <issue
22566 id="UnknownNullness"
22567 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22568 errorLine1=" public String getAlbumArtistName() {"
22569 errorLine2=" ~~~~~~">
22570 <location
22571 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22572 line="2145"
22573 column="12"/>
22574 </issue>
22575
22576 <issue
22577 id="UnknownNullness"
22578 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22579 errorLine1=" public MusicPlaybackTrack getCurrentTrack() {"
22580 errorLine2=" ~~~~~~~~~~~~~~~~~~">
22581 <location
22582 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22583 line="2197"
22584 column="12"/>
22585 </issue>
22586
22587 <issue
22588 id="UnknownNullness"
22589 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22590 errorLine1=" public synchronized MusicPlaybackTrack getTrack(int index) {"
22591 errorLine2=" ~~~~~~~~~~~~~~~~~~">
22592 <location
22593 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22594 line="2207"
22595 column="25"/>
22596 </issue>
22597
22598 <issue
22599 id="UnknownNullness"
22600 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22601 errorLine1=" public long[] getQueue() {"
22602 errorLine2=" ~~~~~~">
22603 <location
22604 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22605 line="2322"
22606 column="12"/>
22607 </issue>
22608
22609 <issue
22610 id="UnknownNullness"
22611 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22612 errorLine1=" public void open(final long[] list, final int position, long sourceId, IdType sourceType) {"
22613 errorLine2=" ~~~~~~">
22614 <location
22615 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22616 line="2406"
22617 column="28"/>
22618 </issue>
22619
22620 <issue
22621 id="UnknownNullness"
22622 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22623 errorLine1=" public void open(final long[] list, final int position, long sourceId, IdType sourceType) {"
22624 errorLine2=" ~~~~~~">
22625 <location
22626 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22627 line="2406"
22628 column="76"/>
22629 </issue>
22630
22631 <issue
22632 id="UnknownNullness"
22633 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22634 errorLine1=" public void enqueue(final long[] list, final int action, long sourceId, IdType sourceType) {"
22635 errorLine2=" ~~~~~~">
22636 <location
22637 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22638 line="2777"
22639 column="31"/>
22640 </issue>
22641
22642 <issue
22643 id="UnknownNullness"
22644 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22645 errorLine1=" public void enqueue(final long[] list, final int action, long sourceId, IdType sourceType) {"
22646 errorLine2=" ~~~~~~">
22647 <location
22648 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22649 line="2777"
22650 column="77"/>
22651 </issue>
22652
22653 <issue
22654 id="UnknownNullness"
22655 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22656 errorLine1=" public BitmapWithColors getAlbumArt(boolean smallBitmap) {"
22657 errorLine2=" ~~~~~~~~~~~~~~~~">
22658 <location
22659 file="src/org/lineageos/eleven/MusicPlaybackService.java"
22660 line="2830"
22661 column="12"/>
22662 </issue>
22663
22664 <issue
22665 id="UnknownNullness"
22666 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22667 errorLine1=" public MusicPlaybackState(final Context context) {"
22668 errorLine2=" ~~~~~~~">
22669 <location
22670 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22671 line="45"
22672 column="37"/>
22673 </issue>
22674
22675 <issue
22676 id="UnknownNullness"
22677 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22678 errorLine1=" public void onCreate(final SQLiteDatabase db) {"
22679 errorLine2=" ~~~~~~~~~~~~~~">
22680 <location
22681 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22682 line="49"
22683 column="32"/>
22684 </issue>
22685
22686 <issue
22687 id="UnknownNullness"
22688 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22689 errorLine1=" public void onUpgrade(final SQLiteDatabase db, final int oldVersion, final int newVersion) {"
22690 errorLine2=" ~~~~~~~~~~~~~~">
22691 <location
22692 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22693 line="80"
22694 column="33"/>
22695 </issue>
22696
22697 <issue
22698 id="UnknownNullness"
22699 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22700 errorLine1=" public void onDowngrade(SQLiteDatabase db) {"
22701 errorLine2=" ~~~~~~~~~~~~~~">
22702 <location
22703 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22704 line="87"
22705 column="29"/>
22706 </issue>
22707
22708 <issue
22709 id="UnknownNullness"
22710 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22711 errorLine1=" public static synchronized MusicPlaybackState getInstance(final Context context) {"
22712 errorLine2=" ~~~~~~~~~~~~~~~~~~">
22713 <location
22714 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22715 line="98"
22716 column="32"/>
22717 </issue>
22718
22719 <issue
22720 id="UnknownNullness"
22721 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22722 errorLine1=" public static synchronized MusicPlaybackState getInstance(final Context context) {"
22723 errorLine2=" ~~~~~~~">
22724 <location
22725 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22726 line="98"
22727 column="69"/>
22728 </issue>
22729
22730 <issue
22731 id="UnknownNullness"
22732 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22733 errorLine1=" public synchronized void saveState(final ArrayList&lt;MusicPlaybackTrack> queue,"
22734 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
22735 <location
22736 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22737 line="112"
22738 column="46"/>
22739 </issue>
22740
22741 <issue
22742 id="UnknownNullness"
22743 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22744 errorLine1=" LinkedList&lt;Integer> history) {"
22745 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
22746 <location
22747 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22748 line="113"
22749 column="40"/>
22750 </issue>
22751
22752 <issue
22753 id="UnknownNullness"
22754 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22755 errorLine1=" public ArrayList&lt;MusicPlaybackTrack> getQueue() {"
22756 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
22757 <location
22758 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22759 line="168"
22760 column="12"/>
22761 </issue>
22762
22763 <issue
22764 id="UnknownNullness"
22765 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22766 errorLine1=" public LinkedList&lt;Integer> getHistory(final int playlistSize) {"
22767 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
22768 <location
22769 file="src/org/lineageos/eleven/provider/MusicPlaybackState.java"
22770 line="186"
22771 column="12"/>
22772 </issue>
22773
22774 <issue
22775 id="UnknownNullness"
22776 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22777 errorLine1=" public MusicPlaybackTrack(long id, long sourceId, Config.IdType type, int sourcePosition) {"
22778 errorLine2=" ~~~~~~~~~~~~~">
22779 <location
22780 file="src/org/lineageos/eleven/service/MusicPlaybackTrack.java"
22781 line="67"
22782 column="55"/>
22783 </issue>
22784
22785 <issue
22786 id="UnknownNullness"
22787 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22788 errorLine1=" public MusicPlaybackTrack(Parcel in) {"
22789 errorLine2=" ~~~~~~">
22790 <location
22791 file="src/org/lineageos/eleven/service/MusicPlaybackTrack.java"
22792 line="74"
22793 column="31"/>
22794 </issue>
22795
22796 <issue
22797 id="UnknownNullness"
22798 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22799 errorLine1=" public void writeToParcel(Parcel dest, int flags) {"
22800 errorLine2=" ~~~~~~">
22801 <location
22802 file="src/org/lineageos/eleven/service/MusicPlaybackTrack.java"
22803 line="87"
22804 column="31"/>
22805 </issue>
22806
22807 <issue
22808 id="UnknownNullness"
22809 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22810 errorLine1=" public static ServiceToken bindToService(final Context context,"
22811 errorLine2=" ~~~~~~~~~~~~">
22812 <location
22813 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22814 line="113"
22815 column="19"/>
22816 </issue>
22817
22818 <issue
22819 id="UnknownNullness"
22820 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22821 errorLine1=" public static ServiceToken bindToService(final Context context,"
22822 errorLine2=" ~~~~~~~">
22823 <location
22824 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22825 line="113"
22826 column="52"/>
22827 </issue>
22828
22829 <issue
22830 id="UnknownNullness"
22831 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22832 errorLine1=" final ServiceConnection callback) {"
22833 errorLine2=" ~~~~~~~~~~~~~~~~~">
22834 <location
22835 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22836 line="114"
22837 column="52"/>
22838 </issue>
22839
22840 <issue
22841 id="UnknownNullness"
22842 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22843 errorLine1=" public static void unbindFromService(final ServiceToken token) {"
22844 errorLine2=" ~~~~~~~~~~~~">
22845 <location
22846 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22847 line="129"
22848 column="48"/>
22849 </issue>
22850
22851 <issue
22852 id="UnknownNullness"
22853 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22854 errorLine1=" public ServiceBinder(final ServiceConnection callback) {"
22855 errorLine2=" ~~~~~~~~~~~~~~~~~">
22856 <location
22857 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22858 line="155"
22859 column="36"/>
22860 </issue>
22861
22862 <issue
22863 id="UnknownNullness"
22864 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22865 errorLine1=" public void onServiceConnected(final ComponentName className, final IBinder service) {"
22866 errorLine2=" ~~~~~~~~~~~~~">
22867 <location
22868 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22869 line="160"
22870 column="46"/>
22871 </issue>
22872
22873 <issue
22874 id="UnknownNullness"
22875 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22876 errorLine1=" public void onServiceConnected(final ComponentName className, final IBinder service) {"
22877 errorLine2=" ~~~~~~~">
22878 <location
22879 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22880 line="160"
22881 column="77"/>
22882 </issue>
22883
22884 <issue
22885 id="UnknownNullness"
22886 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22887 errorLine1=" public void onServiceDisconnected(final ComponentName className) {"
22888 errorLine2=" ~~~~~~~~~~~~~">
22889 <location
22890 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22891 line="168"
22892 column="49"/>
22893 </issue>
22894
22895 <issue
22896 id="UnknownNullness"
22897 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22898 errorLine1=" public static String makeLabel(final Context context, final int pluralInt,"
22899 errorLine2=" ~~~~~~">
22900 <location
22901 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22902 line="224"
22903 column="19"/>
22904 </issue>
22905
22906 <issue
22907 id="UnknownNullness"
22908 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22909 errorLine1=" public static String makeLabel(final Context context, final int pluralInt,"
22910 errorLine2=" ~~~~~~~">
22911 <location
22912 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22913 line="224"
22914 column="42"/>
22915 </issue>
22916
22917 <issue
22918 id="UnknownNullness"
22919 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22920 errorLine1=" public static String makeShortTimeString(final Context context, long secs) {"
22921 errorLine2=" ~~~~~~~">
22922 <location
22923 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22924 line="237"
22925 column="52"/>
22926 </issue>
22927
22928 <issue
22929 id="UnknownNullness"
22930 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22931 errorLine1=" public static String makeLongTimeString(final Context context, long secs) {"
22932 errorLine2=" ~~~~~~">
22933 <location
22934 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22935 line="257"
22936 column="19"/>
22937 </issue>
22938
22939 <issue
22940 id="UnknownNullness"
22941 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22942 errorLine1=" public static String makeLongTimeString(final Context context, long secs) {"
22943 errorLine2=" ~~~~~~~">
22944 <location
22945 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22946 line="257"
22947 column="51"/>
22948 </issue>
22949
22950 <issue
22951 id="UnknownNullness"
22952 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22953 errorLine1=" public static String makeCombinedString(final Context context, final String first,"
22954 errorLine2=" ~~~~~~">
22955 <location
22956 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22957 line="285"
22958 column="19"/>
22959 </issue>
22960
22961 <issue
22962 id="UnknownNullness"
22963 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22964 errorLine1=" public static String makeCombinedString(final Context context, final String first,"
22965 errorLine2=" ~~~~~~~">
22966 <location
22967 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22968 line="285"
22969 column="51"/>
22970 </issue>
22971
22972 <issue
22973 id="UnknownNullness"
22974 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22975 errorLine1=" public static String makeCombinedString(final Context context, final String first,"
22976 errorLine2=" ~~~~~~">
22977 <location
22978 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22979 line="285"
22980 column="74"/>
22981 </issue>
22982
22983 <issue
22984 id="UnknownNullness"
22985 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22986 errorLine1=" final String second) {"
22987 errorLine2=" ~~~~~~">
22988 <location
22989 file="src/org/lineageos/eleven/utils/MusicUtils.java"
22990 line="286"
22991 column="51"/>
22992 </issue>
22993
22994 <issue
22995 id="UnknownNullness"
22996 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
22997 errorLine1=" public static void asyncNext(final Context context) {"
22998 errorLine2=" ~~~~~~~">
22999 <location
23000 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23001 line="308"
23002 column="40"/>
23003 </issue>
23004
23005 <issue
23006 id="UnknownNullness"
23007 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23008 errorLine1=" public static void previous(final Context context, final boolean force) {"
23009 errorLine2=" ~~~~~~~">
23010 <location
23011 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23012 line="328"
23013 column="39"/>
23014 </issue>
23015
23016 <issue
23017 id="UnknownNullness"
23018 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23019 errorLine1=" public static String getTrackName() {"
23020 errorLine2=" ~~~~~~">
23021 <location
23022 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23023 line="454"
23024 column="19"/>
23025 </issue>
23026
23027 <issue
23028 id="UnknownNullness"
23029 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23030 errorLine1=" public static String getArtistName() {"
23031 errorLine2=" ~~~~~~">
23032 <location
23033 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23034 line="469"
23035 column="19"/>
23036 </issue>
23037
23038 <issue
23039 id="UnknownNullness"
23040 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23041 errorLine1=" public static String getAlbumName() {"
23042 errorLine2=" ~~~~~~">
23043 <location
23044 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23045 line="484"
23046 column="19"/>
23047 </issue>
23048
23049 <issue
23050 id="UnknownNullness"
23051 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23052 errorLine1=" public static MusicPlaybackTrack getCurrentTrack() {"
23053 errorLine2=" ~~~~~~~~~~~~~~~~~~">
23054 <location
23055 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23056 line="529"
23057 column="19"/>
23058 </issue>
23059
23060 <issue
23061 id="UnknownNullness"
23062 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23063 errorLine1=" public static MusicPlaybackTrack getTrack(int index) {"
23064 errorLine2=" ~~~~~~~~~~~~~~~~~~">
23065 <location
23066 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23067 line="544"
23068 column="19"/>
23069 </issue>
23070
23071 <issue
23072 id="UnknownNullness"
23073 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23074 errorLine1=" public static long[] getQueue() {"
23075 errorLine2=" ~~~~~~">
23076 <location
23077 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23078 line="589"
23079 column="19"/>
23080 </issue>
23081
23082 <issue
23083 id="UnknownNullness"
23084 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23085 errorLine1=" public static long[] getSongListForCursor(Cursor cursor) {"
23086 errorLine2=" ~~~~~~">
23087 <location
23088 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23089 line="715"
23090 column="19"/>
23091 </issue>
23092
23093 <issue
23094 id="UnknownNullness"
23095 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23096 errorLine1=" public static long[] getSongListForCursor(Cursor cursor) {"
23097 errorLine2=" ~~~~~~">
23098 <location
23099 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23100 line="715"
23101 column="47"/>
23102 </issue>
23103
23104 <issue
23105 id="UnknownNullness"
23106 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23107 errorLine1=" public static long[] getSongListForArtist(final Context context, final long id) {"
23108 errorLine2=" ~~~~~~">
23109 <location
23110 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23111 line="744"
23112 column="19"/>
23113 </issue>
23114
23115 <issue
23116 id="UnknownNullness"
23117 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23118 errorLine1=" public static long[] getSongListForArtist(final Context context, final long id) {"
23119 errorLine2=" ~~~~~~~">
23120 <location
23121 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23122 line="744"
23123 column="53"/>
23124 </issue>
23125
23126 <issue
23127 id="UnknownNullness"
23128 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23129 errorLine1=" public static long[] getSongListForAlbum(final Context context, final long id) {"
23130 errorLine2=" ~~~~~~">
23131 <location
23132 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23133 line="760"
23134 column="19"/>
23135 </issue>
23136
23137 <issue
23138 id="UnknownNullness"
23139 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23140 errorLine1=" public static long[] getSongListForAlbum(final Context context, final long id) {"
23141 errorLine2=" ~~~~~~~">
23142 <location
23143 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23144 line="760"
23145 column="52"/>
23146 </issue>
23147
23148 <issue
23149 id="UnknownNullness"
23150 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23151 errorLine1=" public static void playArtist(final Context context, final long artistId, int position,"
23152 errorLine2=" ~~~~~~~">
23153 <location
23154 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23155 line="776"
23156 column="41"/>
23157 </issue>
23158
23159 <issue
23160 id="UnknownNullness"
23161 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23162 errorLine1=" public static void playAll(final Context context, final long[] list, int position,"
23163 errorLine2=" ~~~~~~~">
23164 <location
23165 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23166 line="790"
23167 column="38"/>
23168 </issue>
23169
23170 <issue
23171 id="UnknownNullness"
23172 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23173 errorLine1=" public static void playAll(final Context context, final long[] list, int position,"
23174 errorLine2=" ~~~~~~">
23175 <location
23176 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23177 line="790"
23178 column="61"/>
23179 </issue>
23180
23181 <issue
23182 id="UnknownNullness"
23183 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23184 errorLine1=" final long sourceId, final IdType sourceType,"
23185 errorLine2=" ~~~~~~">
23186 <location
23187 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23188 line="791"
23189 column="59"/>
23190 </issue>
23191
23192 <issue
23193 id="UnknownNullness"
23194 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23195 errorLine1=" public static void playNext(final long[] list, final long sourceId, final IdType sourceType) {"
23196 errorLine2=" ~~~~~~">
23197 <location
23198 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23199 line="814"
23200 column="39"/>
23201 </issue>
23202
23203 <issue
23204 id="UnknownNullness"
23205 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23206 errorLine1=" public static void playNext(final long[] list, final long sourceId, final IdType sourceType) {"
23207 errorLine2=" ~~~~~~">
23208 <location
23209 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23210 line="814"
23211 column="79"/>
23212 </issue>
23213
23214 <issue
23215 id="UnknownNullness"
23216 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23217 errorLine1=" public static void shuffleAll(final Context context) {"
23218 errorLine2=" ~~~~~~~">
23219 <location
23220 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23221 line="830"
23222 column="41"/>
23223 </issue>
23224
23225 <issue
23226 id="UnknownNullness"
23227 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23228 errorLine1=" public static long getIdForPlaylist(final Context context, final String name) {"
23229 errorLine2=" ~~~~~~~">
23230 <location
23231 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23232 line="867"
23233 column="47"/>
23234 </issue>
23235
23236 <issue
23237 id="UnknownNullness"
23238 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23239 errorLine1=" public static long getIdForPlaylist(final Context context, final String name) {"
23240 errorLine2=" ~~~~~~">
23241 <location
23242 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23243 line="867"
23244 column="70"/>
23245 </issue>
23246
23247 <issue
23248 id="UnknownNullness"
23249 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23250 errorLine1=" public static String getNameForPlaylist(final Context context, final long id) {"
23251 errorLine2=" ~~~~~~">
23252 <location
23253 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23254 line="893"
23255 column="19"/>
23256 </issue>
23257
23258 <issue
23259 id="UnknownNullness"
23260 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23261 errorLine1=" public static String getNameForPlaylist(final Context context, final long id) {"
23262 errorLine2=" ~~~~~~~">
23263 <location
23264 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23265 line="893"
23266 column="51"/>
23267 </issue>
23268
23269 <issue
23270 id="UnknownNullness"
23271 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23272 errorLine1=" public static long getIdForArtist(final Context context, final String name) {"
23273 errorLine2=" ~~~~~~~">
23274 <location
23275 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23276 line="914"
23277 column="45"/>
23278 </issue>
23279
23280 <issue
23281 id="UnknownNullness"
23282 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23283 errorLine1=" public static long getIdForArtist(final Context context, final String name) {"
23284 errorLine2=" ~~~~~~">
23285 <location
23286 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23287 line="914"
23288 column="68"/>
23289 </issue>
23290
23291 <issue
23292 id="UnknownNullness"
23293 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23294 errorLine1=" public static void playAlbum(final Context context, final long albumId, int position,"
23295 errorLine2=" ~~~~~~~">
23296 <location
23297 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23298 line="938"
23299 column="40"/>
23300 </issue>
23301
23302 <issue
23303 id="UnknownNullness"
23304 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23305 errorLine1=" public static void makeInsertItems(final long[] ids, final int offset, int len,"
23306 errorLine2=" ~~~~~~">
23307 <location
23308 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23309 line="946"
23310 column="46"/>
23311 </issue>
23312
23313 <issue
23314 id="UnknownNullness"
23315 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23316 errorLine1=" public static long createPlaylist(final Context context, final String name) {"
23317 errorLine2=" ~~~~~~~">
23318 <location
23319 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23320 line="969"
23321 column="45"/>
23322 </issue>
23323
23324 <issue
23325 id="UnknownNullness"
23326 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23327 errorLine1=" public static long createPlaylist(final Context context, final String name) {"
23328 errorLine2=" ~~~~~~">
23329 <location
23330 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23331 line="969"
23332 column="68"/>
23333 </issue>
23334
23335 <issue
23336 id="UnknownNullness"
23337 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23338 errorLine1=" public static void clearPlaylist(final Context context, final int playlistId) {"
23339 errorLine2=" ~~~~~~~">
23340 <location
23341 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23342 line="999"
23343 column="44"/>
23344 </issue>
23345
23346 <issue
23347 id="UnknownNullness"
23348 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23349 errorLine1=" public static void clearTopTracks(Context context) {"
23350 errorLine2=" ~~~~~~~">
23351 <location
23352 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23353 line="1007"
23354 column="39"/>
23355 </issue>
23356
23357 <issue
23358 id="UnknownNullness"
23359 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23360 errorLine1=" public static void clearRecent(Context context) {"
23361 errorLine2=" ~~~~~~~">
23362 <location
23363 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23364 line="1014"
23365 column="36"/>
23366 </issue>
23367
23368 <issue
23369 id="UnknownNullness"
23370 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23371 errorLine1=" public static void clearLastAdded(Context context) {"
23372 errorLine2=" ~~~~~~~">
23373 <location
23374 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23375 line="1021"
23376 column="39"/>
23377 </issue>
23378
23379 <issue
23380 id="UnknownNullness"
23381 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23382 errorLine1=" public static void addToPlaylist(final Context context, final long[] ids,"
23383 errorLine2=" ~~~~~~~">
23384 <location
23385 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23386 line="1031"
23387 column="44"/>
23388 </issue>
23389
23390 <issue
23391 id="UnknownNullness"
23392 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23393 errorLine1=" public static void addToPlaylist(final Context context, final long[] ids,"
23394 errorLine2=" ~~~~~~">
23395 <location
23396 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23397 line="1031"
23398 column="67"/>
23399 </issue>
23400
23401 <issue
23402 id="UnknownNullness"
23403 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23404 errorLine1=" public static void removeFromPlaylist(final Context context, final long id,"
23405 errorLine2=" ~~~~~~~">
23406 <location
23407 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23408 line="1065"
23409 column="49"/>
23410 </issue>
23411
23412 <issue
23413 id="UnknownNullness"
23414 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23415 errorLine1=" public static void addToQueue(final Context context, final long[] list, long sourceId,"
23416 errorLine2=" ~~~~~~~">
23417 <location
23418 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23419 line="1082"
23420 column="41"/>
23421 </issue>
23422
23423 <issue
23424 id="UnknownNullness"
23425 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23426 errorLine1=" public static void addToQueue(final Context context, final long[] list, long sourceId,"
23427 errorLine2=" ~~~~~~">
23428 <location
23429 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23430 line="1082"
23431 column="64"/>
23432 </issue>
23433
23434 <issue
23435 id="UnknownNullness"
23436 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23437 errorLine1=" IdType sourceType) {"
23438 errorLine2=" ~~~~~~">
23439 <location
23440 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23441 line="1083"
23442 column="35"/>
23443 </issue>
23444
23445 <issue
23446 id="UnknownNullness"
23447 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23448 errorLine1=" public static void setRingtone(final Context context, final long id) {"
23449 errorLine2=" ~~~~~~~">
23450 <location
23451 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23452 line="1101"
23453 column="42"/>
23454 </issue>
23455
23456 <issue
23457 id="UnknownNullness"
23458 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23459 errorLine1=" public static int getSongCountForAlbumInt(final Context context, final long id) {"
23460 errorLine2=" ~~~~~~~">
23461 <location
23462 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23463 line="1135"
23464 column="53"/>
23465 </issue>
23466
23467 <issue
23468 id="UnknownNullness"
23469 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23470 errorLine1=" public static int getSongCountForPlaylist(final Context context, final long playlistId) {"
23471 errorLine2=" ~~~~~~~">
23472 <location
23473 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23474 line="1164"
23475 column="53"/>
23476 </issue>
23477
23478 <issue
23479 id="UnknownNullness"
23480 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23481 errorLine1=" public static AlbumArtistDetails getAlbumArtDetails(final Context context, final long trackId) {"
23482 errorLine2=" ~~~~~~~~~~~~~~~~~~">
23483 <location
23484 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23485 line="1179"
23486 column="19"/>
23487 </issue>
23488
23489 <issue
23490 id="UnknownNullness"
23491 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23492 errorLine1=" public static AlbumArtistDetails getAlbumArtDetails(final Context context, final long trackId) {"
23493 errorLine2=" ~~~~~~~">
23494 <location
23495 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23496 line="1179"
23497 column="63"/>
23498 </issue>
23499
23500 <issue
23501 id="UnknownNullness"
23502 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23503 errorLine1=" public static String getReleaseDateForAlbum(final Context context, final long id) {"
23504 errorLine2=" ~~~~~~">
23505 <location
23506 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23507 line="1220"
23508 column="19"/>
23509 </issue>
23510
23511 <issue
23512 id="UnknownNullness"
23513 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23514 errorLine1=" public static String getReleaseDateForAlbum(final Context context, final long id) {"
23515 errorLine2=" ~~~~~~~">
23516 <location
23517 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23518 line="1220"
23519 column="55"/>
23520 </issue>
23521
23522 <issue
23523 id="UnknownNullness"
23524 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23525 errorLine1=" public static long[] getSongListForPlaylist(final Context context, final long playlistId) {"
23526 errorLine2=" ~~~~~~">
23527 <location
23528 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23529 line="1258"
23530 column="19"/>
23531 </issue>
23532
23533 <issue
23534 id="UnknownNullness"
23535 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23536 errorLine1=" public static long[] getSongListForPlaylist(final Context context, final long playlistId) {"
23537 errorLine2=" ~~~~~~~">
23538 <location
23539 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23540 line="1258"
23541 column="55"/>
23542 </issue>
23543
23544 <issue
23545 id="UnknownNullness"
23546 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23547 errorLine1=" public static void playPlaylist(final Context context, final long playlistId, boolean shuffle) {"
23548 errorLine2=" ~~~~~~~">
23549 <location
23550 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23551 line="1273"
23552 column="43"/>
23553 </issue>
23554
23555 <issue
23556 id="UnknownNullness"
23557 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23558 errorLine1=" public static long[] getSongListForSmartPlaylist(final Context context,"
23559 errorLine2=" ~~~~~~">
23560 <location
23561 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23562 line="1285"
23563 column="19"/>
23564 </issue>
23565
23566 <issue
23567 id="UnknownNullness"
23568 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23569 errorLine1=" public static long[] getSongListForSmartPlaylist(final Context context,"
23570 errorLine2=" ~~~~~~~">
23571 <location
23572 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23573 line="1285"
23574 column="60"/>
23575 </issue>
23576
23577 <issue
23578 id="UnknownNullness"
23579 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23580 errorLine1=" final SmartPlaylistType type) {"
23581 errorLine2=" ~~~~~~~~~~~~~~~~~">
23582 <location
23583 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23584 line="1286"
23585 column="60"/>
23586 </issue>
23587
23588 <issue
23589 id="UnknownNullness"
23590 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23591 errorLine1=" public static List&lt;String> makePlaylist(final Context context) {"
23592 errorLine2=" ~~~~~~~~~~~~">
23593 <location
23594 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23595 line="1313"
23596 column="19"/>
23597 </issue>
23598
23599 <issue
23600 id="UnknownNullness"
23601 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23602 errorLine1=" public static List&lt;String> makePlaylist(final Context context) {"
23603 errorLine2=" ~~~~~~~">
23604 <location
23605 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23606 line="1313"
23607 column="51"/>
23608 </issue>
23609
23610 <issue
23611 id="UnknownNullness"
23612 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23613 errorLine1=" public static void deleteTracks(final Context context, final long[] list) {"
23614 errorLine2=" ~~~~~~~">
23615 <location
23616 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23617 line="1464"
23618 column="43"/>
23619 </issue>
23620
23621 <issue
23622 id="UnknownNullness"
23623 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23624 errorLine1=" public static void deleteTracks(final Context context, final long[] list) {"
23625 errorLine2=" ~~~~~~">
23626 <location
23627 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23628 line="1464"
23629 column="66"/>
23630 </issue>
23631
23632 <issue
23633 id="UnknownNullness"
23634 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23635 errorLine1=" public static String getTrimmedName(String name) {"
23636 errorLine2=" ~~~~~~">
23637 <location
23638 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23639 line="1547"
23640 column="19"/>
23641 </issue>
23642
23643 <issue
23644 id="UnknownNullness"
23645 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23646 errorLine1=" public static String getTrimmedName(String name) {"
23647 errorLine2=" ~~~~~~">
23648 <location
23649 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23650 line="1547"
23651 column="41"/>
23652 </issue>
23653
23654 <issue
23655 id="UnknownNullness"
23656 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23657 errorLine1=" public static String getLocalizedBucketLetter(String name) {"
23658 errorLine2=" ~~~~~~">
23659 <location
23660 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23661 line="1580"
23662 column="19"/>
23663 </issue>
23664
23665 <issue
23666 id="UnknownNullness"
23667 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23668 errorLine1=" public static String getLocalizedBucketLetter(String name) {"
23669 errorLine2=" ~~~~~~">
23670 <location
23671 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23672 line="1580"
23673 column="51"/>
23674 </issue>
23675
23676 <issue
23677 id="UnknownNullness"
23678 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23679 errorLine1=" public static boolean isBlank(String s) {"
23680 errorLine2=" ~~~~~~">
23681 <location
23682 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23683 line="1597"
23684 column="35"/>
23685 </issue>
23686
23687 <issue
23688 id="UnknownNullness"
23689 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23690 errorLine1=" public static void removeFromCache(FragmentActivity activity, String key) {"
23691 errorLine2=" ~~~~~~~~~~~~~~~~">
23692 <location
23693 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23694 line="1617"
23695 column="40"/>
23696 </issue>
23697
23698 <issue
23699 id="UnknownNullness"
23700 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23701 errorLine1=" public static void removeFromCache(FragmentActivity activity, String key) {"
23702 errorLine2=" ~~~~~~">
23703 <location
23704 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23705 line="1617"
23706 column="67"/>
23707 </issue>
23708
23709 <issue
23710 id="UnknownNullness"
23711 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23712 errorLine1=" public static void selectOldPhoto(FragmentActivity activity, String key) {"
23713 errorLine2=" ~~~~~~~~~~~~~~~~">
23714 <location
23715 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23716 line="1629"
23717 column="39"/>
23718 </issue>
23719
23720 <issue
23721 id="UnknownNullness"
23722 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23723 errorLine1=" public static void selectOldPhoto(FragmentActivity activity, String key) {"
23724 errorLine2=" ~~~~~~">
23725 <location
23726 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23727 line="1629"
23728 column="66"/>
23729 </issue>
23730
23731 <issue
23732 id="UnknownNullness"
23733 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23734 errorLine1=" public static boolean isSortOrderDesending(String sortOrder) {"
23735 errorLine2=" ~~~~~~">
23736 <location
23737 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23738 line="1639"
23739 column="48"/>
23740 </issue>
23741
23742 <issue
23743 id="UnknownNullness"
23744 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23745 errorLine1=" public static &lt;E> String buildCollectionAsString(Collection&lt;E> items) {"
23746 errorLine2=" ~~~~~~">
23747 <location
23748 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23749 line="1649"
23750 column="23"/>
23751 </issue>
23752
23753 <issue
23754 id="UnknownNullness"
23755 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23756 errorLine1=" public static &lt;E> String buildCollectionAsString(Collection&lt;E> items) {"
23757 errorLine2=" ~~~~~~~~~~~~~">
23758 <location
23759 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23760 line="1649"
23761 column="54"/>
23762 </issue>
23763
23764 <issue
23765 id="UnknownNullness"
23766 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23767 errorLine1=" public int compare(String s1, String s2) {"
23768 errorLine2=" ~~~~~~">
23769 <location
23770 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23771 line="1665"
23772 column="28"/>
23773 </issue>
23774
23775 <issue
23776 id="UnknownNullness"
23777 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23778 errorLine1=" public int compare(String s1, String s2) {"
23779 errorLine2=" ~~~~~~">
23780 <location
23781 file="src/org/lineageos/eleven/utils/MusicUtils.java"
23782 line="1665"
23783 column="39"/>
23784 </issue>
23785
23786 <issue
23787 id="UnknownNullness"
23788 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23789 errorLine1=" public static void openArtistProfile(final Activity context, final String artistName) {"
23790 errorLine2=" ~~~~~~~~">
23791 <location
23792 file="src/org/lineageos/eleven/utils/NavUtils.java"
23793 line="47"
23794 column="48"/>
23795 </issue>
23796
23797 <issue
23798 id="UnknownNullness"
23799 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23800 errorLine1=" public static void openArtistProfile(final Activity context, final String artistName) {"
23801 errorLine2=" ~~~~~~">
23802 <location
23803 file="src/org/lineageos/eleven/utils/NavUtils.java"
23804 line="47"
23805 column="72"/>
23806 </issue>
23807
23808 <issue
23809 id="UnknownNullness"
23810 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23811 errorLine1=" public static void openAlbumProfile(final Activity context, final String albumName,"
23812 errorLine2=" ~~~~~~~~">
23813 <location
23814 file="src/org/lineageos/eleven/utils/NavUtils.java"
23815 line="69"
23816 column="47"/>
23817 </issue>
23818
23819 <issue
23820 id="UnknownNullness"
23821 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23822 errorLine1=" public static void openAlbumProfile(final Activity context, final String albumName,"
23823 errorLine2=" ~~~~~~">
23824 <location
23825 file="src/org/lineageos/eleven/utils/NavUtils.java"
23826 line="69"
23827 column="71"/>
23828 </issue>
23829
23830 <issue
23831 id="UnknownNullness"
23832 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23833 errorLine1=" final String artistName, final long albumId) {"
23834 errorLine2=" ~~~~~~">
23835 <location
23836 file="src/org/lineageos/eleven/utils/NavUtils.java"
23837 line="70"
23838 column="47"/>
23839 </issue>
23840
23841 <issue
23842 id="UnknownNullness"
23843 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23844 errorLine1=" public static void openSmartPlaylist(final Activity context,"
23845 errorLine2=" ~~~~~~~~">
23846 <location
23847 file="src/org/lineageos/eleven/utils/NavUtils.java"
23848 line="87"
23849 column="48"/>
23850 </issue>
23851
23852 <issue
23853 id="UnknownNullness"
23854 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23855 errorLine1=" final Config.SmartPlaylistType type) {"
23856 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~">
23857 <location
23858 file="src/org/lineageos/eleven/utils/NavUtils.java"
23859 line="88"
23860 column="48"/>
23861 </issue>
23862
23863 <issue
23864 id="UnknownNullness"
23865 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23866 errorLine1=" public static void openPlaylist(final Activity context, final long playlistId,"
23867 errorLine2=" ~~~~~~~~">
23868 <location
23869 file="src/org/lineageos/eleven/utils/NavUtils.java"
23870 line="103"
23871 column="43"/>
23872 </issue>
23873
23874 <issue
23875 id="UnknownNullness"
23876 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23877 errorLine1=" final String playlistName) {"
23878 errorLine2=" ~~~~~~">
23879 <location
23880 file="src/org/lineageos/eleven/utils/NavUtils.java"
23881 line="104"
23882 column="43"/>
23883 </issue>
23884
23885 <issue
23886 id="UnknownNullness"
23887 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23888 errorLine1=" public static void openEffectsPanel(final Activity context, final int requestCode) {"
23889 errorLine2=" ~~~~~~~~">
23890 <location
23891 file="src/org/lineageos/eleven/utils/NavUtils.java"
23892 line="132"
23893 column="47"/>
23894 </issue>
23895
23896 <issue
23897 id="UnknownNullness"
23898 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23899 errorLine1=" public static boolean hasEffectsPanel(final Activity activity) {"
23900 errorLine2=" ~~~~~~~~">
23901 <location
23902 file="src/org/lineageos/eleven/utils/NavUtils.java"
23903 line="145"
23904 column="49"/>
23905 </issue>
23906
23907 <issue
23908 id="UnknownNullness"
23909 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23910 errorLine1=" public static void openSettings(final Activity activity) {"
23911 errorLine2=" ~~~~~~~~">
23912 <location
23913 file="src/org/lineageos/eleven/utils/NavUtils.java"
23914 line="156"
23915 column="43"/>
23916 </issue>
23917
23918 <issue
23919 id="UnknownNullness"
23920 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23921 errorLine1=" public static void goHome(final Activity activity, final int browseIndex) {"
23922 errorLine2=" ~~~~~~~~">
23923 <location
23924 file="src/org/lineageos/eleven/utils/NavUtils.java"
23925 line="166"
23926 column="37"/>
23927 </issue>
23928
23929 <issue
23930 id="UnknownNullness"
23931 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23932 errorLine1=" public NoResultsContainer(Context context, AttributeSet attrs) {"
23933 errorLine2=" ~~~~~~~">
23934 <location
23935 file="src/org/lineageos/eleven/widgets/NoResultsContainer.java"
23936 line="35"
23937 column="31"/>
23938 </issue>
23939
23940 <issue
23941 id="UnknownNullness"
23942 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23943 errorLine1=" public NoResultsContainer(Context context, AttributeSet attrs) {"
23944 errorLine2=" ~~~~~~~~~~~~">
23945 <location
23946 file="src/org/lineageos/eleven/widgets/NoResultsContainer.java"
23947 line="35"
23948 column="48"/>
23949 </issue>
23950
23951 <issue
23952 id="UnknownNullness"
23953 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23954 errorLine1=" public NowPlayingCursor(final Context context) {"
23955 errorLine2=" ~~~~~~~">
23956 <location
23957 file="src/org/lineageos/eleven/loaders/NowPlayingCursor.java"
23958 line="72"
23959 column="35"/>
23960 </issue>
23961
23962 <issue
23963 id="UnknownNullness"
23964 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23965 errorLine1=" public String getString(final int column) {"
23966 errorLine2=" ~~~~~~">
23967 <location
23968 file="src/org/lineageos/eleven/loaders/NowPlayingCursor.java"
23969 line="100"
23970 column="12"/>
23971 </issue>
23972
23973 <issue
23974 id="UnknownNullness"
23975 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23976 errorLine1=" public String[] getColumnNames() {"
23977 errorLine2=" ~~~~~~~~">
23978 <location
23979 file="src/org/lineageos/eleven/loaders/NowPlayingCursor.java"
23980 line="155"
23981 column="12"/>
23982 </issue>
23983
23984 <issue
23985 id="UnknownNullness"
23986 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23987 errorLine1=" public PagerAdapter(final Context context, final FragmentManager fragmentManager) {"
23988 errorLine2=" ~~~~~~~">
23989 <location
23990 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
23991 line="59"
23992 column="31"/>
23993 </issue>
23994
23995 <issue
23996 id="UnknownNullness"
23997 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
23998 errorLine1=" public PagerAdapter(final Context context, final FragmentManager fragmentManager) {"
23999 errorLine2=" ~~~~~~~~~~~~~~~">
24000 <location
24001 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
24002 line="59"
24003 column="54"/>
24004 </issue>
24005
24006 <issue
24007 id="UnknownNullness"
24008 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24009 errorLine1=" public void add(final Class&lt;? extends Fragment> className, final Bundle params) {"
24010 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
24011 <location
24012 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
24013 line="72"
24014 column="27"/>
24015 </issue>
24016
24017 <issue
24018 id="UnknownNullness"
24019 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24020 errorLine1=" public void add(final Class&lt;? extends Fragment> className, final Bundle params) {"
24021 errorLine2=" ~~~~~~">
24022 <location
24023 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
24024 line="72"
24025 column="70"/>
24026 </issue>
24027
24028 <issue
24029 id="UnknownNullness"
24030 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24031 errorLine1=" public Fragment getFragment(final int position) {"
24032 errorLine2=" ~~~~~~~~">
24033 <location
24034 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
24035 line="89"
24036 column="12"/>
24037 </issue>
24038
24039 <issue
24040 id="UnknownNullness"
24041 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24042 errorLine1=" public CharSequence getPageTitle(final int position) {"
24043 errorLine2=" ~~~~~~~~~~~~">
24044 <location
24045 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
24046 line="140"
24047 column="12"/>
24048 </issue>
24049
24050 <issue
24051 id="UnknownNullness"
24052 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24053 errorLine1=" public Class&lt;? extends Fragment> getFragmentClass() {"
24054 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
24055 <location
24056 file="src/org/lineageos/eleven/adapters/PagerAdapter.java"
24057 line="182"
24058 column="16"/>
24059 </issue>
24060
24061 <issue
24062 id="UnknownNullness"
24063 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24064 errorLine1=" public static PhotoSelectionDialog newInstance(final String title, String key) {"
24065 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
24066 <location
24067 file="src/org/lineageos/eleven/menu/PhotoSelectionDialog.java"
24068 line="60"
24069 column="19"/>
24070 </issue>
24071
24072 <issue
24073 id="UnknownNullness"
24074 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24075 errorLine1=" public static PhotoSelectionDialog newInstance(final String title, String key) {"
24076 errorLine2=" ~~~~~~">
24077 <location
24078 file="src/org/lineageos/eleven/menu/PhotoSelectionDialog.java"
24079 line="60"
24080 column="58"/>
24081 </issue>
24082
24083 <issue
24084 id="UnknownNullness"
24085 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24086 errorLine1=" public static PhotoSelectionDialog newInstance(final String title, String key) {"
24087 errorLine2=" ~~~~~~">
24088 <location
24089 file="src/org/lineageos/eleven/menu/PhotoSelectionDialog.java"
24090 line="60"
24091 column="72"/>
24092 </issue>
24093
24094 <issue
24095 id="UnknownNullness"
24096 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24097 errorLine1=" public Dialog onCreateDialog(final Bundle savedInstanceState) {"
24098 errorLine2=" ~~~~~~">
24099 <location
24100 file="src/org/lineageos/eleven/menu/PhotoSelectionDialog.java"
24101 line="71"
24102 column="40"/>
24103 </issue>
24104
24105 <issue
24106 id="UnknownNullness"
24107 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24108 errorLine1=" public PlayPauseButton(final Context context, final AttributeSet attrs) {"
24109 errorLine2=" ~~~~~~~">
24110 <location
24111 file="src/org/lineageos/eleven/widgets/PlayPauseButton.java"
24112 line="51"
24113 column="34"/>
24114 </issue>
24115
24116 <issue
24117 id="UnknownNullness"
24118 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24119 errorLine1=" public PlayPauseButton(final Context context, final AttributeSet attrs) {"
24120 errorLine2=" ~~~~~~~~~~~~">
24121 <location
24122 file="src/org/lineageos/eleven/widgets/PlayPauseButton.java"
24123 line="51"
24124 column="57"/>
24125 </issue>
24126
24127 <issue
24128 id="UnknownNullness"
24129 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24130 errorLine1=" public void onClick(final View v) {"
24131 errorLine2=" ~~~~">
24132 <location
24133 file="src/org/lineageos/eleven/widgets/PlayPauseButton.java"
24134 line="61"
24135 column="31"/>
24136 </issue>
24137
24138 <issue
24139 id="UnknownNullness"
24140 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24141 errorLine1=" public boolean onLongClick(final View view) {"
24142 errorLine2=" ~~~~">
24143 <location
24144 file="src/org/lineageos/eleven/widgets/PlayPauseButton.java"
24145 line="67"
24146 column="38"/>
24147 </issue>
24148
24149 <issue
24150 id="UnknownNullness"
24151 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24152 errorLine1=" public PlayPauseButtonContainer(Context context, AttributeSet attrs) {"
24153 errorLine2=" ~~~~~~~">
24154 <location
24155 file="src/org/lineageos/eleven/widgets/PlayPauseButtonContainer.java"
24156 line="28"
24157 column="37"/>
24158 </issue>
24159
24160 <issue
24161 id="UnknownNullness"
24162 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24163 errorLine1=" public PlayPauseButtonContainer(Context context, AttributeSet attrs) {"
24164 errorLine2=" ~~~~~~~~~~~~">
24165 <location
24166 file="src/org/lineageos/eleven/widgets/PlayPauseButtonContainer.java"
24167 line="28"
24168 column="54"/>
24169 </issue>
24170
24171 <issue
24172 id="UnknownNullness"
24173 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24174 errorLine1=" public PlayPauseProgressButton(Context context, AttributeSet attrs) {"
24175 errorLine2=" ~~~~~~~">
24176 <location
24177 file="src/org/lineageos/eleven/widgets/PlayPauseProgressButton.java"
24178 line="40"
24179 column="36"/>
24180 </issue>
24181
24182 <issue
24183 id="UnknownNullness"
24184 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24185 errorLine1=" public PlayPauseProgressButton(Context context, AttributeSet attrs) {"
24186 errorLine2=" ~~~~~~~~~~~~">
24187 <location
24188 file="src/org/lineageos/eleven/widgets/PlayPauseProgressButton.java"
24189 line="40"
24190 column="53"/>
24191 </issue>
24192
24193 <issue
24194 id="UnknownNullness"
24195 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24196 errorLine1=" public String mPlaylistName;"
24197 errorLine2=" ~~~~~~">
24198 <location
24199 file="src/org/lineageos/eleven/model/Playlist.java"
24200 line="40"
24201 column="12"/>
24202 </issue>
24203
24204 <issue
24205 id="UnknownNullness"
24206 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24207 errorLine1=" public Playlist(final long playlistId, final String playlistName, final int songCount) {"
24208 errorLine2=" ~~~~~~">
24209 <location
24210 file="src/org/lineageos/eleven/model/Playlist.java"
24211 line="53"
24212 column="50"/>
24213 </issue>
24214
24215 <issue
24216 id="UnknownNullness"
24217 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24218 errorLine1=" public int compare(Playlist p1, Playlist p2) {"
24219 errorLine2=" ~~~~~~~~">
24220 <location
24221 file="src/org/lineageos/eleven/model/Playlist.java"
24222 line="93"
24223 column="28"/>
24224 </issue>
24225
24226 <issue
24227 id="UnknownNullness"
24228 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24229 errorLine1=" public int compare(Playlist p1, Playlist p2) {"
24230 errorLine2=" ~~~~~~~~">
24231 <location
24232 file="src/org/lineageos/eleven/model/Playlist.java"
24233 line="93"
24234 column="41"/>
24235 </issue>
24236
24237 <issue
24238 id="UnknownNullness"
24239 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24240 errorLine1=" protected IListener mListener;"
24241 errorLine2=" ~~~~~~~~~">
24242 <location
24243 file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
24244 line="72"
24245 column="15"/>
24246 </issue>
24247
24248 <issue
24249 id="UnknownNullness"
24250 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24251 errorLine1=" public PlaylistAdapter(final FragmentActivity activity,"
24252 errorLine2=" ~~~~~~~~~~~~~~~~">
24253 <location
24254 file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
24255 line="86"
24256 column="34"/>
24257 </issue>
24258
24259 <issue
24260 id="UnknownNullness"
24261 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24262 errorLine1=" final Consumer&lt;Integer> onItemClickListener) {"
24263 errorLine2=" ~~~~~~~~~~~~~~~~~">
24264 <location
24265 file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
24266 line="87"
24267 column="34"/>
24268 </issue>
24269
24270 <issue
24271 id="UnknownNullness"
24272 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24273 errorLine1=" public Playlist getItem(int position) {"
24274 errorLine2=" ~~~~~~~~">
24275 <location
24276 file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
24277 line="158"
24278 column="12"/>
24279 </issue>
24280
24281 <issue
24282 id="UnknownNullness"
24283 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24284 errorLine1=" public void add(Playlist playlist) {"
24285 errorLine2=" ~~~~~~~~">
24286 <location
24287 file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
24288 line="162"
24289 column="21"/>
24290 </issue>
24291
24292 <issue
24293 id="UnknownNullness"
24294 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24295 errorLine1=" public void setPopupMenuClickedListener(IListener listener) {"
24296 errorLine2=" ~~~~~~~~~">
24297 <location
24298 file="src/org/lineageos/eleven/adapters/PlaylistAdapter.java"
24299 line="203"
24300 column="45"/>
24301 </issue>
24302
24303 <issue
24304 id="UnknownNullness"
24305 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24306 errorLine1=" public static synchronized PlaylistArtworkStore getInstance(final Context context) {"
24307 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
24308 <location
24309 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24310 line="42"
24311 column="32"/>
24312 </issue>
24313
24314 <issue
24315 id="UnknownNullness"
24316 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24317 errorLine1=" public static synchronized PlaylistArtworkStore getInstance(final Context context) {"
24318 errorLine2=" ~~~~~~~">
24319 <location
24320 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24321 line="42"
24322 column="71"/>
24323 </issue>
24324
24325 <issue
24326 id="UnknownNullness"
24327 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24328 errorLine1=" public static String getCoverCacheKey(final long playlistId) {"
24329 errorLine2=" ~~~~~~">
24330 <location
24331 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24332 line="53"
24333 column="19"/>
24334 </issue>
24335
24336 <issue
24337 id="UnknownNullness"
24338 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24339 errorLine1=" public static String getArtistCacheKey(final long playlistId) {"
24340 errorLine2=" ~~~~~~">
24341 <location
24342 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24343 line="61"
24344 column="19"/>
24345 </issue>
24346
24347 <issue
24348 id="UnknownNullness"
24349 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24350 errorLine1=" public PlaylistArtworkStore(final Context context) {"
24351 errorLine2=" ~~~~~~~">
24352 <location
24353 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24354 line="70"
24355 column="39"/>
24356 </issue>
24357
24358 <issue
24359 id="UnknownNullness"
24360 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24361 errorLine1=" public void onCreate(final SQLiteDatabase db) {"
24362 errorLine2=" ~~~~~~~~~~~~~~">
24363 <location
24364 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24365 line="75"
24366 column="32"/>
24367 </issue>
24368
24369 <issue
24370 id="UnknownNullness"
24371 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24372 errorLine1=" public void onDowngrade(SQLiteDatabase db) {"
24373 errorLine2=" ~~~~~~~~~~~~~~">
24374 <location
24375 file="src/org/lineageos/eleven/provider/PlaylistArtworkStore.java"
24376 line="94"
24377 column="29"/>
24378 </issue>
24379
24380 <issue
24381 id="UnknownNullness"
24382 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24383 errorLine1=" protected String getTitle() {"
24384 errorLine2=" ~~~~~~">
24385 <location
24386 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
24387 line="94"
24388 column="15"/>
24389 </issue>
24390
24391 <issue
24392 id="UnknownNullness"
24393 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24394 errorLine1=" protected PopupMenuHelper createActionMenuHelper() {"
24395 errorLine2=" ~~~~~~~~~~~~~~~">
24396 <location
24397 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
24398 line="116"
24399 column="15"/>
24400 </issue>
24401
24402 <issue
24403 id="UnknownNullness"
24404 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24405 errorLine1=" public void onCreate(Bundle savedInstanceState) {"
24406 errorLine2=" ~~~~~~">
24407 <location
24408 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
24409 line="136"
24410 column="26"/>
24411 </issue>
24412
24413 <issue
24414 id="UnknownNullness"
24415 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24416 errorLine1=" public Loader&lt;List&lt;Song>> onCreateLoader(int i, Bundle bundle) {"
24417 errorLine2=" ~~~~~~">
24418 <location
24419 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
24420 line="255"
24421 column="53"/>
24422 </issue>
24423
24424 <issue
24425 id="UnknownNullness"
24426 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24427 errorLine1=" public void onLoadFinished(@NonNull final Loader&lt;List&lt;Song>> loader, final List&lt;Song> data) {"
24428 errorLine2=" ~~~~~~~~~~">
24429 <location
24430 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
24431 line="262"
24432 column="80"/>
24433 </issue>
24434
24435 <issue
24436 id="UnknownNullness"
24437 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24438 errorLine1=" public PagerAdapter.MusicFragments getMusicFragmentParent() {"
24439 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
24440 <location
24441 file="src/org/lineageos/eleven/ui/fragments/PlaylistDetailFragment.java"
24442 line="357"
24443 column="12"/>
24444 </issue>
24445
24446 <issue
24447 id="UnknownNullness"
24448 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24449 errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
24450 errorLine2=" ~~~~~~">
24451 <location
24452 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
24453 line="88"
24454 column="32"/>
24455 </issue>
24456
24457 <issue
24458 id="UnknownNullness"
24459 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24460 errorLine1=" public View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,"
24461 errorLine2=" ~~~~">
24462 <location
24463 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
24464 line="105"
24465 column="12"/>
24466 </issue>
24467
24468 <issue
24469 id="UnknownNullness"
24470 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24471 errorLine1=" public View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,"
24472 errorLine2=" ~~~~~~~~~">
24473 <location
24474 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
24475 line="105"
24476 column="76"/>
24477 </issue>
24478
24479 <issue
24480 id="UnknownNullness"
24481 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24482 errorLine1=" final Bundle savedInstanceState) {"
24483 errorLine2=" ~~~~~~">
24484 <location
24485 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
24486 line="106"
24487 column="36"/>
24488 </issue>
24489
24490 <issue
24491 id="UnknownNullness"
24492 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24493 errorLine1=" public Loader&lt;List&lt;Playlist>> onCreateLoader(final int id, final Bundle args) {"
24494 errorLine2=" ~~~~~~">
24495 <location
24496 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
24497 line="162"
24498 column="70"/>
24499 </issue>
24500
24501 <issue
24502 id="UnknownNullness"
24503 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24504 errorLine1=" final List&lt;Playlist> data) {"
24505 errorLine2=" ~~~~~~~~~~~~~~">
24506 <location
24507 file="src/org/lineageos/eleven/ui/fragments/PlaylistFragment.java"
24508 line="170"
24509 column="38"/>
24510 </issue>
24511
24512 <issue
24513 id="UnknownNullness"
24514 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24515 errorLine1=" public PlaylistLoader(final Context context) {"
24516 errorLine2=" ~~~~~~~">
24517 <location
24518 file="src/org/lineageos/eleven/loaders/PlaylistLoader.java"
24519 line="53"
24520 column="33"/>
24521 </issue>
24522
24523 <issue
24524 id="UnknownNullness"
24525 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24526 errorLine1=" public List&lt;Playlist> loadInBackground() {"
24527 errorLine2=" ~~~~~~~~~~~~~~">
24528 <location
24529 file="src/org/lineageos/eleven/loaders/PlaylistLoader.java"
24530 line="58"
24531 column="12"/>
24532 </issue>
24533
24534 <issue
24535 id="UnknownNullness"
24536 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24537 errorLine1=" public static Cursor makePlaylistCursor(final Context context) {"
24538 errorLine2=" ~~~~~~">
24539 <location
24540 file="src/org/lineageos/eleven/loaders/PlaylistLoader.java"
24541 line="115"
24542 column="19"/>
24543 </issue>
24544
24545 <issue
24546 id="UnknownNullness"
24547 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24548 errorLine1=" public static Cursor makePlaylistCursor(final Context context) {"
24549 errorLine2=" ~~~~~~~">
24550 <location
24551 file="src/org/lineageos/eleven/loaders/PlaylistLoader.java"
24552 line="115"
24553 column="51"/>
24554 </issue>
24555
24556 <issue
24557 id="UnknownNullness"
24558 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24559 errorLine1=" public PlaylistPopupMenuHelper(Activity activity, FragmentManager fragmentManager,"
24560 errorLine2=" ~~~~~~~~">
24561 <location
24562 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24563 line="35"
24564 column="36"/>
24565 </issue>
24566
24567 <issue
24568 id="UnknownNullness"
24569 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24570 errorLine1=" public PlaylistPopupMenuHelper(Activity activity, FragmentManager fragmentManager,"
24571 errorLine2=" ~~~~~~~~~~~~~~~">
24572 <location
24573 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24574 line="35"
24575 column="55"/>
24576 </issue>
24577
24578 <issue
24579 id="UnknownNullness"
24580 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24581 errorLine1=" PopupMenuType type) {"
24582 errorLine2=" ~~~~~~~~~~~~~">
24583 <location
24584 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24585 line="36"
24586 column="36"/>
24587 </issue>
24588
24589 <issue
24590 id="UnknownNullness"
24591 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24592 errorLine1=" public abstract Playlist getPlaylist(int position);"
24593 errorLine2=" ~~~~~~~~">
24594 <location
24595 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24596 line="41"
24597 column="21"/>
24598 </issue>
24599
24600 <issue
24601 id="UnknownNullness"
24602 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24603 errorLine1=" public PopupMenuType onPreparePopupMenu(int position) {"
24604 errorLine2=" ~~~~~~~~~~~~~">
24605 <location
24606 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24607 line="44"
24608 column="12"/>
24609 </issue>
24610
24611 <issue
24612 id="UnknownNullness"
24613 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24614 errorLine1=" public void updateName(String name) {"
24615 errorLine2=" ~~~~~~">
24616 <location
24617 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24618 line="50"
24619 column="28"/>
24620 </issue>
24621
24622 <issue
24623 id="UnknownNullness"
24624 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24625 errorLine1=" protected Config.IdType getSourceType() {"
24626 errorLine2=" ~~~~~~~~~~~~~">
24627 <location
24628 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24629 line="62"
24630 column="15"/>
24631 </issue>
24632
24633 <issue
24634 id="UnknownNullness"
24635 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24636 errorLine1=" protected long[] getIdList() {"
24637 errorLine2=" ~~~~~~">
24638 <location
24639 file="src/org/lineageos/eleven/utils/PlaylistPopupMenuHelper.java"
24640 line="67"
24641 column="15"/>
24642 </issue>
24643
24644 <issue
24645 id="UnknownNullness"
24646 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24647 errorLine1=" public PlaylistSongLoader(final Context context, final long playlistId) {"
24648 errorLine2=" ~~~~~~~">
24649 <location
24650 file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
24651 line="62"
24652 column="37"/>
24653 </issue>
24654
24655 <issue
24656 id="UnknownNullness"
24657 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24658 errorLine1=" public List&lt;Song> loadInBackground() {"
24659 errorLine2=" ~~~~~~~~~~">
24660 <location
24661 file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
24662 line="68"
24663 column="12"/>
24664 </issue>
24665
24666 <issue
24667 id="UnknownNullness"
24668 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24669 errorLine1=" public static Cursor makePlaylistSongCursor(final Context context, final Long playlistID) {"
24670 errorLine2=" ~~~~~~">
24671 <location
24672 file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
24673 line="246"
24674 column="19"/>
24675 </issue>
24676
24677 <issue
24678 id="UnknownNullness"
24679 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24680 errorLine1=" public static Cursor makePlaylistSongCursor(final Context context, final Long playlistID) {"
24681 errorLine2=" ~~~~~~~">
24682 <location
24683 file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
24684 line="246"
24685 column="55"/>
24686 </issue>
24687
24688 <issue
24689 id="UnknownNullness"
24690 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24691 errorLine1=" public static Cursor makePlaylistSongCursor(final Context context, final Long playlistID) {"
24692 errorLine2=" ~~~~">
24693 <location
24694 file="src/org/lineageos/eleven/loaders/PlaylistSongLoader.java"
24695 line="246"
24696 column="78"/>
24697 </issue>
24698
24699 <issue
24700 id="UnknownNullness"
24701 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24702 errorLine1=" public PlaylistWorkerTask(final String key, final long playlistId,"
24703 errorLine2=" ~~~~~~">
24704 <location
24705 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24706 line="74"
24707 column="37"/>
24708 </issue>
24709
24710 <issue
24711 id="UnknownNullness"
24712 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24713 errorLine1=" final PlaylistWorkerType type, final boolean foundInCache,"
24714 errorLine2=" ~~~~~~~~~~~~~~~~~~">
24715 <location
24716 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24717 line="75"
24718 column="37"/>
24719 </issue>
24720
24721 <issue
24722 id="UnknownNullness"
24723 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24724 errorLine1=" final ImageView imageView, final Drawable fromDrawable,"
24725 errorLine2=" ~~~~~~~~~">
24726 <location
24727 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24728 line="76"
24729 column="37"/>
24730 </issue>
24731
24732 <issue
24733 id="UnknownNullness"
24734 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24735 errorLine1=" final ImageView imageView, final Drawable fromDrawable,"
24736 errorLine2=" ~~~~~~~~">
24737 <location
24738 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24739 line="76"
24740 column="64"/>
24741 </issue>
24742
24743 <issue
24744 id="UnknownNullness"
24745 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24746 errorLine1=" final Context context) {"
24747 errorLine2=" ~~~~~~~">
24748 <location
24749 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24750 line="77"
24751 column="37"/>
24752 </issue>
24753
24754 <issue
24755 id="UnknownNullness"
24756 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24757 errorLine1=" protected TransitionDrawable doInBackground(final Void... params) {"
24758 errorLine2=" ~~~~~~~~~~~~~~~~~~">
24759 <location
24760 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24761 line="88"
24762 column="15"/>
24763 </issue>
24764
24765 <issue
24766 id="UnknownNullness"
24767 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24768 errorLine1=" protected TransitionDrawable doInBackground(final Void... params) {"
24769 errorLine2=" ~~~~~~~">
24770 <location
24771 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24772 line="88"
24773 column="55"/>
24774 </issue>
24775
24776 <issue
24777 id="UnknownNullness"
24778 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24779 errorLine1=" protected Cursor getTopSongsForPlaylist() {"
24780 errorLine2=" ~~~~~~">
24781 <location
24782 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24783 line="172"
24784 column="15"/>
24785 </issue>
24786
24787 <issue
24788 id="UnknownNullness"
24789 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24790 errorLine1=" protected Bitmap loadTopArtist(Cursor sortedCursor) {"
24791 errorLine2=" ~~~~~~">
24792 <location
24793 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24794 line="222"
24795 column="15"/>
24796 </issue>
24797
24798 <issue
24799 id="UnknownNullness"
24800 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24801 errorLine1=" protected Bitmap loadTopArtist(Cursor sortedCursor) {"
24802 errorLine2=" ~~~~~~">
24803 <location
24804 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24805 line="222"
24806 column="36"/>
24807 </issue>
24808
24809 <issue
24810 id="UnknownNullness"
24811 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24812 errorLine1=" protected Bitmap loadTopSongs(Cursor sortedCursor) {"
24813 errorLine2=" ~~~~~~">
24814 <location
24815 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24816 line="268"
24817 column="15"/>
24818 </issue>
24819
24820 <issue
24821 id="UnknownNullness"
24822 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24823 errorLine1=" protected Bitmap loadTopSongs(Cursor sortedCursor) {"
24824 errorLine2=" ~~~~~~">
24825 <location
24826 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24827 line="268"
24828 column="35"/>
24829 </issue>
24830
24831 <issue
24832 id="UnknownNullness"
24833 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24834 errorLine1=" protected void onPostExecute(TransitionDrawable transitionDrawable) {"
24835 errorLine2=" ~~~~~~~~~~~~~~~~~~">
24836 <location
24837 file="src/org/lineageos/eleven/cache/PlaylistWorkerTask.java"
24838 line="361"
24839 column="34"/>
24840 </issue>
24841
24842 <issue
24843 id="UnknownNullness"
24844 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24845 errorLine1=" protected IListener mClickListener = null;"
24846 errorLine2=" ~~~~~~~~~">
24847 <location
24848 file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
24849 line="31"
24850 column="15"/>
24851 </issue>
24852
24853 <issue
24854 id="UnknownNullness"
24855 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24856 errorLine1=" public PopupMenuButton(Context context, AttributeSet attrs) {"
24857 errorLine2=" ~~~~~~~">
24858 <location
24859 file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
24860 line="33"
24861 column="28"/>
24862 </issue>
24863
24864 <issue
24865 id="UnknownNullness"
24866 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24867 errorLine1=" public PopupMenuButton(Context context, AttributeSet attrs) {"
24868 errorLine2=" ~~~~~~~~~~~~">
24869 <location
24870 file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
24871 line="33"
24872 column="45"/>
24873 </issue>
24874
24875 <issue
24876 id="UnknownNullness"
24877 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24878 errorLine1=" public void setPopupMenuClickedListener(final IListener listener) {"
24879 errorLine2=" ~~~~~~~~~">
24880 <location
24881 file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
24882 line="46"
24883 column="51"/>
24884 </issue>
24885
24886 <issue
24887 id="UnknownNullness"
24888 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24889 errorLine1=" public void onClick(View v) {"
24890 errorLine2=" ~~~~">
24891 <location
24892 file="src/org/lineageos/eleven/widgets/PopupMenuButton.java"
24893 line="51"
24894 column="25"/>
24895 </issue>
24896
24897 <issue
24898 id="UnknownNullness"
24899 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24900 errorLine1=" protected PopupMenuType mType;"
24901 errorLine2=" ~~~~~~~~~~~~~">
24902 <location
24903 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24904 line="61"
24905 column="15"/>
24906 </issue>
24907
24908 <issue
24909 id="UnknownNullness"
24910 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24911 errorLine1=" public PopupMenuHelper(final Activity activity, final FragmentManager fragmentManager) {"
24912 errorLine2=" ~~~~~~~~">
24913 <location
24914 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24915 line="64"
24916 column="34"/>
24917 </issue>
24918
24919 <issue
24920 id="UnknownNullness"
24921 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24922 errorLine1=" public PopupMenuHelper(final Activity activity, final FragmentManager fragmentManager) {"
24923 errorLine2=" ~~~~~~~~~~~~~~~">
24924 <location
24925 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24926 line="64"
24927 column="59"/>
24928 </issue>
24929
24930 <issue
24931 id="UnknownNullness"
24932 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24933 errorLine1=" public void showPopupMenu(final View view, final int position) {"
24934 errorLine2=" ~~~~">
24935 <location
24936 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24937 line="76"
24938 column="37"/>
24939 </issue>
24940
24941 <issue
24942 id="UnknownNullness"
24943 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24944 errorLine1=" public abstract PopupMenuType onPreparePopupMenu(final int position);"
24945 errorLine2=" ~~~~~~~~~~~~~">
24946 <location
24947 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24948 line="102"
24949 column="21"/>
24950 </issue>
24951
24952 <issue
24953 id="UnknownNullness"
24954 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24955 errorLine1=" protected abstract long[] getIdList();"
24956 errorLine2=" ~~~~~~">
24957 <location
24958 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24959 line="107"
24960 column="24"/>
24961 </issue>
24962
24963 <issue
24964 id="UnknownNullness"
24965 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24966 errorLine1=" protected abstract Config.IdType getSourceType();"
24967 errorLine2=" ~~~~~~~~~~~~~">
24968 <location
24969 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24970 line="111"
24971 column="24"/>
24972 </issue>
24973
24974 <issue
24975 id="UnknownNullness"
24976 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24977 errorLine1=" protected String getArtistName() {"
24978 errorLine2=" ~~~~~~">
24979 <location
24980 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24981 line="131"
24982 column="15"/>
24983 </issue>
24984
24985 <issue
24986 id="UnknownNullness"
24987 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24988 errorLine1=" public void createPopupMenu(final Menu menu) {"
24989 errorLine2=" ~~~~">
24990 <location
24991 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
24992 line="180"
24993 column="39"/>
24994 </issue>
24995
24996 <issue
24997 id="UnknownNullness"
24998 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
24999 errorLine1=" protected void updateMenuIds(PopupMenuType type, TreeSet&lt;Integer> set) {"
25000 errorLine2=" ~~~~~~~~~~~~~">
25001 <location
25002 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
25003 line="272"
25004 column="34"/>
25005 </issue>
25006
25007 <issue
25008 id="UnknownNullness"
25009 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25010 errorLine1=" protected void updateMenuIds(PopupMenuType type, TreeSet&lt;Integer> set) {"
25011 errorLine2=" ~~~~~~~~~~~~~~~~">
25012 <location
25013 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
25014 line="272"
25015 column="54"/>
25016 </issue>
25017
25018 <issue
25019 id="UnknownNullness"
25020 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25021 errorLine1=" public void addToMenu(final Menu menu, final int id, final int resourceId) {"
25022 errorLine2=" ~~~~">
25023 <location
25024 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
25025 line="337"
25026 column="33"/>
25027 </issue>
25028
25029 <issue
25030 id="UnknownNullness"
25031 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25032 errorLine1=" public boolean onMenuItemClick(MenuItem item) {"
25033 errorLine2=" ~~~~~~~~">
25034 <location
25035 file="src/org/lineageos/eleven/utils/PopupMenuHelper.java"
25036 line="342"
25037 column="36"/>
25038 </issue>
25039
25040 <issue
25041 id="UnknownNullness"
25042 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25043 errorLine1=" public PreferenceUtils(final Context context) {"
25044 errorLine2=" ~~~~~~~">
25045 <location
25046 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25047 line="87"
25048 column="34"/>
25049 </issue>
25050
25051 <issue
25052 id="UnknownNullness"
25053 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25054 errorLine1=" public static PreferenceUtils getInstance(final Context context) {"
25055 errorLine2=" ~~~~~~~~~~~~~~~">
25056 <location
25057 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25058 line="95"
25059 column="19"/>
25060 </issue>
25061
25062 <issue
25063 id="UnknownNullness"
25064 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25065 errorLine1=" public static PreferenceUtils getInstance(final Context context) {"
25066 errorLine2=" ~~~~~~~">
25067 <location
25068 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25069 line="95"
25070 column="53"/>
25071 </issue>
25072
25073 <issue
25074 id="UnknownNullness"
25075 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25076 errorLine1=" public void setOnSharedPreferenceChangeListener(OnSharedPreferenceChangeListener listener) {"
25077 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
25078 <location
25079 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25080 line="117"
25081 column="53"/>
25082 </issue>
25083
25084 <issue
25085 id="UnknownNullness"
25086 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25087 errorLine1=" public void removeOnSharedPreferenceChangeListener(OnSharedPreferenceChangeListener listener) {"
25088 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
25089 <location
25090 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25091 line="124"
25092 column="56"/>
25093 </issue>
25094
25095 <issue
25096 id="UnknownNullness"
25097 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25098 errorLine1=" public void setArtistSortOrder(final String value) {"
25099 errorLine2=" ~~~~~~">
25100 <location
25101 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25102 line="154"
25103 column="42"/>
25104 </issue>
25105
25106 <issue
25107 id="UnknownNullness"
25108 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25109 errorLine1=" public final String getArtistSortOrder() {"
25110 errorLine2=" ~~~~~~">
25111 <location
25112 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25113 line="161"
25114 column="18"/>
25115 </issue>
25116
25117 <issue
25118 id="UnknownNullness"
25119 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25120 errorLine1=" public void setAlbumSortOrder(final String value) {"
25121 errorLine2=" ~~~~~~">
25122 <location
25123 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25124 line="170"
25125 column="41"/>
25126 </issue>
25127
25128 <issue
25129 id="UnknownNullness"
25130 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25131 errorLine1=" public final String getAlbumSortOrder() {"
25132 errorLine2=" ~~~~~~">
25133 <location
25134 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25135 line="177"
25136 column="18"/>
25137 </issue>
25138
25139 <issue
25140 id="UnknownNullness"
25141 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25142 errorLine1=" public final String getAlbumSongSortOrder() {"
25143 errorLine2=" ~~~~~~">
25144 <location
25145 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25146 line="185"
25147 column="18"/>
25148 </issue>
25149
25150 <issue
25151 id="UnknownNullness"
25152 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25153 errorLine1=" public void setSongSortOrder(final String value) {"
25154 errorLine2=" ~~~~~~">
25155 <location
25156 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25157 line="195"
25158 column="40"/>
25159 </issue>
25160
25161 <issue
25162 id="UnknownNullness"
25163 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25164 errorLine1=" public final String getSongSortOrder() {"
25165 errorLine2=" ~~~~~~">
25166 <location
25167 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25168 line="202"
25169 column="18"/>
25170 </issue>
25171
25172 <issue
25173 id="UnknownNullness"
25174 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25175 errorLine1=" public static boolean canRecordAudio(Activity activity) {"
25176 errorLine2=" ~~~~~~~~">
25177 <location
25178 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25179 line="224"
25180 column="42"/>
25181 </issue>
25182
25183 <issue
25184 id="UnknownNullness"
25185 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25186 errorLine1=" public static void requestRecordAudio(Activity activity) {"
25187 errorLine2=" ~~~~~~~~">
25188 <location
25189 file="src/org/lineageos/eleven/utils/PreferenceUtils.java"
25190 line="229"
25191 column="43"/>
25192 </issue>
25193
25194 <issue
25195 id="UnknownNullness"
25196 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25197 errorLine1=" public ProfileSongAdapter(final long playlistId, final FragmentActivity context,"
25198 errorLine2=" ~~~~~~~~~~~~~~~~">
25199 <location
25200 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25201 line="94"
25202 column="60"/>
25203 </issue>
25204
25205 <issue
25206 id="UnknownNullness"
25207 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25208 errorLine1=" final int layoutId, final Consumer&lt;Integer> onItemClickListener) {"
25209 errorLine2=" ~~~~~~~~~~~~~~~~~">
25210 <location
25211 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25212 line="95"
25213 column="57"/>
25214 </issue>
25215
25216 <issue
25217 id="UnknownNullness"
25218 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25219 errorLine1=" protected boolean showNowPlayingIndicator(final Song song) {"
25220 errorLine2=" ~~~~">
25221 <location
25222 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25223 line="113"
25224 column="53"/>
25225 </issue>
25226
25227 <issue
25228 id="UnknownNullness"
25229 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25230 errorLine1=" public void setPopupMenuClickedListener(IPopupMenuCallback.IListener listener) {"
25231 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
25232 <location
25233 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25234 line="174"
25235 column="45"/>
25236 </issue>
25237
25238 <issue
25239 id="UnknownNullness"
25240 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25241 errorLine1=" public void setCurrentlyPlayingTrack(MusicPlaybackTrack currentTrack) {"
25242 errorLine2=" ~~~~~~~~~~~~~~~~~~">
25243 <location
25244 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25245 line="183"
25246 column="42"/>
25247 </issue>
25248
25249 <issue
25250 id="UnknownNullness"
25251 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25252 errorLine1=" public Song getItem(int position) {"
25253 errorLine2=" ~~~~">
25254 <location
25255 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25256 line="205"
25257 column="12"/>
25258 </issue>
25259
25260 <issue
25261 id="UnknownNullness"
25262 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25263 errorLine1=" public void setData(List&lt;Song> songs) {"
25264 errorLine2=" ~~~~~~~~~~">
25265 <location
25266 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25267 line="209"
25268 column="25"/>
25269 </issue>
25270
25271 <issue
25272 id="UnknownNullness"
25273 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25274 errorLine1=" public void remove(Song song) {"
25275 errorLine2=" ~~~~">
25276 <location
25277 file="src/org/lineageos/eleven/adapters/ProfileSongAdapter.java"
25278 line="233"
25279 column="24"/>
25280 </issue>
25281
25282 <issue
25283 id="UnknownNullness"
25284 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25285 errorLine1=" public static synchronized PropertiesStore getInstance(final Context context) {"
25286 errorLine2=" ~~~~~~~~~~~~~~~">
25287 <location
25288 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25289 line="30"
25290 column="32"/>
25291 </issue>
25292
25293 <issue
25294 id="UnknownNullness"
25295 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25296 errorLine1=" public static synchronized PropertiesStore getInstance(final Context context) {"
25297 errorLine2=" ~~~~~~~">
25298 <location
25299 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25300 line="30"
25301 column="66"/>
25302 </issue>
25303
25304 <issue
25305 id="UnknownNullness"
25306 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25307 errorLine1=" public void onCreate(final SQLiteDatabase db) {"
25308 errorLine2=" ~~~~~~~~~~~~~~">
25309 <location
25310 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25311 line="42"
25312 column="32"/>
25313 </issue>
25314
25315 <issue
25316 id="UnknownNullness"
25317 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25318 errorLine1=" public void onUpgrade(final SQLiteDatabase db, final int oldVersion, final int newVersion) {"
25319 errorLine2=" ~~~~~~~~~~~~~~">
25320 <location
25321 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25322 line="48"
25323 column="33"/>
25324 </issue>
25325
25326 <issue
25327 id="UnknownNullness"
25328 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25329 errorLine1=" public void onDowngrade(SQLiteDatabase db) {"
25330 errorLine2=" ~~~~~~~~~~~~~~">
25331 <location
25332 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25333 line="55"
25334 column="29"/>
25335 </issue>
25336
25337 <issue
25338 id="UnknownNullness"
25339 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25340 errorLine1=" public String getProperty(String key) {"
25341 errorLine2=" ~~~~~~">
25342 <location
25343 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25344 line="61"
25345 column="12"/>
25346 </issue>
25347
25348 <issue
25349 id="UnknownNullness"
25350 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25351 errorLine1=" public String getProperty(String key) {"
25352 errorLine2=" ~~~~~~">
25353 <location
25354 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25355 line="61"
25356 column="31"/>
25357 </issue>
25358
25359 <issue
25360 id="UnknownNullness"
25361 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25362 errorLine1=" public String getProperty(String key, String defaultValue) {"
25363 errorLine2=" ~~~~~~">
25364 <location
25365 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25366 line="65"
25367 column="12"/>
25368 </issue>
25369
25370 <issue
25371 id="UnknownNullness"
25372 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25373 errorLine1=" public String getProperty(String key, String defaultValue) {"
25374 errorLine2=" ~~~~~~">
25375 <location
25376 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25377 line="65"
25378 column="31"/>
25379 </issue>
25380
25381 <issue
25382 id="UnknownNullness"
25383 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25384 errorLine1=" public String getProperty(String key, String defaultValue) {"
25385 errorLine2=" ~~~~~~">
25386 <location
25387 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25388 line="65"
25389 column="43"/>
25390 </issue>
25391
25392 <issue
25393 id="UnknownNullness"
25394 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25395 errorLine1=" public void storeProperty(String key, String value) {"
25396 errorLine2=" ~~~~~~">
25397 <location
25398 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25399 line="83"
25400 column="31"/>
25401 </issue>
25402
25403 <issue
25404 id="UnknownNullness"
25405 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25406 errorLine1=" public void storeProperty(String key, String value) {"
25407 errorLine2=" ~~~~~~">
25408 <location
25409 file="src/org/lineageos/eleven/provider/PropertiesStore.java"
25410 line="83"
25411 column="43"/>
25412 </issue>
25413
25414 <issue
25415 id="UnknownNullness"
25416 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25417 errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
25418 errorLine2=" ~~~~~~">
25419 <location
25420 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25421 line="117"
25422 column="32"/>
25423 </issue>
25424
25425 <issue
25426 id="UnknownNullness"
25427 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25428 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
25429 errorLine2=" ~~~~">
25430 <location
25431 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25432 line="207"
25433 column="12"/>
25434 </issue>
25435
25436 <issue
25437 id="UnknownNullness"
25438 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25439 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
25440 errorLine2=" ~~~~~~~~~~~~~~">
25441 <location
25442 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25443 line="207"
25444 column="36"/>
25445 </issue>
25446
25447 <issue
25448 id="UnknownNullness"
25449 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25450 errorLine1=" public View onCreateView(final LayoutInflater inflater, final ViewGroup container,"
25451 errorLine2=" ~~~~~~~~~">
25452 <location
25453 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25454 line="207"
25455 column="67"/>
25456 </issue>
25457
25458 <issue
25459 id="UnknownNullness"
25460 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25461 errorLine1=" final Bundle savedInstanceState) {"
25462 errorLine2=" ~~~~~~">
25463 <location
25464 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25465 line="208"
25466 column="36"/>
25467 </issue>
25468
25469 <issue
25470 id="UnknownNullness"
25471 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25472 errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
25473 errorLine2=" ~~~~~~~~~~~~~">
25474 <location
25475 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25476 line="228"
25477 column="42"/>
25478 </issue>
25479
25480 <issue
25481 id="UnknownNullness"
25482 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25483 errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
25484 errorLine2=" ~~~~~~~">
25485 <location
25486 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25487 line="228"
25488 column="68"/>
25489 </issue>
25490
25491 <issue
25492 id="UnknownNullness"
25493 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25494 errorLine1=" public void onServiceDisconnected(ComponentName name) {"
25495 errorLine2=" ~~~~~~~~~~~~~">
25496 <location
25497 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25498 line="233"
25499 column="39"/>
25500 </issue>
25501
25502 <issue
25503 id="UnknownNullness"
25504 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25505 errorLine1=" public Loader&lt;List&lt;Song>> onCreateLoader(final int id, final Bundle args) {"
25506 errorLine2=" ~~~~~~">
25507 <location
25508 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25509 line="283"
25510 column="66"/>
25511 </issue>
25512
25513 <issue
25514 id="UnknownNullness"
25515 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25516 errorLine1=" public void onLoadFinished(@NonNull final Loader&lt;List&lt;Song>> loader, final List&lt;Song> data) {"
25517 errorLine2=" ~~~~~~~~~~">
25518 <location
25519 file="src/org/lineageos/eleven/ui/fragments/QueueFragment.java"
25520 line="289"
25521 column="80"/>
25522 </issue>
25523
25524 <issue
25525 id="UnknownNullness"
25526 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25527 errorLine1=" public QueueLoader(final Context context) {"
25528 errorLine2=" ~~~~~~~">
25529 <location
25530 file="src/org/lineageos/eleven/loaders/QueueLoader.java"
25531 line="46"
25532 column="30"/>
25533 </issue>
25534
25535 <issue
25536 id="UnknownNullness"
25537 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25538 errorLine1=" public List&lt;Song> loadInBackground() {"
25539 errorLine2=" ~~~~~~~~~~">
25540 <location
25541 file="src/org/lineageos/eleven/loaders/QueueLoader.java"
25542 line="51"
25543 column="12"/>
25544 </issue>
25545
25546 <issue
25547 id="UnknownNullness"
25548 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25549 errorLine1=" public static Cursor makeQueueCursor(final Context context) {"
25550 errorLine2=" ~~~~~~">
25551 <location
25552 file="src/org/lineageos/eleven/loaders/QueueLoader.java"
25553 line="100"
25554 column="19"/>
25555 </issue>
25556
25557 <issue
25558 id="UnknownNullness"
25559 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25560 errorLine1=" public static Cursor makeQueueCursor(final Context context) {"
25561 errorLine2=" ~~~~~~~">
25562 <location
25563 file="src/org/lineageos/eleven/loaders/QueueLoader.java"
25564 line="100"
25565 column="48"/>
25566 </issue>
25567
25568 <issue
25569 id="UnknownNullness"
25570 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25571 errorLine1=" public QueueSongAdapter(final FragmentActivity context, final int layoutId, final long sourceId,"
25572 errorLine2=" ~~~~~~~~~~~~~~~~">
25573 <location
25574 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25575 line="90"
25576 column="35"/>
25577 </issue>
25578
25579 <issue
25580 id="UnknownNullness"
25581 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25582 errorLine1=" final Config.IdType sourceType,"
25583 errorLine2=" ~~~~~~~~~~~~~">
25584 <location
25585 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25586 line="91"
25587 column="35"/>
25588 </issue>
25589
25590 <issue
25591 id="UnknownNullness"
25592 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25593 errorLine1=" final Consumer&lt;Integer> onItemClickListener) {"
25594 errorLine2=" ~~~~~~~~~~~~~~~~~">
25595 <location
25596 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25597 line="92"
25598 column="35"/>
25599 </issue>
25600
25601 <issue
25602 id="UnknownNullness"
25603 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25604 errorLine1=" protected boolean showNowPlayingIndicator(final Song song) {"
25605 errorLine2=" ~~~~">
25606 <location
25607 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25608 line="111"
25609 column="53"/>
25610 </issue>
25611
25612 <issue
25613 id="UnknownNullness"
25614 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25615 errorLine1=" public void setCurrentlyPlayingTrack(MusicPlaybackTrack currentTrack) {"
25616 errorLine2=" ~~~~~~~~~~~~~~~~~~">
25617 <location
25618 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25619 line="184"
25620 column="42"/>
25621 </issue>
25622
25623 <issue
25624 id="UnknownNullness"
25625 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25626 errorLine1=" public void setPopupMenuClickedListener(IListener listener) {"
25627 errorLine2=" ~~~~~~~~~">
25628 <location
25629 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25630 line="207"
25631 column="45"/>
25632 </issue>
25633
25634 <issue
25635 id="UnknownNullness"
25636 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25637 errorLine1=" public Song getItem(int position) {"
25638 errorLine2=" ~~~~">
25639 <location
25640 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25641 line="211"
25642 column="12"/>
25643 </issue>
25644
25645 <issue
25646 id="UnknownNullness"
25647 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25648 errorLine1=" public void setData(List&lt;Song> song) {"
25649 errorLine2=" ~~~~~~~~~~">
25650 <location
25651 file="src/org/lineageos/eleven/adapters/QueueSongAdapter.java"
25652 line="215"
25653 column="25"/>
25654 </issue>
25655
25656 <issue
25657 id="UnknownNullness"
25658 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25659 errorLine1=" protected SmartPlaylistType getSmartPlaylistType() {"
25660 errorLine2=" ~~~~~~~~~~~~~~~~~">
25661 <location
25662 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25663 line="55"
25664 column="15"/>
25665 </issue>
25666
25667 <issue
25668 id="UnknownNullness"
25669 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25670 errorLine1=" protected void updateMenuIds(TreeSet&lt;Integer> set) {"
25671 errorLine2=" ~~~~~~~~~~~~~~~~">
25672 <location
25673 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25674 line="60"
25675 column="34"/>
25676 </issue>
25677
25678 <issue
25679 id="UnknownNullness"
25680 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25681 errorLine1=" public Loader&lt;SectionListContainer&lt;Song>> onCreateLoader(final int id, final Bundle args) {"
25682 errorLine2=" ~~~~~~">
25683 <location
25684 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25685 line="66"
25686 column="82"/>
25687 </issue>
25688
25689 <issue
25690 id="UnknownNullness"
25691 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25692 errorLine1=" public void setupNoResultsContainer(NoResultsContainer empty) {"
25693 errorLine2=" ~~~~~~~~~~~~~~~~~~">
25694 <location
25695 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25696 line="84"
25697 column="41"/>
25698 </issue>
25699
25700 <issue
25701 id="UnknownNullness"
25702 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25703 errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
25704 errorLine2=" ~~~~">
25705 <location
25706 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25707 line="92"
25708 column="18"/>
25709 </issue>
25710
25711 <issue
25712 id="UnknownNullness"
25713 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25714 errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
25715 errorLine2=" ~~~~~~~~~~~~~~">
25716 <location
25717 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25718 line="92"
25719 column="36"/>
25720 </issue>
25721
25722 <issue
25723 id="UnknownNullness"
25724 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25725 errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
25726 errorLine2=" ~~~~~~~~~">
25727 <location
25728 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25729 line="92"
25730 column="61"/>
25731 </issue>
25732
25733 <issue
25734 id="UnknownNullness"
25735 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25736 errorLine1=" Bundle savedInstanceState) {"
25737 errorLine2=" ~~~~~~">
25738 <location
25739 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25740 line="93"
25741 column="36"/>
25742 </issue>
25743
25744 <issue
25745 id="UnknownNullness"
25746 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25747 errorLine1=" protected SongListAdapter createAdapter() {"
25748 errorLine2=" ~~~~~~~~~~~~~~~">
25749 <location
25750 file="src/org/lineageos/eleven/ui/fragments/RecentFragment.java"
25751 line="114"
25752 column="15"/>
25753 </issue>
25754
25755 <issue
25756 id="UnknownNullness"
25757 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25758 errorLine1=" public RecentStore(final Context context) {"
25759 errorLine2=" ~~~~~~~">
25760 <location
25761 file="src/org/lineageos/eleven/provider/RecentStore.java"
25762 line="38"
25763 column="30"/>
25764 </issue>
25765
25766 <issue
25767 id="UnknownNullness"
25768 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25769 errorLine1=" public void onCreate(final SQLiteDatabase db) {"
25770 errorLine2=" ~~~~~~~~~~~~~~">
25771 <location
25772 file="src/org/lineageos/eleven/provider/RecentStore.java"
25773 line="42"
25774 column="32"/>
25775 </issue>
25776
25777 <issue
25778 id="UnknownNullness"
25779 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25780 errorLine1=" public void onDowngrade(SQLiteDatabase db) {"
25781 errorLine2=" ~~~~~~~~~~~~~~">
25782 <location
25783 file="src/org/lineageos/eleven/provider/RecentStore.java"
25784 line="48"
25785 column="29"/>
25786 </issue>
25787
25788 <issue
25789 id="UnknownNullness"
25790 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25791 errorLine1=" public static synchronized RecentStore getInstance(final Context context) {"
25792 errorLine2=" ~~~~~~~~~~~">
25793 <location
25794 file="src/org/lineageos/eleven/provider/RecentStore.java"
25795 line="58"
25796 column="32"/>
25797 </issue>
25798
25799 <issue
25800 id="UnknownNullness"
25801 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25802 errorLine1=" public static synchronized RecentStore getInstance(final Context context) {"
25803 errorLine2=" ~~~~~~~">
25804 <location
25805 file="src/org/lineageos/eleven/provider/RecentStore.java"
25806 line="58"
25807 column="62"/>
25808 </issue>
25809
25810 <issue
25811 id="UnknownNullness"
25812 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25813 errorLine1=" public Cursor queryRecentIds(final String limit) {"
25814 errorLine2=" ~~~~~~">
25815 <location
25816 file="src/org/lineageos/eleven/provider/RecentStore.java"
25817 line="130"
25818 column="12"/>
25819 </issue>
25820
25821 <issue
25822 id="UnknownNullness"
25823 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25824 errorLine1=" public Cursor queryRecentIds(final String limit) {"
25825 errorLine2=" ~~~~~~">
25826 <location
25827 file="src/org/lineageos/eleven/provider/RecentStore.java"
25828 line="130"
25829 column="40"/>
25830 </issue>
25831
25832 <issue
25833 id="UnknownNullness"
25834 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25835 errorLine1=" public static RenamePlaylist getInstance(final Long id) {"
25836 errorLine2=" ~~~~~~~~~~~~~~">
25837 <location
25838 file="src/org/lineageos/eleven/menu/RenamePlaylist.java"
25839 line="49"
25840 column="19"/>
25841 </issue>
25842
25843 <issue
25844 id="UnknownNullness"
25845 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25846 errorLine1=" public static RenamePlaylist getInstance(final Long id) {"
25847 errorLine2=" ~~~~">
25848 <location
25849 file="src/org/lineageos/eleven/menu/RenamePlaylist.java"
25850 line="49"
25851 column="52"/>
25852 </issue>
25853
25854 <issue
25855 id="UnknownNullness"
25856 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25857 errorLine1=" public void initialize(final Bundle savedInstanceState) {"
25858 errorLine2=" ~~~~~~">
25859 <location
25860 file="src/org/lineageos/eleven/menu/RenamePlaylist.java"
25861 line="64"
25862 column="34"/>
25863 </issue>
25864
25865 <issue
25866 id="UnknownNullness"
25867 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25868 errorLine1=" public void afterTextChanged(Editable editable) {"
25869 errorLine2=" ~~~~~~~~">
25870 <location
25871 file="src/org/lineageos/eleven/menu/RenamePlaylist.java"
25872 line="105"
25873 column="34"/>
25874 </issue>
25875
25876 <issue
25877 id="UnknownNullness"
25878 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25879 errorLine1=" public RepeatButton(final Context context, final AttributeSet attrs) {"
25880 errorLine2=" ~~~~~~~">
25881 <location
25882 file="src/org/lineageos/eleven/widgets/RepeatButton.java"
25883 line="35"
25884 column="31"/>
25885 </issue>
25886
25887 <issue
25888 id="UnknownNullness"
25889 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25890 errorLine1=" public RepeatButton(final Context context, final AttributeSet attrs) {"
25891 errorLine2=" ~~~~~~~~~~~~">
25892 <location
25893 file="src/org/lineageos/eleven/widgets/RepeatButton.java"
25894 line="35"
25895 column="54"/>
25896 </issue>
25897
25898 <issue
25899 id="UnknownNullness"
25900 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25901 errorLine1=" public void onClick(final View v) {"
25902 errorLine2=" ~~~~">
25903 <location
25904 file="src/org/lineageos/eleven/widgets/RepeatButton.java"
25905 line="40"
25906 column="31"/>
25907 </issue>
25908
25909 <issue
25910 id="UnknownNullness"
25911 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25912 errorLine1=" public RepeatingImageButton(final Context context, final AttributeSet attrs) {"
25913 errorLine2=" ~~~~~~~">
25914 <location
25915 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25916 line="53"
25917 column="39"/>
25918 </issue>
25919
25920 <issue
25921 id="UnknownNullness"
25922 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25923 errorLine1=" public RepeatingImageButton(final Context context, final AttributeSet attrs) {"
25924 errorLine2=" ~~~~~~~~~~~~">
25925 <location
25926 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25927 line="53"
25928 column="62"/>
25929 </issue>
25930
25931 <issue
25932 id="UnknownNullness"
25933 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25934 errorLine1=" public void onClick(final View view) {"
25935 errorLine2=" ~~~~">
25936 <location
25937 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25938 line="64"
25939 column="31"/>
25940 </issue>
25941
25942 <issue
25943 id="UnknownNullness"
25944 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25945 errorLine1=" public void setRepeatListener(final RepeatListener l) {"
25946 errorLine2=" ~~~~~~~~~~~~~~">
25947 <location
25948 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25949 line="79"
25950 column="41"/>
25951 </issue>
25952
25953 <issue
25954 id="UnknownNullness"
25955 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25956 errorLine1=" public boolean onTouchEvent(final MotionEvent event) {"
25957 errorLine2=" ~~~~~~~~~~~">
25958 <location
25959 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25960 line="95"
25961 column="39"/>
25962 </issue>
25963
25964 <issue
25965 id="UnknownNullness"
25966 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25967 errorLine1=" public boolean onKeyDown(final int keyCode, final KeyEvent event) {"
25968 errorLine2=" ~~~~~~~~">
25969 <location
25970 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25971 line="108"
25972 column="55"/>
25973 </issue>
25974
25975 <issue
25976 id="UnknownNullness"
25977 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25978 errorLine1=" public boolean onKeyUp(final int keyCode, final KeyEvent event) {"
25979 errorLine2=" ~~~~~~~~">
25980 <location
25981 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25982 line="123"
25983 column="53"/>
25984 </issue>
25985
25986 <issue
25987 id="UnknownNullness"
25988 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
25989 errorLine1=" void onRepeat(View v, long duration, int repeatCount);"
25990 errorLine2=" ~~~~">
25991 <location
25992 file="src/org/lineageos/eleven/widgets/RepeatingImageButton.java"
25993 line="178"
25994 column="23"/>
25995 </issue>
25996
25997 <issue
25998 id="UnknownNullness"
25999 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26000 errorLine1=" public SimpleListLoader(Context context) {"
26001 errorLine2=" ~~~~~~~">
26002 <location
26003 file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
26004 line="44"
26005 column="33"/>
26006 </issue>
26007
26008 <issue
26009 id="UnknownNullness"
26010 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26011 errorLine1=" public SectionCreator(Context context, SimpleListLoader&lt;T> loader,"
26012 errorLine2=" ~~~~~~~">
26013 <location
26014 file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
26015 line="66"
26016 column="27"/>
26017 </issue>
26018
26019 <issue
26020 id="UnknownNullness"
26021 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26022 errorLine1=" public SectionCreator(Context context, SimpleListLoader&lt;T> loader,"
26023 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
26024 <location
26025 file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
26026 line="66"
26027 column="44"/>
26028 </issue>
26029
26030 <issue
26031 id="UnknownNullness"
26032 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26033 errorLine1=" SectionCreatorUtils.IItemCompare&lt;T> comparator) {"
26034 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
26035 <location
26036 file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
26037 line="67"
26038 column="27"/>
26039 </issue>
26040
26041 <issue
26042 id="UnknownNullness"
26043 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26044 errorLine1=" public SectionListContainer&lt;T> loadInBackground() {"
26045 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~">
26046 <location
26047 file="src/org/lineageos/eleven/sectionadapter/SectionCreator.java"
26048 line="74"
26049 column="12"/>
26050 </issue>
26051
26052 <issue
26053 id="UnknownNullness"
26054 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26055 errorLine1=" public Section(final SectionType type, final String identifier) {"
26056 errorLine2=" ~~~~~~~~~~~">
26057 <location
26058 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26059 line="43"
26060 column="30"/>
26061 </issue>
26062
26063 <issue
26064 id="UnknownNullness"
26065 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26066 errorLine1=" public Section(final SectionType type, final String identifier) {"
26067 errorLine2=" ~~~~~~">
26068 <location
26069 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26070 line="43"
26071 column="54"/>
26072 </issue>
26073
26074 <issue
26075 id="UnknownNullness"
26076 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26077 errorLine1=" public String createSectionHeader(T first, T second, List&lt;T> items, int firstIndex) {"
26078 errorLine2=" ~~~~~~">
26079 <location
26080 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26081 line="67"
26082 column="16"/>
26083 </issue>
26084
26085 <issue
26086 id="UnknownNullness"
26087 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26088 errorLine1=" public String createSectionHeader(T first, T second, List&lt;T> items, int firstIndex) {"
26089 errorLine2=" ~~~~~~~">
26090 <location
26091 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26092 line="67"
26093 column="62"/>
26094 </issue>
26095
26096 <issue
26097 id="UnknownNullness"
26098 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26099 errorLine1=" public String createSectionHeader(T first, T second) {"
26100 errorLine2=" ~~~~~~">
26101 <location
26102 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26103 line="71"
26104 column="16"/>
26105 </issue>
26106
26107 <issue
26108 id="UnknownNullness"
26109 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26110 errorLine1=" public String createSectionFooter(T first, T second, List&lt;T> items, int firstIndex) {"
26111 errorLine2=" ~~~~~~">
26112 <location
26113 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26114 line="86"
26115 column="16"/>
26116 </issue>
26117
26118 <issue
26119 id="UnknownNullness"
26120 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26121 errorLine1=" public String createSectionFooter(T first, T second, List&lt;T> items, int firstIndex) {"
26122 errorLine2=" ~~~~~~~">
26123 <location
26124 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26125 line="86"
26126 column="62"/>
26127 </issue>
26128
26129 <issue
26130 id="UnknownNullness"
26131 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26132 errorLine1=" public String createSectionFooter(T first, T second) {"
26133 errorLine2=" ~~~~~~">
26134 <location
26135 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26136 line="90"
26137 column="16"/>
26138 </issue>
26139
26140 <issue
26141 id="UnknownNullness"
26142 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26143 errorLine1=" public String createHeaderLabel(T item) {"
26144 errorLine2=" ~~~~~~">
26145 <location
26146 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26147 line="100"
26148 column="16"/>
26149 </issue>
26150
26151 <issue
26152 id="UnknownNullness"
26153 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26154 errorLine1=" public String createFooterLabel(T item) {"
26155 errorLine2=" ~~~~~~">
26156 <location
26157 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26158 line="110"
26159 column="16"/>
26160 </issue>
26161
26162 <issue
26163 id="UnknownNullness"
26164 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26165 errorLine1=" public LocalizedCompare(Context context) {"
26166 errorLine2=" ~~~~~~~">
26167 <location
26168 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26169 line="130"
26170 column="33"/>
26171 </issue>
26172
26173 <issue
26174 id="UnknownNullness"
26175 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26176 errorLine1=" public String createSectionHeader(T first, T second) {"
26177 errorLine2=" ~~~~~~">
26178 <location
26179 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26180 line="136"
26181 column="16"/>
26182 </issue>
26183
26184 <issue
26185 id="UnknownNullness"
26186 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26187 errorLine1=" public String createHeaderLabel(T item) {"
26188 errorLine2=" ~~~~~~">
26189 <location
26190 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26191 line="153"
26192 column="16"/>
26193 </issue>
26194
26195 <issue
26196 id="UnknownNullness"
26197 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26198 errorLine1=" protected String createHeaderLabel(final String label) {"
26199 errorLine2=" ~~~~~~">
26200 <location
26201 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26202 line="158"
26203 column="19"/>
26204 </issue>
26205
26206 <issue
26207 id="UnknownNullness"
26208 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26209 errorLine1=" protected String createHeaderLabel(final String label) {"
26210 errorLine2=" ~~~~~~">
26211 <location
26212 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26213 line="158"
26214 column="50"/>
26215 </issue>
26216
26217 <issue
26218 id="UnknownNullness"
26219 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26220 errorLine1=" public abstract String getString(T item);"
26221 errorLine2=" ~~~~~~">
26222 <location
26223 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26224 line="165"
26225 column="25"/>
26226 </issue>
26227
26228 <issue
26229 id="UnknownNullness"
26230 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26231 errorLine1=" public String createSectionHeader(T first, T second) {"
26232 errorLine2=" ~~~~~~">
26233 <location
26234 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26235 line="180"
26236 column="16"/>
26237 </issue>
26238
26239 <issue
26240 id="UnknownNullness"
26241 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26242 errorLine1=" public String createHeaderLabel(T item) {"
26243 errorLine2=" ~~~~~~">
26244 <location
26245 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26246 line="189"
26247 column="16"/>
26248 </issue>
26249
26250 <issue
26251 id="UnknownNullness"
26252 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26253 errorLine1=" public BoundedIntCompare(Context context) {"
26254 errorLine2=" ~~~~~~~">
26255 <location
26256 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26257 line="206"
26258 column="34"/>
26259 </issue>
26260
26261 <issue
26262 id="UnknownNullness"
26263 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26264 errorLine1=" public String createSectionHeader(T first, T second) {"
26265 errorLine2=" ~~~~~~">
26266 <location
26267 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26268 line="213"
26269 column="16"/>
26270 </issue>
26271
26272 <issue
26273 id="UnknownNullness"
26274 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26275 errorLine1=" protected String createLabel(int stringId, T item) {"
26276 errorLine2=" ~~~~~~">
26277 <location
26278 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26279 line="222"
26280 column="19"/>
26281 </issue>
26282
26283 <issue
26284 id="UnknownNullness"
26285 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26286 errorLine1=" public String createHeaderLabel(T item) {"
26287 errorLine2=" ~~~~~~">
26288 <location
26289 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26290 line="227"
26291 column="16"/>
26292 </issue>
26293
26294 <issue
26295 id="UnknownNullness"
26296 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26297 errorLine1=" public DurationCompare(Context context) {"
26298 errorLine2=" ~~~~~~~">
26299 <location
26300 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26301 line="240"
26302 column="32"/>
26303 </issue>
26304
26305 <issue
26306 id="UnknownNullness"
26307 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26308 errorLine1=" public NumberOfSongsCompare(Context context) {"
26309 errorLine2=" ~~~~~~~">
26310 <location
26311 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26312 line="276"
26313 column="37"/>
26314 </issue>
26315
26316 <issue
26317 id="UnknownNullness"
26318 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26319 errorLine1=" public NumberOfAlbumsCompare(Context context) {"
26320 errorLine2=" ~~~~~~~">
26321 <location
26322 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26323 line="300"
26324 column="38"/>
26325 </issue>
26326
26327 <issue
26328 id="UnknownNullness"
26329 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26330 errorLine1=" public String createSectionHeader(T first, T second) {"
26331 errorLine2=" ~~~~~~">
26332 <location
26333 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26334 line="314"
26335 column="16"/>
26336 </issue>
26337
26338 <issue
26339 id="UnknownNullness"
26340 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26341 errorLine1=" protected String createLabel(int stringId, T item) {"
26342 errorLine2=" ~~~~~~">
26343 <location
26344 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26345 line="337"
26346 column="19"/>
26347 </issue>
26348
26349 <issue
26350 id="UnknownNullness"
26351 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26352 errorLine1=" public static &lt;T> TreeMap&lt;Integer, Section> createSections(final List&lt;T> list,"
26353 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~">
26354 <location
26355 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26356 line="355"
26357 column="23"/>
26358 </issue>
26359
26360 <issue
26361 id="UnknownNullness"
26362 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26363 errorLine1=" public static &lt;T> TreeMap&lt;Integer, Section> createSections(final List&lt;T> list,"
26364 errorLine2=" ~~~~~~~">
26365 <location
26366 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26367 line="355"
26368 column="70"/>
26369 </issue>
26370
26371 <issue
26372 id="UnknownNullness"
26373 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26374 errorLine1=" final IItemCompare&lt;T> comparator) {"
26375 errorLine2=" ~~~~~~~~~~~~~~~">
26376 <location
26377 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26378 line="356"
26379 column="70"/>
26380 </issue>
26381
26382 <issue
26383 id="UnknownNullness"
26384 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26385 errorLine1=" public static IItemCompare&lt;Artist> createArtistComparison(final Context context) {"
26386 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
26387 <location
26388 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26389 line="398"
26390 column="19"/>
26391 </issue>
26392
26393 <issue
26394 id="UnknownNullness"
26395 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26396 errorLine1=" public static IItemCompare&lt;Artist> createArtistComparison(final Context context) {"
26397 errorLine2=" ~~~~~~~">
26398 <location
26399 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26400 line="398"
26401 column="69"/>
26402 </issue>
26403
26404 <issue
26405 id="UnknownNullness"
26406 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26407 errorLine1=" public static IItemCompare&lt;Song> createSongComparison(final Context context) {"
26408 errorLine2=" ~~~~~~~~~~~~~~~~~~">
26409 <location
26410 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26411 line="448"
26412 column="19"/>
26413 </issue>
26414
26415 <issue
26416 id="UnknownNullness"
26417 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26418 errorLine1=" public static IItemCompare&lt;Song> createSongComparison(final Context context) {"
26419 errorLine2=" ~~~~~~~">
26420 <location
26421 file="src/org/lineageos/eleven/utils/SectionCreatorUtils.java"
26422 line="448"
26423 column="65"/>
26424 </issue>
26425
26426 <issue
26427 id="UnknownNullness"
26428 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26429 errorLine1=" public SectionListContainer(final TreeMap&lt;Integer, SectionCreatorUtils.Section> sections,"
26430 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
26431 <location
26432 file="src/org/lineageos/eleven/sectionadapter/SectionListContainer.java"
26433 line="33"
26434 column="39"/>
26435 </issue>
26436
26437 <issue
26438 id="UnknownNullness"
26439 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26440 errorLine1=" final List&lt;T> results) {"
26441 errorLine2=" ~~~~~~~">
26442 <location
26443 file="src/org/lineageos/eleven/sectionadapter/SectionListContainer.java"
26444 line="34"
26445 column="39"/>
26446 </issue>
26447
26448 <issue
26449 id="UnknownNullness"
26450 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26451 errorLine1=" public SectionSeparatorItemDecoration(Context context,"
26452 errorLine2=" ~~~~~~~">
26453 <location
26454 file="src/org/lineageos/eleven/widgets/SectionSeparatorItemDecoration.java"
26455 line="49"
26456 column="43"/>
26457 </issue>
26458
26459 <issue
26460 id="UnknownNullness"
26461 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26462 errorLine1=" TreeMap&lt;Integer, SectionCreatorUtils.Section> items) {"
26463 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
26464 <location
26465 file="src/org/lineageos/eleven/widgets/SectionSeparatorItemDecoration.java"
26466 line="50"
26467 column="43"/>
26468 </issue>
26469
26470 <issue
26471 id="UnknownNullness"
26472 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26473 errorLine1=" protected void onCreate(final Bundle savedInstanceState) {"
26474 errorLine2=" ~~~~~~">
26475 <location
26476 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26477 line="52"
26478 column="35"/>
26479 </issue>
26480
26481 <issue
26482 id="UnknownNullness"
26483 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26484 errorLine1=" public boolean onOptionsItemSelected(final MenuItem item) {"
26485 errorLine2=" ~~~~~~~~">
26486 <location
26487 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26488 line="65"
26489 column="48"/>
26490 </issue>
26491
26492 <issue
26493 id="UnknownNullness"
26494 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26495 errorLine1=" public void onCreate(final Bundle savedInstanceState) {"
26496 errorLine2=" ~~~~~~">
26497 <location
26498 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26499 line="85"
26500 column="36"/>
26501 </issue>
26502
26503 <issue
26504 id="UnknownNullness"
26505 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26506 errorLine1=" public void onCreatePreferences(Bundle bundle, String rootKey) {"
26507 errorLine2=" ~~~~~~">
26508 <location
26509 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26510 line="125"
26511 column="41"/>
26512 </issue>
26513
26514 <issue
26515 id="UnknownNullness"
26516 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26517 errorLine1=" public void onCreatePreferences(Bundle bundle, String rootKey) {"
26518 errorLine2=" ~~~~~~">
26519 <location
26520 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26521 line="125"
26522 column="56"/>
26523 </issue>
26524
26525 <issue
26526 id="UnknownNullness"
26527 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26528 errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
26529 errorLine2=" ~~~~~~~~~~~~~">
26530 <location
26531 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26532 line="147"
26533 column="46"/>
26534 </issue>
26535
26536 <issue
26537 id="UnknownNullness"
26538 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26539 errorLine1=" public void onServiceConnected(final ComponentName name, final IBinder service) {"
26540 errorLine2=" ~~~~~~~">
26541 <location
26542 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26543 line="147"
26544 column="72"/>
26545 </issue>
26546
26547 <issue
26548 id="UnknownNullness"
26549 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26550 errorLine1=" public void onServiceDisconnected(ComponentName name) {"
26551 errorLine2=" ~~~~~~~~~~~~~">
26552 <location
26553 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26554 line="152"
26555 column="43"/>
26556 </issue>
26557
26558 <issue
26559 id="UnknownNullness"
26560 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26561 errorLine1=" public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {"
26562 errorLine2=" ~~~~~~~~~~~~~~~~~">
26563 <location
26564 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26565 line="157"
26566 column="47"/>
26567 </issue>
26568
26569 <issue
26570 id="UnknownNullness"
26571 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26572 errorLine1=" public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {"
26573 errorLine2=" ~~~~~~">
26574 <location
26575 file="src/org/lineageos/eleven/ui/activities/SettingsActivity.java"
26576 line="157"
26577 column="84"/>
26578 </issue>
26579
26580 <issue
26581 id="UnknownNullness"
26582 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26583 errorLine1=" public ShakeDetector(Listener listener) {"
26584 errorLine2=" ~~~~~~~~">
26585 <location
26586 file="src/org/lineageos/eleven/utils/ShakeDetector.java"
26587 line="61"
26588 column="26"/>
26589 </issue>
26590
26591 <issue
26592 id="UnknownNullness"
26593 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26594 errorLine1=" public boolean start(SensorManager sensorManager) {"
26595 errorLine2=" ~~~~~~~~~~~~~">
26596 <location
26597 file="src/org/lineageos/eleven/utils/ShakeDetector.java"
26598 line="71"
26599 column="26"/>
26600 </issue>
26601
26602 <issue
26603 id="UnknownNullness"
26604 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26605 errorLine1=" public void onSensorChanged(SensorEvent event) {"
26606 errorLine2=" ~~~~~~~~~~~">
26607 <location
26608 file="src/org/lineageos/eleven/utils/ShakeDetector.java"
26609 line="102"
26610 column="33"/>
26611 </issue>
26612
26613 <issue
26614 id="UnknownNullness"
26615 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26616 errorLine1=" public void onAccuracyChanged(Sensor sensor, int accuracy) {"
26617 errorLine2=" ~~~~~~">
26618 <location
26619 file="src/org/lineageos/eleven/utils/ShakeDetector.java"
26620 line="289"
26621 column="35"/>
26622 </issue>
26623
26624 <issue
26625 id="UnknownNullness"
26626 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26627 errorLine1=" public ShuffleButton(final Context context, final AttributeSet attrs) {"
26628 errorLine2=" ~~~~~~~">
26629 <location
26630 file="src/org/lineageos/eleven/widgets/ShuffleButton.java"
26631 line="31"
26632 column="32"/>
26633 </issue>
26634
26635 <issue
26636 id="UnknownNullness"
26637 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26638 errorLine1=" public ShuffleButton(final Context context, final AttributeSet attrs) {"
26639 errorLine2=" ~~~~~~~~~~~~">
26640 <location
26641 file="src/org/lineageos/eleven/widgets/ShuffleButton.java"
26642 line="31"
26643 column="55"/>
26644 </issue>
26645
26646 <issue
26647 id="UnknownNullness"
26648 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26649 errorLine1=" public void onClick(final View v) {"
26650 errorLine2=" ~~~~">
26651 <location
26652 file="src/org/lineageos/eleven/widgets/ShuffleButton.java"
26653 line="36"
26654 column="31"/>
26655 </issue>
26656
26657 <issue
26658 id="UnknownNullness"
26659 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26660 errorLine1=" public SimpleBitmapWorkerTask(final String key, final ImageView imageView,"
26661 errorLine2=" ~~~~~~">
26662 <location
26663 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26664 line="42"
26665 column="41"/>
26666 </issue>
26667
26668 <issue
26669 id="UnknownNullness"
26670 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26671 errorLine1=" public SimpleBitmapWorkerTask(final String key, final ImageView imageView,"
26672 errorLine2=" ~~~~~~~~~">
26673 <location
26674 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26675 line="42"
26676 column="59"/>
26677 </issue>
26678
26679 <issue
26680 id="UnknownNullness"
26681 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26682 errorLine1=" final ImageType imageType, final Drawable fromDrawable,"
26683 errorLine2=" ~~~~~~~~~">
26684 <location
26685 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26686 line="43"
26687 column="41"/>
26688 </issue>
26689
26690 <issue
26691 id="UnknownNullness"
26692 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26693 errorLine1=" final ImageType imageType, final Drawable fromDrawable,"
26694 errorLine2=" ~~~~~~~~">
26695 <location
26696 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26697 line="43"
26698 column="68"/>
26699 </issue>
26700
26701 <issue
26702 id="UnknownNullness"
26703 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26704 errorLine1=" final Context context, final boolean scaleImgToView) {"
26705 errorLine2=" ~~~~~~~">
26706 <location
26707 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26708 line="44"
26709 column="41"/>
26710 </issue>
26711
26712 <issue
26713 id="UnknownNullness"
26714 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26715 errorLine1=" protected TransitionDrawable doInBackground(final String... params) {"
26716 errorLine2=" ~~~~~~~~~~~~~~~~~~">
26717 <location
26718 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26719 line="49"
26720 column="15"/>
26721 </issue>
26722
26723 <issue
26724 id="UnknownNullness"
26725 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26726 errorLine1=" protected TransitionDrawable doInBackground(final String... params) {"
26727 errorLine2=" ~~~~~~~~~">
26728 <location
26729 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26730 line="49"
26731 column="55"/>
26732 </issue>
26733
26734 <issue
26735 id="UnknownNullness"
26736 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26737 errorLine1=" protected void onPostExecute(TransitionDrawable transitionDrawable) {"
26738 errorLine2=" ~~~~~~~~~~~~~~~~~~">
26739 <location
26740 file="src/org/lineageos/eleven/cache/SimpleBitmapWorkerTask.java"
26741 line="65"
26742 column="34"/>
26743 </issue>
26744
26745 <issue
26746 id="UnknownNullness"
26747 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26748 errorLine1=" protected Panel mTargetNavigatePanel;"
26749 errorLine2=" ~~~~~">
26750 <location
26751 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26752 line="61"
26753 column="15"/>
26754 </issue>
26755
26756 <issue
26757 id="UnknownNullness"
26758 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26759 errorLine1=" protected void init(final Bundle savedInstanceState) {"
26760 errorLine2=" ~~~~~~">
26761 <location
26762 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26763 line="93"
26764 column="31"/>
26765 </issue>
26766
26767 <issue
26768 id="UnknownNullness"
26769 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26770 errorLine1=" public void showPanel(Panel panel) {"
26771 errorLine2=" ~~~~~">
26772 <location
26773 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26774 line="218"
26775 column="27"/>
26776 </issue>
26777
26778 <issue
26779 id="UnknownNullness"
26780 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26781 errorLine1=" public Panel getCurrentPanel() {"
26782 errorLine2=" ~~~~~">
26783 <location
26784 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26785 line="261"
26786 column="12"/>
26787 </issue>
26788
26789 <issue
26790 id="UnknownNullness"
26791 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26792 errorLine1=" protected AudioPlayerFragment getAudioPlayerFragment() {"
26793 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
26794 <location
26795 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26796 line="292"
26797 column="15"/>
26798 </issue>
26799
26800 <issue
26801 id="UnknownNullness"
26802 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26803 errorLine1=" protected QueueFragment getQueueFragment() {"
26804 errorLine2=" ~~~~~~~~~~~~~">
26805 <location
26806 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26807 line="297"
26808 column="15"/>
26809 </issue>
26810
26811 <issue
26812 id="UnknownNullness"
26813 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26814 errorLine1=" protected void setupQueueHeaderBar(final View.OnClickListener headerClickListener) {"
26815 errorLine2=" ~~~~~~~~~~~~~~~~~~~~">
26816 <location
26817 file="src/org/lineageos/eleven/ui/activities/SlidingPanelActivity.java"
26818 line="316"
26819 column="46"/>
26820 </issue>
26821
26822 <issue
26823 id="UnknownNullness"
26824 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26825 errorLine1=" void onPanelSlide(View panel, float slideOffset);"
26826 errorLine2=" ~~~~">
26827 <location
26828 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26829 line="242"
26830 column="27"/>
26831 </issue>
26832
26833 <issue
26834 id="UnknownNullness"
26835 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26836 errorLine1=" void onPanelCollapsed(View panel);"
26837 errorLine2=" ~~~~">
26838 <location
26839 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26840 line="249"
26841 column="31"/>
26842 </issue>
26843
26844 <issue
26845 id="UnknownNullness"
26846 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26847 errorLine1=" void onPanelExpanded(View panel);"
26848 errorLine2=" ~~~~">
26849 <location
26850 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26851 line="256"
26852 column="30"/>
26853 </issue>
26854
26855 <issue
26856 id="UnknownNullness"
26857 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26858 errorLine1=" void onPanelAnchored(View panel);"
26859 errorLine2=" ~~~~">
26860 <location
26861 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26862 line="264"
26863 column="30"/>
26864 </issue>
26865
26866 <issue
26867 id="UnknownNullness"
26868 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26869 errorLine1=" void onPanelHidden(View panel);"
26870 errorLine2=" ~~~~">
26871 <location
26872 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26873 line="272"
26874 column="28"/>
26875 </issue>
26876
26877 <issue
26878 id="UnknownNullness"
26879 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26880 errorLine1=" public void onPanelSlide(View panel, float slideOffset) {"
26881 errorLine2=" ~~~~">
26882 <location
26883 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26884 line="281"
26885 column="34"/>
26886 </issue>
26887
26888 <issue
26889 id="UnknownNullness"
26890 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26891 errorLine1=" public void onPanelCollapsed(View panel) {"
26892 errorLine2=" ~~~~">
26893 <location
26894 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26895 line="285"
26896 column="38"/>
26897 </issue>
26898
26899 <issue
26900 id="UnknownNullness"
26901 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26902 errorLine1=" public void onPanelExpanded(View panel) {"
26903 errorLine2=" ~~~~">
26904 <location
26905 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26906 line="289"
26907 column="37"/>
26908 </issue>
26909
26910 <issue
26911 id="UnknownNullness"
26912 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26913 errorLine1=" public void onPanelAnchored(View panel) {"
26914 errorLine2=" ~~~~">
26915 <location
26916 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26917 line="293"
26918 column="37"/>
26919 </issue>
26920
26921 <issue
26922 id="UnknownNullness"
26923 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26924 errorLine1=" public void onPanelHidden(View panel) {"
26925 errorLine2=" ~~~~">
26926 <location
26927 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26928 line="297"
26929 column="35"/>
26930 </issue>
26931
26932 <issue
26933 id="UnknownNullness"
26934 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26935 errorLine1=" public SlidingUpPanelLayout(Context context) {"
26936 errorLine2=" ~~~~~~~">
26937 <location
26938 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26939 line="301"
26940 column="33"/>
26941 </issue>
26942
26943 <issue
26944 id="UnknownNullness"
26945 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26946 errorLine1=" public SlidingUpPanelLayout(Context context, AttributeSet attrs) {"
26947 errorLine2=" ~~~~~~~">
26948 <location
26949 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26950 line="305"
26951 column="33"/>
26952 </issue>
26953
26954 <issue
26955 id="UnknownNullness"
26956 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26957 errorLine1=" public SlidingUpPanelLayout(Context context, AttributeSet attrs) {"
26958 errorLine2=" ~~~~~~~~~~~~">
26959 <location
26960 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26961 line="305"
26962 column="50"/>
26963 </issue>
26964
26965 <issue
26966 id="UnknownNullness"
26967 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26968 errorLine1=" public SlidingUpPanelLayout(Context context, AttributeSet attrs, int defStyle) {"
26969 errorLine2=" ~~~~~~~">
26970 <location
26971 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26972 line="309"
26973 column="33"/>
26974 </issue>
26975
26976 <issue
26977 id="UnknownNullness"
26978 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26979 errorLine1=" public SlidingUpPanelLayout(Context context, AttributeSet attrs, int defStyle) {"
26980 errorLine2=" ~~~~~~~~~~~~">
26981 <location
26982 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26983 line="309"
26984 column="50"/>
26985 </issue>
26986
26987 <issue
26988 id="UnknownNullness"
26989 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
26990 errorLine1=" public void setPanelSlideListener(PanelSlideListener listener) {"
26991 errorLine2=" ~~~~~~~~~~~~~~~~~~">
26992 <location
26993 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
26994 line="442"
26995 column="39"/>
26996 </issue>
26997
26998 <issue
26999 id="UnknownNullness"
27000 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27001 errorLine1=" public void setDragView(View dragView) {"
27002 errorLine2=" ~~~~">
27003 <location
27004 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27005 line="451"
27006 column="29"/>
27007 </issue>
27008
27009 <issue
27010 id="UnknownNullness"
27011 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27012 errorLine1=" public boolean onInterceptTouchEvent(MotionEvent ev) {"
27013 errorLine2=" ~~~~~~~~~~~">
27014 <location
27015 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27016 line="732"
27017 column="42"/>
27018 </issue>
27019
27020 <issue
27021 id="UnknownNullness"
27022 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27023 errorLine1=" public boolean onTouchEvent(MotionEvent ev) {"
27024 errorLine2=" ~~~~~~~~~~~">
27025 <location
27026 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27027 line="776"
27028 column="33"/>
27029 </issue>
27030
27031 <issue
27032 id="UnknownNullness"
27033 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27034 errorLine1=" protected boolean drawChild(Canvas canvas, View child, long drawingTime) {"
27035 errorLine2=" ~~~~~~">
27036 <location
27037 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27038 line="908"
27039 column="33"/>
27040 </issue>
27041
27042 <issue
27043 id="UnknownNullness"
27044 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27045 errorLine1=" protected boolean drawChild(Canvas canvas, View child, long drawingTime) {"
27046 errorLine2=" ~~~~">
27047 <location
27048 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27049 line="908"
27050 column="48"/>
27051 </issue>
27052
27053 <issue
27054 id="UnknownNullness"
27055 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27056 errorLine1=" public void draw(Canvas c) {"
27057 errorLine2=" ~~~~~~">
27058 <location
27059 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27060 line="970"
27061 column="22"/>
27062 </issue>
27063
27064 <issue
27065 id="UnknownNullness"
27066 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27067 errorLine1=" protected ViewGroup.LayoutParams generateDefaultLayoutParams() {"
27068 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
27069 <location
27070 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27071 line="997"
27072 column="15"/>
27073 </issue>
27074
27075 <issue
27076 id="UnknownNullness"
27077 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27078 errorLine1=" protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {"
27079 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
27080 <location
27081 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27082 line="1002"
27083 column="15"/>
27084 </issue>
27085
27086 <issue
27087 id="UnknownNullness"
27088 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27089 errorLine1=" protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {"
27090 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
27091 <location
27092 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27093 line="1002"
27094 column="59"/>
27095 </issue>
27096
27097 <issue
27098 id="UnknownNullness"
27099 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27100 errorLine1=" protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {"
27101 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
27102 <location
27103 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27104 line="1009"
27105 column="41"/>
27106 </issue>
27107
27108 <issue
27109 id="UnknownNullness"
27110 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27111 errorLine1=" public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {"
27112 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~">
27113 <location
27114 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27115 line="1014"
27116 column="12"/>
27117 </issue>
27118
27119 <issue
27120 id="UnknownNullness"
27121 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27122 errorLine1=" public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {"
27123 errorLine2=" ~~~~~~~~~~~~">
27124 <location
27125 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27126 line="1014"
27127 column="56"/>
27128 </issue>
27129
27130 <issue
27131 id="UnknownNullness"
27132 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27133 errorLine1=" public Parcelable onSaveInstanceState() {"
27134 errorLine2=" ~~~~~~~~~~">
27135 <location
27136 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27137 line="1019"
27138 column="12"/>
27139 </issue>
27140
27141 <issue
27142 id="UnknownNullness"
27143 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27144 errorLine1=" public void onRestoreInstanceState(Parcelable state) {"
27145 errorLine2=" ~~~~~~~~~~">
27146 <location
27147 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27148 line="1029"
27149 column="40"/>
27150 </issue>
27151
27152 <issue
27153 id="UnknownNullness"
27154 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27155 errorLine1=" public LayoutParams(android.view.ViewGroup.LayoutParams source) {"
27156 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
27157 <location
27158 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27159 line="1147"
27160 column="29"/>
27161 </issue>
27162
27163 <issue
27164 id="UnknownNullness"
27165 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27166 errorLine1=" public LayoutParams(MarginLayoutParams source) {"
27167 errorLine2=" ~~~~~~~~~~~~~~~~~~">
27168 <location
27169 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27170 line="1151"
27171 column="29"/>
27172 </issue>
27173
27174 <issue
27175 id="UnknownNullness"
27176 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27177 errorLine1=" public LayoutParams(Context c, AttributeSet attrs) {"
27178 errorLine2=" ~~~~~~~">
27179 <location
27180 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27181 line="1155"
27182 column="29"/>
27183 </issue>
27184
27185 <issue
27186 id="UnknownNullness"
27187 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27188 errorLine1=" public LayoutParams(Context c, AttributeSet attrs) {"
27189 errorLine2=" ~~~~~~~~~~~~">
27190 <location
27191 file="src/org/lineageos/eleven/slidinguppanel/SlidingUpPanelLayout.java"
27192 line="1155"
27193 column="40"/>
27194 </issue>
27195
27196 <issue
27197 id="UnknownNullness"
27198 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27199 errorLine1=" public View onCreateView(LayoutInflater inflater, ViewGroup container,"
27200 errorLine2=" ~~~~">
27201 <location
27202 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27203 line="56"
27204 column="12"/>
27205 </issue>
27206
27207 <issue
27208 id="UnknownNullness"
27209 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27210 errorLine1=" public View onCreateView(LayoutInflater inflater, ViewGroup container,"
27211 errorLine2=" ~~~~~~~~~~~~~~">
27212 <location
27213 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27214 line="56"
27215 column="30"/>
27216 </issue>
27217
27218 <issue
27219 id="UnknownNullness"
27220 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27221 errorLine1=" public View onCreateView(LayoutInflater inflater, ViewGroup container,"
27222 errorLine2=" ~~~~~~~~~">
27223 <location
27224 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27225 line="56"
27226 column="55"/>
27227 </issue>
27228
27229 <issue
27230 id="UnknownNullness"
27231 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27232 errorLine1=" Bundle savedInstanceState) {"
27233 errorLine2=" ~~~~~~">
27234 <location
27235 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27236 line="57"
27237 column="30"/>
27238 </issue>
27239
27240 <issue
27241 id="UnknownNullness"
27242 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27243 errorLine1=" protected Config.IdType getFragmentSourceType() {"
27244 errorLine2=" ~~~~~~~~~~~~~">
27245 <location
27246 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27247 line="63"
27248 column="15"/>
27249 </issue>
27250
27251 <issue
27252 id="UnknownNullness"
27253 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27254 errorLine1=" public void onCreateOptionsMenu(@NonNull final Menu menu, final MenuInflater inflater) {"
27255 errorLine2=" ~~~~~~~~~~~~">
27256 <location
27257 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27258 line="68"
27259 column="69"/>
27260 </issue>
27261
27262 <issue
27263 id="UnknownNullness"
27264 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27265 errorLine1=" public boolean onOptionsItemSelected(final MenuItem item) {"
27266 errorLine2=" ~~~~~~~~">
27267 <location
27268 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27269 line="89"
27270 column="48"/>
27271 </issue>
27272
27273 <issue
27274 id="UnknownNullness"
27275 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27276 errorLine1=" public PagerAdapter.MusicFragments getMusicFragmentParent() {"
27277 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
27278 <location
27279 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27280 line="130"
27281 column="12"/>
27282 </issue>
27283
27284 <issue
27285 id="UnknownNullness"
27286 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27287 errorLine1=" protected abstract SmartPlaylistType getSmartPlaylistType();"
27288 errorLine2=" ~~~~~~~~~~~~~~~~~">
27289 <location
27290 file="src/org/lineageos/eleven/ui/fragments/profile/SmartPlaylistFragment.java"
27291 line="139"
27292 column="24"/>
27293 </issue>
27294
27295 <issue
27296 id="UnknownNullness"
27297 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27298 errorLine1=" public String mBucketLabel;"
27299 errorLine2=" ~~~~~~">
27300 <location
27301 file="src/org/lineageos/eleven/model/Song.java"
27302 line="70"
27303 column="12"/>
27304 </issue>
27305
27306 <issue
27307 id="UnknownNullness"
27308 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27309 errorLine1=" public Song(final long songId, final String songName, final String artistName,"
27310 errorLine2=" ~~~~~~">
27311 <location
27312 file="src/org/lineageos/eleven/model/Song.java"
27313 line="82"
27314 column="42"/>
27315 </issue>
27316
27317 <issue
27318 id="UnknownNullness"
27319 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27320 errorLine1=" public Song(final long songId, final String songName, final String artistName,"
27321 errorLine2=" ~~~~~~">
27322 <location
27323 file="src/org/lineageos/eleven/model/Song.java"
27324 line="82"
27325 column="65"/>
27326 </issue>
27327
27328 <issue
27329 id="UnknownNullness"
27330 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27331 errorLine1=" final String albumName, final long albumId, final int duration, final int year) {"
27332 errorLine2=" ~~~~~~">
27333 <location
27334 file="src/org/lineageos/eleven/model/Song.java"
27335 line="83"
27336 column="23"/>
27337 </issue>
27338
27339 <issue
27340 id="UnknownNullness"
27341 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27342 errorLine1=" public Loader&lt;SectionListContainer&lt;Song>> onCreateLoader(final int id, final Bundle args) {"
27343 errorLine2=" ~~~~~~">
27344 <location
27345 file="src/org/lineageos/eleven/ui/fragments/SongFragment.java"
27346 line="54"
27347 column="82"/>
27348 </issue>
27349
27350 <issue
27351 id="UnknownNullness"
27352 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27353 errorLine1=" public LoaderManager getFragmentLoaderManager() {"
27354 errorLine2=" ~~~~~~~~~~~~~">
27355 <location
27356 file="src/org/lineageos/eleven/ui/fragments/SongFragment.java"
27357 line="79"
27358 column="12"/>
27359 </issue>
27360
27361 <issue
27362 id="UnknownNullness"
27363 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27364 errorLine1=" public SongListAdapter(final FragmentActivity context, final int layoutId, final long sourceId,"
27365 errorLine2=" ~~~~~~~~~~~~~~~~">
27366 <location
27367 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27368 line="94"
27369 column="34"/>
27370 </issue>
27371
27372 <issue
27373 id="UnknownNullness"
27374 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27375 errorLine1=" final Config.IdType sourceType,"
27376 errorLine2=" ~~~~~~~~~~~~~">
27377 <location
27378 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27379 line="95"
27380 column="34"/>
27381 </issue>
27382
27383 <issue
27384 id="UnknownNullness"
27385 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27386 errorLine1=" final Consumer&lt;Integer> onItemClickListener) {"
27387 errorLine2=" ~~~~~~~~~~~~~~~~~">
27388 <location
27389 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27390 line="96"
27391 column="34"/>
27392 </issue>
27393
27394 <issue
27395 id="UnknownNullness"
27396 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27397 errorLine1=" protected boolean showNowPlayingIndicator(final Song song, final int position) {"
27398 errorLine2=" ~~~~">
27399 <location
27400 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27401 line="116"
27402 column="53"/>
27403 </issue>
27404
27405 <issue
27406 id="UnknownNullness"
27407 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27408 errorLine1=" public void setPopupMenuClickedListener(IListener listener) {"
27409 errorLine2=" ~~~~~~~~~">
27410 <location
27411 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27412 line="214"
27413 column="45"/>
27414 </issue>
27415
27416 <issue
27417 id="UnknownNullness"
27418 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27419 errorLine1=" public void setCurrentlyPlayingTrack(MusicPlaybackTrack currentTrack) {"
27420 errorLine2=" ~~~~~~~~~~~~~~~~~~">
27421 <location
27422 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27423 line="223"
27424 column="42"/>
27425 </issue>
27426
27427 <issue
27428 id="UnknownNullness"
27429 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27430 errorLine1=" public long[] getSongIds() {"
27431 errorLine2=" ~~~~~~">
27432 <location
27433 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27434 line="248"
27435 column="12"/>
27436 </issue>
27437
27438 <issue
27439 id="UnknownNullness"
27440 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27441 errorLine1=" public Song getItem(int position) {"
27442 errorLine2=" ~~~~">
27443 <location
27444 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27445 line="257"
27446 column="12"/>
27447 </issue>
27448
27449 <issue
27450 id="UnknownNullness"
27451 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27452 errorLine1=" public void setData(List&lt;Song> songs) {"
27453 errorLine2=" ~~~~~~~~~~">
27454 <location
27455 file="src/org/lineageos/eleven/adapters/SongListAdapter.java"
27456 line="261"
27457 column="25"/>
27458 </issue>
27459
27460 <issue
27461 id="UnknownNullness"
27462 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27463 errorLine1=" public SongLoader(final Context context) {"
27464 errorLine2=" ~~~~~~~">
27465 <location
27466 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27467 line="59"
27468 column="29"/>
27469 </issue>
27470
27471 <issue
27472 id="UnknownNullness"
27473 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27474 errorLine1=" public SongLoader(final Context context, final String selection) {"
27475 errorLine2=" ~~~~~~~">
27476 <location
27477 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27478 line="67"
27479 column="29"/>
27480 </issue>
27481
27482 <issue
27483 id="UnknownNullness"
27484 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27485 errorLine1=" public SongLoader(final Context context, final String selection) {"
27486 errorLine2=" ~~~~~~">
27487 <location
27488 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27489 line="67"
27490 column="52"/>
27491 </issue>
27492
27493 <issue
27494 id="UnknownNullness"
27495 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27496 errorLine1=" public List&lt;Song> loadInBackground() {"
27497 errorLine2=" ~~~~~~~~~~">
27498 <location
27499 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27500 line="74"
27501 column="12"/>
27502 </issue>
27503
27504 <issue
27505 id="UnknownNullness"
27506 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27507 errorLine1=" protected Cursor getCursor() {"
27508 errorLine2=" ~~~~~~">
27509 <location
27510 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27511 line="129"
27512 column="15"/>
27513 </issue>
27514
27515 <issue
27516 id="UnknownNullness"
27517 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27518 errorLine1=" public static Cursor makeSongCursor(final Context context, final String selection) {"
27519 errorLine2=" ~~~~~~">
27520 <location
27521 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27522 line="159"
27523 column="19"/>
27524 </issue>
27525
27526 <issue
27527 id="UnknownNullness"
27528 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27529 errorLine1=" public static Cursor makeSongCursor(final Context context, final String selection) {"
27530 errorLine2=" ~~~~~~~">
27531 <location
27532 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27533 line="159"
27534 column="47"/>
27535 </issue>
27536
27537 <issue
27538 id="UnknownNullness"
27539 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27540 errorLine1=" public static Cursor makeSongCursor(final Context context, final String selection) {"
27541 errorLine2=" ~~~~~~">
27542 <location
27543 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27544 line="159"
27545 column="70"/>
27546 </issue>
27547
27548 <issue
27549 id="UnknownNullness"
27550 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27551 errorLine1=" public static Cursor makeSongCursor(final Context context, final String selection,"
27552 errorLine2=" ~~~~~~">
27553 <location
27554 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27555 line="173"
27556 column="19"/>
27557 </issue>
27558
27559 <issue
27560 id="UnknownNullness"
27561 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27562 errorLine1=" public static Cursor makeSongCursor(final Context context, final String selection,"
27563 errorLine2=" ~~~~~~~">
27564 <location
27565 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27566 line="173"
27567 column="47"/>
27568 </issue>
27569
27570 <issue
27571 id="UnknownNullness"
27572 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27573 errorLine1=" public static Cursor makeSongCursor(final Context context, final String selection,"
27574 errorLine2=" ~~~~~~">
27575 <location
27576 file="src/org/lineageos/eleven/loaders/SongLoader.java"
27577 line="173"
27578 column="70"/>
27579 </issue>
27580
27581 <issue
27582 id="UnknownNullness"
27583 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27584 errorLine1=" public SongPlayCount(final Context context) {"
27585 errorLine2=" ~~~~~~~">
27586 <location
27587 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27588 line="64"
27589 column="32"/>
27590 </issue>
27591
27592 <issue
27593 id="UnknownNullness"
27594 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27595 errorLine1=" public void onCreate(final SQLiteDatabase db) {"
27596 errorLine2=" ~~~~~~~~~~~~~~">
27597 <location
27598 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27599 line="71"
27600 column="32"/>
27601 </issue>
27602
27603 <issue
27604 id="UnknownNullness"
27605 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27606 errorLine1=" public void onDowngrade(SQLiteDatabase db) {"
27607 errorLine2=" ~~~~~~~~~~~~~~">
27608 <location
27609 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27610 line="96"
27611 column="29"/>
27612 </issue>
27613
27614 <issue
27615 id="UnknownNullness"
27616 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27617 errorLine1=" public static synchronized SongPlayCount getInstance(final Context context) {"
27618 errorLine2=" ~~~~~~~~~~~~~">
27619 <location
27620 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27621 line="106"
27622 column="32"/>
27623 </issue>
27624
27625 <issue
27626 id="UnknownNullness"
27627 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27628 errorLine1=" public static synchronized SongPlayCount getInstance(final Context context) {"
27629 errorLine2=" ~~~~~~~">
27630 <location
27631 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27632 line="106"
27633 column="64"/>
27634 </issue>
27635
27636 <issue
27637 id="UnknownNullness"
27638 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27639 errorLine1=" public Cursor getTopPlayedResults(int numResults) {"
27640 errorLine2=" ~~~~~~">
27641 <location
27642 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27643 line="267"
27644 column="12"/>
27645 </issue>
27646
27647 <issue
27648 id="UnknownNullness"
27649 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27650 errorLine1=" public long[] getTopPlayedResultsForList(long[] ids) {"
27651 errorLine2=" ~~~~~~">
27652 <location
27653 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27654 line="283"
27655 column="12"/>
27656 </issue>
27657
27658 <issue
27659 id="UnknownNullness"
27660 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27661 errorLine1=" public long[] getTopPlayedResultsForList(long[] ids) {"
27662 errorLine2=" ~~~~~~">
27663 <location
27664 file="src/org/lineageos/eleven/provider/SongPlayCount.java"
27665 line="283"
27666 column="46"/>
27667 </issue>
27668
27669 <issue
27670 id="UnknownNullness"
27671 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27672 errorLine1=" protected Song mSong;"
27673 errorLine2=" ~~~~">
27674 <location
27675 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27676 line="31"
27677 column="15"/>
27678 </issue>
27679
27680 <issue
27681 id="UnknownNullness"
27682 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27683 errorLine1=" public SongPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
27684 errorLine2=" ~~~~~~~~">
27685 <location
27686 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27687 line="33"
27688 column="32"/>
27689 </issue>
27690
27691 <issue
27692 id="UnknownNullness"
27693 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27694 errorLine1=" public SongPopupMenuHelper(Activity activity, FragmentManager fragmentManager) {"
27695 errorLine2=" ~~~~~~~~~~~~~~~">
27696 <location
27697 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27698 line="33"
27699 column="51"/>
27700 </issue>
27701
27702 <issue
27703 id="UnknownNullness"
27704 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27705 errorLine1=" public abstract Song getSong(int position);"
27706 errorLine2=" ~~~~">
27707 <location
27708 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27709 line="37"
27710 column="21"/>
27711 </issue>
27712
27713 <issue
27714 id="UnknownNullness"
27715 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27716 errorLine1=" public PopupMenuHelper.PopupMenuType onPreparePopupMenu(int position) {"
27717 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
27718 <location
27719 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27720 line="40"
27721 column="12"/>
27722 </issue>
27723
27724 <issue
27725 id="UnknownNullness"
27726 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27727 errorLine1=" protected long[] getIdList() {"
27728 errorLine2=" ~~~~~~">
27729 <location
27730 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27731 line="56"
27732 column="15"/>
27733 </issue>
27734
27735 <issue
27736 id="UnknownNullness"
27737 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27738 errorLine1=" protected String getArtistName() {"
27739 errorLine2=" ~~~~~~">
27740 <location
27741 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27742 line="61"
27743 column="15"/>
27744 </issue>
27745
27746 <issue
27747 id="UnknownNullness"
27748 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27749 errorLine1=" protected void updateMenuIds(PopupMenuType type, TreeSet&lt;Integer> set) {"
27750 errorLine2=" ~~~~~~~~~~~~~">
27751 <location
27752 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27753 line="72"
27754 column="34"/>
27755 </issue>
27756
27757 <issue
27758 id="UnknownNullness"
27759 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27760 errorLine1=" protected void updateMenuIds(PopupMenuType type, TreeSet&lt;Integer> set) {"
27761 errorLine2=" ~~~~~~~~~~~~~~~~">
27762 <location
27763 file="src/org/lineageos/eleven/utils/SongPopupMenuHelper.java"
27764 line="72"
27765 column="54"/>
27766 </issue>
27767
27768 <issue
27769 id="UnknownNullness"
27770 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27771 errorLine1=" public SortedCursor(final Cursor cursor, final long[] order, final String columnName,"
27772 errorLine2=" ~~~~~~">
27773 <location
27774 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27775 line="49"
27776 column="31"/>
27777 </issue>
27778
27779 <issue
27780 id="UnknownNullness"
27781 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27782 errorLine1=" public SortedCursor(final Cursor cursor, final long[] order, final String columnName,"
27783 errorLine2=" ~~~~~~">
27784 <location
27785 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27786 line="49"
27787 column="52"/>
27788 </issue>
27789
27790 <issue
27791 id="UnknownNullness"
27792 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27793 errorLine1=" public SortedCursor(final Cursor cursor, final long[] order, final String columnName,"
27794 errorLine2=" ~~~~~~">
27795 <location
27796 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27797 line="49"
27798 column="72"/>
27799 </issue>
27800
27801 <issue
27802 id="UnknownNullness"
27803 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27804 errorLine1=" final List&lt;?> extraData) {"
27805 errorLine2=" ~~~~~~~">
27806 <location
27807 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27808 line="50"
27809 column="31"/>
27810 </issue>
27811
27812 <issue
27813 id="UnknownNullness"
27814 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27815 errorLine1=" public ArrayList&lt;Long> getMissingIds() {"
27816 errorLine2=" ~~~~~~~~~~~~~~~">
27817 <location
27818 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27819 line="108"
27820 column="12"/>
27821 </issue>
27822
27823 <issue
27824 id="UnknownNullness"
27825 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27826 errorLine1=" public Collection&lt;Long> getExtraIds() {"
27827 errorLine2=" ~~~~~~~~~~~~~~~~">
27828 <location
27829 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27830 line="115"
27831 column="12"/>
27832 </issue>
27833
27834 <issue
27835 id="UnknownNullness"
27836 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27837 errorLine1=" public Object getExtraData() {"
27838 errorLine2=" ~~~~~~">
27839 <location
27840 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27841 line="122"
27842 column="12"/>
27843 </issue>
27844
27845 <issue
27846 id="UnknownNullness"
27847 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27848 errorLine1=" public String[] getColumnNames() {"
27849 errorLine2=" ~~~~~~~~">
27850 <location
27851 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27852 line="140"
27853 column="12"/>
27854 </issue>
27855
27856 <issue
27857 id="UnknownNullness"
27858 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27859 errorLine1=" public String getString(int column) {"
27860 errorLine2=" ~~~~~~">
27861 <location
27862 file="src/org/lineageos/eleven/loaders/SortedCursor.java"
27863 line="145"
27864 column="12"/>
27865 </issue>
27866
27867 <issue
27868 id="UnknownNullness"
27869 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27870 errorLine1=" public SquareFrame(Context context, AttributeSet attrs) {"
27871 errorLine2=" ~~~~~~~">
27872 <location
27873 file="src/org/lineageos/eleven/widgets/SquareFrame.java"
27874 line="22"
27875 column="24"/>
27876 </issue>
27877
27878 <issue
27879 id="UnknownNullness"
27880 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27881 errorLine1=" public SquareFrame(Context context, AttributeSet attrs) {"
27882 errorLine2=" ~~~~~~~~~~~~">
27883 <location
27884 file="src/org/lineageos/eleven/widgets/SquareFrame.java"
27885 line="22"
27886 column="41"/>
27887 </issue>
27888
27889 <issue
27890 id="UnknownNullness"
27891 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27892 errorLine1=" public SquareImageView(final Context context, final AttributeSet attrs) {"
27893 errorLine2=" ~~~~~~~">
27894 <location
27895 file="src/org/lineageos/eleven/widgets/SquareImageView.java"
27896 line="35"
27897 column="34"/>
27898 </issue>
27899
27900 <issue
27901 id="UnknownNullness"
27902 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27903 errorLine1=" public SquareImageView(final Context context, final AttributeSet attrs) {"
27904 errorLine2=" ~~~~~~~~~~~~">
27905 <location
27906 file="src/org/lineageos/eleven/widgets/SquareImageView.java"
27907 line="35"
27908 column="57"/>
27909 </issue>
27910
27911 <issue
27912 id="UnknownNullness"
27913 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27914 errorLine1=" public SquareView(final Context context, final AttributeSet attrs) {"
27915 errorLine2=" ~~~~~~~">
27916 <location
27917 file="src/org/lineageos/eleven/widgets/SquareView.java"
27918 line="38"
27919 column="29"/>
27920 </issue>
27921
27922 <issue
27923 id="UnknownNullness"
27924 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27925 errorLine1=" public SquareView(final Context context, final AttributeSet attrs) {"
27926 errorLine2=" ~~~~~~~~~~~~">
27927 <location
27928 file="src/org/lineageos/eleven/widgets/SquareView.java"
27929 line="38"
27930 column="52"/>
27931 </issue>
27932
27933 <issue
27934 id="UnknownNullness"
27935 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27936 errorLine1=" public SquareViewPager(Context context, AttributeSet attrs) {"
27937 errorLine2=" ~~~~~~~">
27938 <location
27939 file="src/org/lineageos/eleven/widgets/SquareViewPager.java"
27940 line="33"
27941 column="28"/>
27942 </issue>
27943
27944 <issue
27945 id="UnknownNullness"
27946 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27947 errorLine1=" public SquareViewPager(Context context, AttributeSet attrs) {"
27948 errorLine2=" ~~~~~~~~~~~~">
27949 <location
27950 file="src/org/lineageos/eleven/widgets/SquareViewPager.java"
27951 line="33"
27952 column="45"/>
27953 </issue>
27954
27955 <issue
27956 id="UnknownNullness"
27957 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27958 errorLine1=" public synchronized void initialize(final MediaPlayer player, final File f) {"
27959 errorLine2=" ~~~~~~~~~~~">
27960 <location
27961 file="src/org/lineageos/eleven/utils/SrtManager.java"
27962 line="74"
27963 column="47"/>
27964 </issue>
27965
27966 <issue
27967 id="UnknownNullness"
27968 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27969 errorLine1=" public synchronized void initialize(final MediaPlayer player, final File f) {"
27970 errorLine2=" ~~~~">
27971 <location
27972 file="src/org/lineageos/eleven/utils/SrtManager.java"
27973 line="74"
27974 column="73"/>
27975 </issue>
27976
27977 <issue
27978 id="UnknownNullness"
27979 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27980 errorLine1=" public boolean handleMessage(Message msg) {"
27981 errorLine2=" ~~~~~~~">
27982 <location
27983 file="src/org/lineageos/eleven/utils/SrtManager.java"
27984 line="194"
27985 column="34"/>
27986 </issue>
27987
27988 <issue
27989 id="UnknownNullness"
27990 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
27991 errorLine1=" public abstract void onTimedText(String txt);"
27992 errorLine2=" ~~~~~~">
27993 <location
27994 file="src/org/lineageos/eleven/utils/SrtManager.java"
27995 line="207"
27996 column="38"/>
27997 </issue>
27998
27999 <issue
28000 id="UnknownNullness"
28001 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28002 errorLine1=" public static ArrayList&lt;SrtEntry> getSrtEntries(File f) {"
28003 errorLine2=" ~~~~~~~~~~~~~~~~~~~">
28004 <location
28005 file="src/org/lineageos/eleven/utils/SrtParser.java"
28006 line="49"
28007 column="19"/>
28008 </issue>
28009
28010 <issue
28011 id="UnknownNullness"
28012 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28013 errorLine1=" public static ArrayList&lt;SrtEntry> getSrtEntries(File f) {"
28014 errorLine2=" ~~~~">
28015 <location
28016 file="src/org/lineageos/eleven/utils/SrtParser.java"
28017 line="49"
28018 column="53"/>
28019 </issue>
28020
28021 <issue
28022 id="UnknownNullness"
28023 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28024 errorLine1=" protected SmartPlaylistType getSmartPlaylistType() {"
28025 errorLine2=" ~~~~~~~~~~~~~~~~~">
28026 <location
28027 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28028 line="55"
28029 column="15"/>
28030 </issue>
28031
28032 <issue
28033 id="UnknownNullness"
28034 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28035 errorLine1=" public Loader&lt;SectionListContainer&lt;Song>> onCreateLoader(final int id, final Bundle args) {"
28036 errorLine2=" ~~~~~~">
28037 <location
28038 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28039 line="61"
28040 column="82"/>
28041 </issue>
28042
28043 <issue
28044 id="UnknownNullness"
28045 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28046 errorLine1=" protected SongListAdapter createAdapter() {"
28047 errorLine2=" ~~~~~~~~~~~~~~~">
28048 <location
28049 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28050 line="71"
28051 column="15"/>
28052 </issue>
28053
28054 <issue
28055 id="UnknownNullness"
28056 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28057 errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
28058 errorLine2=" ~~~~">
28059 <location
28060 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28061 line="80"
28062 column="18"/>
28063 </issue>
28064
28065 <issue
28066 id="UnknownNullness"
28067 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28068 errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
28069 errorLine2=" ~~~~~~~~~~~~~~">
28070 <location
28071 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28072 line="80"
28073 column="36"/>
28074 </issue>
28075
28076 <issue
28077 id="UnknownNullness"
28078 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28079 errorLine1=" public final View onCreateView(LayoutInflater inflater, ViewGroup container,"
28080 errorLine2=" ~~~~~~~~~">
28081 <location
28082 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28083 line="80"
28084 column="61"/>
28085 </issue>
28086
28087 <issue
28088 id="UnknownNullness"
28089 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28090 errorLine1=" Bundle savedInstanceState) {"
28091 errorLine2=" ~~~~~~">
28092 <location
28093 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28094 line="81"
28095 column="36"/>
28096 </issue>
28097
28098 <issue
28099 id="UnknownNullness"
28100 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28101 errorLine1=" public TopTracksAdapter(final FragmentActivity context, final int layoutId,"
28102 errorLine2=" ~~~~~~~~~~~~~~~~">
28103 <location
28104 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28105 line="96"
28106 column="39"/>
28107 </issue>
28108
28109 <issue
28110 id="UnknownNullness"
28111 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28112 errorLine1=" final Consumer&lt;Integer> onItemClickListener) {"
28113 errorLine2=" ~~~~~~~~~~~~~~~~~">
28114 <location
28115 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28116 line="97"
28117 column="39"/>
28118 </issue>
28119
28120 <issue
28121 id="UnknownNullness"
28122 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28123 errorLine1=" public void setupNoResultsContainer(NoResultsContainer empty) {"
28124 errorLine2=" ~~~~~~~~~~~~~~~~~~">
28125 <location
28126 file="src/org/lineageos/eleven/ui/fragments/profile/TopTracksFragment.java"
28127 line="110"
28128 column="41"/>
28129 </issue>
28130
28131 <issue
28132 id="UnknownNullness"
28133 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28134 errorLine1=" public TopTracksLoader(final Context context, QueryType type) {"
28135 errorLine2=" ~~~~~~~">
28136 <location
28137 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28138 line="44"
28139 column="34"/>
28140 </issue>
28141
28142 <issue
28143 id="UnknownNullness"
28144 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28145 errorLine1=" public TopTracksLoader(final Context context, QueryType type) {"
28146 errorLine2=" ~~~~~~~~~">
28147 <location
28148 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28149 line="44"
28150 column="51"/>
28151 </issue>
28152
28153 <issue
28154 id="UnknownNullness"
28155 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28156 errorLine1=" protected Cursor getCursor() {"
28157 errorLine2=" ~~~~~~">
28158 <location
28159 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28160 line="51"
28161 column="15"/>
28162 </issue>
28163
28164 <issue
28165 id="UnknownNullness"
28166 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28167 errorLine1=" public static SortedCursor makeTopTracksCursor(final Context context) {"
28168 errorLine2=" ~~~~~~~~~~~~">
28169 <location
28170 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28171 line="85"
28172 column="19"/>
28173 </issue>
28174
28175 <issue
28176 id="UnknownNullness"
28177 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28178 errorLine1=" public static SortedCursor makeTopTracksCursor(final Context context) {"
28179 errorLine2=" ~~~~~~~">
28180 <location
28181 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28182 line="85"
28183 column="58"/>
28184 </issue>
28185
28186 <issue
28187 id="UnknownNullness"
28188 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28189 errorLine1=" public static SortedCursor makeRecentTracksCursor(final Context context) {"
28190 errorLine2=" ~~~~~~~~~~~~">
28191 <location
28192 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28193 line="101"
28194 column="19"/>
28195 </issue>
28196
28197 <issue
28198 id="UnknownNullness"
28199 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28200 errorLine1=" public static SortedCursor makeRecentTracksCursor(final Context context) {"
28201 errorLine2=" ~~~~~~~">
28202 <location
28203 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28204 line="101"
28205 column="61"/>
28206 </issue>
28207
28208 <issue
28209 id="UnknownNullness"
28210 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28211 errorLine1=" public static SortedCursor makeSortedCursor(final Context context, final Cursor cursor,"
28212 errorLine2=" ~~~~~~~~~~~~">
28213 <location
28214 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28215 line="118"
28216 column="19"/>
28217 </issue>
28218
28219 <issue
28220 id="UnknownNullness"
28221 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28222 errorLine1=" public static SortedCursor makeSortedCursor(final Context context, final Cursor cursor,"
28223 errorLine2=" ~~~~~~~">
28224 <location
28225 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28226 line="118"
28227 column="55"/>
28228 </issue>
28229
28230 <issue
28231 id="UnknownNullness"
28232 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28233 errorLine1=" public static SortedCursor makeSortedCursor(final Context context, final Cursor cursor,"
28234 errorLine2=" ~~~~~~">
28235 <location
28236 file="src/org/lineageos/eleven/loaders/TopTracksLoader.java"
28237 line="118"
28238 column="78"/>
28239 </issue>
28240
28241 <issue
28242 id="UnknownNullness"
28243 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28244 errorLine1=" public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) {"
28245 errorLine2=" ~~~~">
28246 <location
28247 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28248 line="147"
28249 column="43"/>
28250 </issue>
28251
28252 <issue
28253 id="UnknownNullness"
28254 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28255 errorLine1=" public void onViewCaptured(View capturedChild, int activePointerId) {"
28256 errorLine2=" ~~~~">
28257 <location
28258 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28259 line="159"
28260 column="36"/>
28261 </issue>
28262
28263 <issue
28264 id="UnknownNullness"
28265 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28266 errorLine1=" public void onViewReleased(View releasedChild, float xVel, float yVel) {"
28267 errorLine2=" ~~~~">
28268 <location
28269 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28270 line="182"
28271 column="36"/>
28272 </issue>
28273
28274 <issue
28275 id="UnknownNullness"
28276 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28277 errorLine1=" public int getViewHorizontalDragRange(View child) {"
28278 errorLine2=" ~~~~">
28279 <location
28280 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28281 line="247"
28282 column="47"/>
28283 </issue>
28284
28285 <issue
28286 id="UnknownNullness"
28287 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28288 errorLine1=" public int getViewVerticalDragRange(View child) {"
28289 errorLine2=" ~~~~">
28290 <location
28291 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28292 line="258"
28293 column="45"/>
28294 </issue>
28295
28296 <issue
28297 id="UnknownNullness"
28298 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28299 errorLine1=" public abstract boolean tryCaptureView(View child, int pointerId);"
28300 errorLine2=" ~~~~">
28301 <location
28302 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28303 line="278"
28304 column="48"/>
28305 </issue>
28306
28307 <issue
28308 id="UnknownNullness"
28309 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28310 errorLine1=" public int clampViewPositionHorizontal(View child, int left, int dx) {"
28311 errorLine2=" ~~~~">
28312 <location
28313 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28314 line="291"
28315 column="48"/>
28316 </issue>
28317
28318 <issue
28319 id="UnknownNullness"
28320 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28321 errorLine1=" public int clampViewPositionVertical(View child, int top, int dy) {"
28322 errorLine2=" ~~~~">
28323 <location
28324 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28325 line="305"
28326 column="46"/>
28327 </issue>
28328
28329 <issue
28330 id="UnknownNullness"
28331 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28332 errorLine1=" public static ViewDragHelper create(ViewGroup forParent, Callback cb) {"
28333 errorLine2=" ~~~~~~~~~~~~~~">
28334 <location
28335 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28336 line="327"
28337 column="19"/>
28338 </issue>
28339
28340 <issue
28341 id="UnknownNullness"
28342 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28343 errorLine1=" public static ViewDragHelper create(ViewGroup forParent, Callback cb) {"
28344 errorLine2=" ~~~~~~~~~">
28345 <location
28346 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28347 line="327"
28348 column="41"/>
28349 </issue>
28350
28351 <issue
28352 id="UnknownNullness"
28353 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28354 errorLine1=" public static ViewDragHelper create(ViewGroup forParent, Callback cb) {"
28355 errorLine2=" ~~~~~~~~">
28356 <location
28357 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28358 line="327"
28359 column="62"/>
28360 </issue>
28361
28362 <issue
28363 id="UnknownNullness"
28364 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28365 errorLine1=" public static ViewDragHelper create(ViewGroup forParent, float sensitivity, Callback cb) {"
28366 errorLine2=" ~~~~~~~~~~~~~~">
28367 <location
28368 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28369 line="340"
28370 column="19"/>
28371 </issue>
28372
28373 <issue
28374 id="UnknownNullness"
28375 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28376 errorLine1=" public static ViewDragHelper create(ViewGroup forParent, float sensitivity, Callback cb) {"
28377 errorLine2=" ~~~~~~~~~">
28378 <location
28379 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28380 line="340"
28381 column="41"/>
28382 </issue>
28383
28384 <issue
28385 id="UnknownNullness"
28386 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28387 errorLine1=" public static ViewDragHelper create(ViewGroup forParent, float sensitivity, Callback cb) {"
28388 errorLine2=" ~~~~~~~~">
28389 <location
28390 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28391 line="340"
28392 column="81"/>
28393 </issue>
28394
28395 <issue
28396 id="UnknownNullness"
28397 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28398 errorLine1=" public void captureChildView(View childView, int activePointerId) {"
28399 errorLine2=" ~~~~">
28400 <location
28401 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28402 line="403"
28403 column="34"/>
28404 </issue>
28405
28406 <issue
28407 id="UnknownNullness"
28408 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28409 errorLine1=" public boolean smoothSlideViewTo(View child, int finalLeft, int finalTop) {"
28410 errorLine2=" ~~~~">
28411 <location
28412 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28413 line="467"
28414 column="38"/>
28415 </issue>
28416
28417 <issue
28418 id="UnknownNullness"
28419 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28420 errorLine1=" public boolean shouldInterceptTouchEvent(MotionEvent ev) {"
28421 errorLine2=" ~~~~~~~~~~~">
28422 <location
28423 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28424 line="785"
28425 column="46"/>
28426 </issue>
28427
28428 <issue
28429 id="UnknownNullness"
28430 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28431 errorLine1=" public void processTouchEvent(MotionEvent ev) {"
28432 errorLine2=" ~~~~~~~~~~~">
28433 <location
28434 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28435 line="895"
28436 column="35"/>
28437 </issue>
28438
28439 <issue
28440 id="UnknownNullness"
28441 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28442 errorLine1=" public boolean isViewUnder(View view, int x, int y) {"
28443 errorLine2=" ~~~~">
28444 <location
28445 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28446 line="1164"
28447 column="32"/>
28448 </issue>
28449
28450 <issue
28451 id="UnknownNullness"
28452 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28453 errorLine1=" public View findTopChildUnder(int x, int y) {"
28454 errorLine2=" ~~~~">
28455 <location
28456 file="src/org/lineageos/eleven/slidinguppanel/ViewDragHelper.java"
28457 line="1182"
28458 column="12"/>
28459 </issue>
28460
28461 <issue
28462 id="UnknownNullness"
28463 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28464 errorLine1=" public ViewPagerTabStrip(Context context) {"
28465 errorLine2=" ~~~~~~~">
28466 <location
28467 file="src/org/lineageos/eleven/widgets/ViewPagerTabStrip.java"
28468 line="38"
28469 column="30"/>
28470 </issue>
28471
28472 <issue
28473 id="UnknownNullness"
28474 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28475 errorLine1=" public ViewPagerTabStrip(Context context, AttributeSet attrs) {"
28476 errorLine2=" ~~~~~~~">
28477 <location
28478 file="src/org/lineageos/eleven/widgets/ViewPagerTabStrip.java"
28479 line="42"
28480 column="30"/>
28481 </issue>
28482
28483 <issue
28484 id="UnknownNullness"
28485 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28486 errorLine1=" public ViewPagerTabStrip(Context context, AttributeSet attrs) {"
28487 errorLine2=" ~~~~~~~~~~~~">
28488 <location
28489 file="src/org/lineageos/eleven/widgets/ViewPagerTabStrip.java"
28490 line="42"
28491 column="47"/>
28492 </issue>
28493
28494 <issue
28495 id="UnknownNullness"
28496 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28497 errorLine1=" protected void onDraw(Canvas canvas) {"
28498 errorLine2=" ~~~~~~">
28499 <location
28500 file="src/org/lineageos/eleven/widgets/ViewPagerTabStrip.java"
28501 line="71"
28502 column="27"/>
28503 </issue>
28504
28505 <issue
28506 id="UnknownNullness"
28507 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28508 errorLine1=" public ViewPagerTabs(Context context) {"
28509 errorLine2=" ~~~~~~~">
28510 <location
28511 file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
28512 line="115"
28513 column="26"/>
28514 </issue>
28515
28516 <issue
28517 id="UnknownNullness"
28518 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28519 errorLine1=" public ViewPagerTabs(Context context, AttributeSet attrs) {"
28520 errorLine2=" ~~~~~~~">
28521 <location
28522 file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
28523 line="119"
28524 column="26"/>
28525 </issue>
28526
28527 <issue
28528 id="UnknownNullness"
28529 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28530 errorLine1=" public ViewPagerTabs(Context context, AttributeSet attrs) {"
28531 errorLine2=" ~~~~~~~~~~~~">
28532 <location
28533 file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
28534 line="119"
28535 column="43"/>
28536 </issue>
28537
28538 <issue
28539 id="UnknownNullness"
28540 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28541 errorLine1=" public ViewPagerTabs(Context context, AttributeSet attrs, int defStyle) {"
28542 errorLine2=" ~~~~~~~">
28543 <location
28544 file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
28545 line="123"
28546 column="26"/>
28547 </issue>
28548
28549 <issue
28550 id="UnknownNullness"
28551 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28552 errorLine1=" public ViewPagerTabs(Context context, AttributeSet attrs, int defStyle) {"
28553 errorLine2=" ~~~~~~~~~~~~">
28554 <location
28555 file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
28556 line="123"
28557 column="43"/>
28558 </issue>
28559
28560 <issue
28561 id="UnknownNullness"
28562 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28563 errorLine1=" public void setViewPager(ViewPager viewPager) {"
28564 errorLine2=" ~~~~~~~~~">
28565 <location
28566 file="src/org/lineageos/eleven/widgets/ViewPagerTabs.java"
28567 line="144"
28568 column="30"/>
28569 </issue>
28570
28571 <issue
28572 id="UnknownNullness"
28573 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28574 errorLine1=" public VisualizerView(Context context, AttributeSet attrs, int defStyle) {"
28575 errorLine2=" ~~~~~~~">
28576 <location
28577 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28578 line="124"
28579 column="27"/>
28580 </issue>
28581
28582 <issue
28583 id="UnknownNullness"
28584 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28585 errorLine1=" public VisualizerView(Context context, AttributeSet attrs, int defStyle) {"
28586 errorLine2=" ~~~~~~~~~~~~">
28587 <location
28588 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28589 line="124"
28590 column="44"/>
28591 </issue>
28592
28593 <issue
28594 id="UnknownNullness"
28595 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28596 errorLine1=" public VisualizerView(Context context, AttributeSet attrs) {"
28597 errorLine2=" ~~~~~~~">
28598 <location
28599 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28600 line="128"
28601 column="27"/>
28602 </issue>
28603
28604 <issue
28605 id="UnknownNullness"
28606 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28607 errorLine1=" public VisualizerView(Context context, AttributeSet attrs) {"
28608 errorLine2=" ~~~~~~~~~~~~">
28609 <location
28610 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28611 line="128"
28612 column="44"/>
28613 </issue>
28614
28615 <issue
28616 id="UnknownNullness"
28617 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28618 errorLine1=" public VisualizerView(Context context) {"
28619 errorLine2=" ~~~~~~~">
28620 <location
28621 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28622 line="132"
28623 column="27"/>
28624 </issue>
28625
28626 <issue
28627 id="UnknownNullness"
28628 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28629 errorLine1=" protected void onDraw(Canvas canvas) {"
28630 errorLine2=" ~~~~~~">
28631 <location
28632 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28633 line="161"
28634 column="27"/>
28635 </issue>
28636
28637 <issue
28638 id="UnknownNullness"
28639 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28640 errorLine1=" public void initialize(Context context) {"
28641 errorLine2=" ~~~~~~~">
28642 <location
28643 file="src/org/lineageos/eleven/widgets/VisualizerView.java"
28644 line="169"
28645 column="28"/>
28646 </issue>
28647
28648 <issue
28649 id="UnknownNullness"
28650 message="Unknown nullability; explicitly declare as `@Nullable` or `@NonNull` to improve Kotlin interoperability; see https://android.github.io/kotlin-guides/interop.html#nullability-annotations"
28651 errorLine1=" public WrappedAsyncTaskLoader(Context context) {"
28652 errorLine2=" ~~~~~~~">
28653 <location
28654 file="src/org/lineageos/eleven/loaders/WrappedAsyncTaskLoader.java"
28655 line="38"
28656 column="35"/>
28657 </issue>
28658
28659</issues>